Subject Question about Default Values
Author kamen_lai
if i make a assignment like

procedure QrOnNewRecord(IB_Dataset: TIB_Dataset);
begin
IB_Dataset.FieldByName('Row').asstring := x;
end;

'x' value will be generate at run-time.

those IB_DataSet.Modified and
IB_Dataset.FieldByName('Row').IsModified are true.


how can i make this assignment which will not amend those modify
flag ?

I know that i can use the defaultvalues property to specific defautl
value , this is static value , but i want is a run-time generate.

thanks in advance.