Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selecting a Page on a MultiPage Form in XL 1

Status
Not open for further replies.

Fatbelly

Technical User
Jan 5, 2002
6
GB
Hi all,

Does anybody knows the code for Selecting a Page(Tab) on a MultiPage Form

Select Case FormTag
Case "CL"
'Here I need the code to Select the Page(Tab)
of the MultiPage on the Form
Case "CD"
'same code for other Tab
End Select

Much appreciate your help,


 
I used this line of code to select a tab:

Me.MultiPage1.Value = 4 (Just replace with your appropriate name and tab number)

Hope this helps

Joe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top