Is there a way to exit a form and continue with the program without closing the form? It seems that the only way to continue with my program is to close the form. My program calls the form as follows:
INVOKE TestForm::ShowDialog.
Continue Program
In my form, I have the following code in order to exit the form and continue with the program:
if e::KeyCode = type Keys::End
invoke self::Close
end-if.
But I wish for the form to remain visible(not closed) and continue with my program. I tried :
if e::KeyCode = type Keys::End
invoke self::goback
end-if.
But this command just goes back to the form and not the program.