2006. április 8., szombat
How to determine if a field's value has actually changed before posting the new value
Problem/Question/Abstract:
How to determine if a field's value has actually changed before posting the new value
Answer:
{ ... }
var
sBeforeText: string;
in the AfterEdit event of the table catch the value:
SBeforeText := DataSet.FieldByName('Category').AsString;
in the BeforePost or AfterPost Event(depending on your preference)you can compare the original with the current
if (sBeforeText <> DataSet.FieldByName('Category').AsString) then
ShowMessage('Different Values');
Feliratkozás:
Megjegyzések küldése (Atom)
Nincsenek megjegyzések:
Megjegyzés küldése