Ver Mensaje Individual
  #4  
Antiguo 31-05-2007
Avatar de juanlaplata
juanlaplata juanlaplata is offline
Miembro
 
Registrado: ene 2007
Ubicación: La Plata, Bs. As. (Argentina)
Posts: 212
Reputación: 18
juanlaplata Va por buen camino
Código Delphi [-]
Table1.Append;
Table1Fecha.Value:=Date;
Table1.Post;
//o

Table1.Edit;
Table1Fecha.Value:=Date;
Table1.Post;
Vale aclarar que si no defines los campos puedes acceder asi
Código Delphi [-]
Table1.Append;
Table1.FieldByName('Fecha').asDateTime:=Date;
Table1.Post;
//o

Table1.Edit;
Table1.FieldByName('Fecha').asDateTime:=Date;
Table1.Post;

Última edición por juanlaplata fecha: 31-05-2007 a las 18:01:51.
Responder Con Cita