How to insert subform in main form in excel 2003

  • Thread starter Thread starter Andi
  • Start date Start date
I am pretty sure you are referring to Access UserForms, not Excel UserForms.
Have you considered posting over at the Access Forms ares?


Regards,
Ryan---
 
Thanks,
But that not the right one I'm looking for.
in excel, i try to write vba program with visual basic, but seem only one
form. so i need to know how to put sub-form into the main form like in the
access.
thanks...
 
You want the MultiPage Control. The MultiPage Control should be on your
toolbox toolbar in the VB Editor. The Multipage control you add onto your
original Userform at design time.

Note: Each page of the MultiPage Control is considered an object and you
need to reference it like so:

'first page
Me.MultiPage1.Pages(0)...
'second page
Me.MultiPage1.Pages(1)...

Hope this helps! If you please click "Yes"
.....
 
Back
Top