Grid Ado.

English
	To build properly control you must create it as follows
	You should always define columncontrols to display settings for the table display.			

Spanish
	Para construir correctamente el control usted debe crearlo de la siguiente forma:

	Siempre debe definir las columncontrols para visualizar correctamente los datos
	de la tabla a visualizar.

Control
	@ 25,10 GRIDADO Grid_1 ;
			WIDTH 	620 ;
			HEIGHT 	330 ;
			HEADERS {'First','Last','Street','Married'} ;
			WIDTHS 	{100,100, 240, 100} ;
			RECORDSET oRs ;
			EDIT 		;
			COLUMNCONTROLS {{'TEXTBOX','CHARACTER'}, ;
							{'TEXTBOX','CHARACTER'}, ;
							{'TEXTBOX','DATE'}, ;
							{'CHECKBOX','Yes','No'}  } ;
			COLUMNWHEN	{ { || .T. }, { || .T. }, { || .T. }, { || .T. } };
			COLUMNVALID { { || .T. }, { || .T.}, { || .T. }, { || .T. } }	
			
	para borrar una linea :
	for delete row 
		form_name . controlname . delete

	para recargar los datos de un recordset despues de un filtro:
	to recharge data from a recordset after a filter

		form_name . controlname . Update

	para agregar un registro a la tabla debe posicionarse en la linea vacia al final de los registros.
	to add a record to the table needs to stand in line empty at the end of the records.


Disfrutenlo
Enjoy

Luis Vasquez.	
		