Mirror

Perform a Locate on a date field (Views: 709)


Problem/Question/Abstract:

How to perform a Locate on a date field

Answer:

{ ... }
var
  dr: TDateTime;
begin
  dt := EncodeDate(2003, 01, 31);
  yourDataset.Locate('yourDTFieldName', dt, [])
end;

<< Back to main page