Default multi page

B

Bill

Have read the other Q&A's on default multipage and still cant get it to work
Want to open on page 0, on open, here is code

Workbook opens and immediatly displays user form

Private Sub workbook_open()

MsgBox "Agree to confidentiality message"
Mymain.Show
'need to default to page 0 the first page
'mymain is name of user form
Mymain.MultiPage1.Value = 0
Mymain.MultiPage1.Pages(1).Visible = True

End Sub

Thanks in advance from australia
 
O

OssieMac

Hi again Bill,

Just a little extra info on the ShowModal property of a form. When set to
True, no code runs after the Show command until the form is closed. Also you
cannot access worksheets while the form is open.

If ShowModal is set to False then all the code runs and you can also access
cells on worksheets etc while the form is open.

ShowModal cannot be set with VBA code; only in the Properties dialog box.
 

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