Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Clear date field
You should use Clear method of TField type.
procedure TForm1.Button1Click(Sender: TObject);
begin
with Table1 do
begin
Edit;
FieldByName('Date_Open').Clear;
Post;
end;
end;
-
More for developers