Hi, i have a grid type editable, and i need retain original values of 2 fields, so that i created 2 fields personalized type money for each field.
{VALUE1_OLD} and {VALUE2_OLD} and in event onloadrecord, onbeforeupdate and onbeforeinsert, i assig:
{VALUE1_OLD} = {VALUE1};
{VALUE2_OLD} = {VALUE2};
But that only works when i insert a new record. The news fields update to new values.
If i update a record the assignment do not works!. I can see that the news fields have original values and not update to news values.
Any idea how can i fixed?