Form Unloaded But Not Deleted Exception
Posted: Fri Aug 07, 2009 2:20 pm
by Alistair Mackay >> Wed, 5 Jan 2000 1:38:56 GMT
Using the following code:
// check if a copy of form is already running
form := app.getForm(formClass.name).FwForm;
if form = null then
form := formClass.createInstance(true).FwForm;
form.setFormDefinition(fdef);
endif;
form.show;
I have got a 14037 : The form was previously unloaded exception.
How can I handle this situation where the getForm method returns a form which has been unloaded but not deleted, and an exception is raised when I try to show it.
Using the following code:
// check if a copy of form is already running
form := app.getForm(formClass.name).FwForm;
if form = null then
form := formClass.createInstance(true).FwForm;
form.setFormDefinition(fdef);
endif;
form.show;
I have got a 14037 : The form was previously unloaded exception.
How can I handle this situation where the getForm method returns a form which has been unloaded but not deleted, and an exception is raised when I try to show it.