Hi Marco,
is it possible to cancel the change of only one record (after i scrolled to another record)? Something like this:
DataSet.Cancel;
bm := DataSet.GetBookmark;
Log := DataSet.FindChangeLogByBookmark(PInteger(bm)^) as TChangeLogItem;
DataSet.FreeBookmark(bm);
Log.Cancel;
I can't do this, because the needed functions are protected or not visible out of OracleData.pas
The following does not clear the Log for the current record. Is this a WAD (Works As Designed)?
KPDM.qryTops.Cancel;
KPDM.qryTops.RefreshRecord;
Thanks for help
Sven
is it possible to cancel the change of only one record (after i scrolled to another record)? Something like this:
DataSet.Cancel;
bm := DataSet.GetBookmark;
Log := DataSet.FindChangeLogByBookmark(PInteger(bm)^) as TChangeLogItem;
DataSet.FreeBookmark(bm);
Log.Cancel;
I can't do this, because the needed functions are protected or not visible out of OracleData.pas
The following does not clear the Log for the current record. Is this a WAD (Works As Designed)?
KPDM.qryTops.Cancel;
KPDM.qryTops.RefreshRecord;
Thanks for help
Sven