M
Martin Beir
Office X - Excel on New iMac with Intell processors.
Create 3 Userforms each with a single Command button.
Userform1 (launch first)
Code: Private Sub CommandButton1_Click()
Userform2.Show
End Sub
Userform2
Code: Private Sub CommandButton1_Click()
Unload Me
Userform3.Show
End Sub
Userform3
Code: Private Sub CommandButton1_Click()
Unload Me
Unload Userform1
End Sub
If when Userform 3 is displayed I click the command button and then step
through the code with key F8 all is fine.
However, if I let the code run in the normal manner then the Userforms
disappear from the screen but Excel locks itself into Limbo mode. I cannot
edit code or quit Excel. I have to Force Quit Excel.
I have tried this on a minimac and suffer the same problem.
Any ideas?
Regards,
Martin Beir
Create 3 Userforms each with a single Command button.
Userform1 (launch first)
Code: Private Sub CommandButton1_Click()
Userform2.Show
End Sub
Userform2
Code: Private Sub CommandButton1_Click()
Unload Me
Userform3.Show
End Sub
Userform3
Code: Private Sub CommandButton1_Click()
Unload Me
Unload Userform1
End Sub
If when Userform 3 is displayed I click the command button and then step
through the code with key F8 all is fine.
However, if I let the code run in the normal manner then the Userforms
disappear from the screen but Excel locks itself into Limbo mode. I cannot
edit code or quit Excel. I have to Force Quit Excel.
I have tried this on a minimac and suffer the same problem.
Any ideas?
Regards,
Martin Beir