PDA

View Full Version : Solved: Multipage and combo box



Mandy
08-01-2008, 07:10 PM
Hi

I have following problem.
I have added one database form in my excel sheet to connect different sort of database. on that database form i have one combobox that show(access, Sql server, other) 3 options. in addition to that i had placed one multipage on same form with three pages(Access, SQL, Other).
Can any one tell me how i can select different pages through combo box options.:dunno

Thanks:help
Mandeep

mikerickson
08-01-2008, 09:05 PM
Private Sub ComboBox1_Change()
With Me
.MultiPage1.Value = .ComboBox1.ListIndex
End With
End Sub

Mandy
08-02-2008, 02:27 AM
Its working.
Thanks Mikerickson:beerchug:

Mandeep

mdmackillop
08-02-2008, 03:00 AM
Hi Mandy,
Don't forget to mark your posts Solved.