Hi,
I have a function that calls one form with this code :
FormSales.SETTABLEVIEW(Rec);
FormSales.SETRECORD(Rec);
FormSales.LOOKUPMODE := TRUE;
COMMIT;
IF FormSales.RUNMODAL=ACTION::OK THEN BEGIN
END;
this form that i call have three variables with a text box that i want to save .
what i have to do , when i close the form to get the three vars that i put in the form?
thanks!
0
Comments
Also, that COMMIT doesn't appear to be doing anything. You should be able to take it out.