More than one User Forms

  • Thread starter TotallyConfused
  • Start date
T

TotallyConfused

I would like a main screen that would call other forms when clicking on
different buttons on the main screen (splash screen). Is it best to create
the main screen in
Excel worksheet with the form tools or in VB UserForm? How do I call other
forms using the buttons on the main screen>? Thank you in advance.
 
F

FSt1

hi
I create my forms in the vb editor. i am not sure which is best. but to call
a form from a button, in the button code put......
Sub showforms()
Load userform1
userform1.Show 0
End Sub

if you have other forms, they will be numbered. just put the appropriate
form name.

Regards
FSt1
 
T

TotallyConfused

I used this code and it does work. I want to be able to click on button
(commandbutton1) and it will show next form. what am I missing?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top