Userform Error

gugumnd

New Member
Joined
May 27, 2018
Messages
8
I have a problem manipulating user forms im my program. I have 3 userforms (Form1, Form2, Form3). Form1 is the main page. Form2 is shown by clicking a Commandbutton1 in Form1 and Form3 is shown by clicking a Commandbutton2 in Form2. I want to go back to the main page (Form1) if lick a Commandbutton3 in Form3 but I get an error "Form Already Displayed; Can't Show Modally Error" when clicking button 3. See codes below. Thanks in advance for any help.


Private sub CommandButton1_Click()
Form1.Hide
Form2.Show
End Sub


Private sub CommandButton2_Click()
Form1.Hide
Form2.Hide
Form3.Show
End Sub


Private sub CommandButton3_Click()
Form2.Hide
Form3.Hide
Form1.Hide
End Sub


Gugu
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
It would be easier for you to use only one userform with a Multipage control rather than trying to navigate all these different userforms.

Have you tried
Code:
Private sub CommandButton3_Click()
Form2.Hide
Form3.Hide
Form1.[COLOR="#FF0000"]Show
[/COLOR]End Sub
 
Upvote 0

Forum statistics

Threads
1,215,239
Messages
6,123,817
Members
449,127
Latest member
Cyko

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top