Occures before an application posts changes for the current record to the database or cache.
property RefreshFields: TDataSetNotifyEvent;
Occurs before an application posts changes for the current record to the database or cache.
When Expand is True, write RefreshFields event handler to assign a value to the nonupdating fields.
procedure quEmpRefreshFields(DataSet: TDataSet); begin DataSet.FieldByName('DNAME').AsString:= quDept.FieldByName('DNAME').AsString; end;