Z
zSplash
I need to get user input before running code, so in the openDoc event of the
addin, the modal userform ufmGenType is shown. As planned, when the addin
opens, ufmGenType is shown, but the code continues to execute without
waiting for ufmGenType to close. How can I make the ufmGenType act modally
(and not allow any execution of code until it is closed)?
Here's the code I'm using:
Private Sub Document_New()
If initialMergeDone = False Then
ufmGenType.Show
End If
End Sub
TIA
addin, the modal userform ufmGenType is shown. As planned, when the addin
opens, ufmGenType is shown, but the code continues to execute without
waiting for ufmGenType to close. How can I make the ufmGenType act modally
(and not allow any execution of code until it is closed)?
Here's the code I'm using:
Private Sub Document_New()
If initialMergeDone = False Then
ufmGenType.Show
End If
End Sub
TIA