Mirror

How to assign the system time to a TDateField (Views: 710)


Problem/Question/Abstract:

How can I assign the System time (returned by date function) to a TDateField in a TTable?

Answer:

Table1.Edit;
Table1.FieldByName('aDate').AsDateTime := Date;
Table1.Post;

<< Back to main page