Page 1 of 1

LocateEx

Posted: Sun 03 Feb 2008 07:53
by khh
How I can call LocateEx for a TMyTable from its DataSource?

Posted: Mon 04 Feb 2008 11:11
by Dimon
You can use the following code:

Code: Select all

  (DataSource.DataSet as TCustomMyDataSet).LocateEx(KeyFields, KeyValues, Options);

Posted: Mon 04 Feb 2008 22:35
by khh
Thank you.