Hi all
searched the archives, but couldnt find an answer.
I remember seeing somewhere that when you issue a thisform.release, the code immediatley following it still gets executed. Is there something I need to put after a release to stop any further code executing.
An example is on the save of a button, if an error occurs updating a table, then I do the following.
Code:
If errorfound=.t.
messagebox("Error")
thisform.release
end if
(continue doing save routine)
Thanks