The sequence of events in my macros is basically this:
Sub Main()
frmPatent.show
End Sub
Private Sub cmdFinish_Click()
frmPatent.hide
frmWait.show (modal)
Unload frmWait
Unload frmPatent
End Sub
Upon execution of Sub Main I get RTE 401 "Can't show non-modal form when modal form is displayed" Why is this? I don't have a modal form yet in Sub Main and then when I do introduce the modal form I unload it before unloading the non modal form...I'm confused.
Sub Main()
frmPatent.show
End Sub
Private Sub cmdFinish_Click()
frmPatent.hide
frmWait.show (modal)
Unload frmWait
Unload frmPatent
End Sub
Upon execution of Sub Main I get RTE 401 "Can't show non-modal form when modal form is displayed" Why is this? I don't have a modal form yet in Sub Main and then when I do introduce the modal form I unload it before unloading the non modal form...I'm confused.