Openning a UserForm

  • Thread starter Thread starter Patrick Simonds
  • Start date Start date
P

Patrick Simonds

I created a UserForm which I am using a MultiPage control. Is there any way
that when the UserForm is opened it always opens with Page 1 of the
MultiPage control having focus?
 
Hi Patrick


You must use Value (0 is the first page)


Me.MultiPage1.Value = 0 'Page 1
 
Back
Top