Hello Everyone:
I am attempting to use (ISTAT('FORM_DIRTY_FLAG')) fucntion to determine whether or not
to run a piece of code.
My code looks like:
EDI USI FORMNAME
IF (ISTAT('FORM_DIRTY_FLAG')) = 1 THEN
DO THIS
ENDIF
My form is a form connected to a dummy table that is soley variables. Based on the
above code if I enter the form and make no changes the DO THIS should be skipped
because the value of ISTAT should be 0. It doesn't. It runs the DO THIS code.
Anyone got a suggestion. Thanks to all in advance.