At the top of a module in the declarations section i have this defined
Code:
Dim Errorfrm As New Form3
I also have a menu item that calls a function in the module
that function then displays the form
When I click the menu button the first time, the form errorfrm and runs fine. I close the newly displayed errorfrm. and then click the Menu button again and get an error on the errorfrm.show(). And yes I made sure i exited the first call to module.function1() I used I am guessing I should maybe unload the errorfrm, but if i do that the user will not see what has been displayed on the errorfrm. Any sudgestions?