not sure if I understand the question correctly. But if you want to execute some code only if the user modifies a record in a certain field, you can use CurrFIELDNO.
Let's say that you only want to execute some code only if a user is actually in the field "E-mail" of the Customer table:
IF CurrFieldNo = FIELDNO("E-Mail") THEN BEGIN
..
..
END;
Comments
not sure if I understand the question correctly. But if you want to execute some code only if the user modifies a record in a certain field, you can use CurrFIELDNO.
Let's say that you only want to execute some code only if a user is actually in the field "E-mail" of the Customer table:
IF CurrFieldNo = FIELDNO("E-Mail") THEN BEGIN
..
..
END;
Hope that helps