Link to home
Start Free TrialLog in
Avatar of Harsh Kumar
Harsh KumarFlag for Denmark

asked on

VBA - Word Userform, Activate Multipage

Hi Guys,

Is there a way to activate a multipage within a multipage when using the [Next] Button??

This is the code i have to switch between userforms.

For Idx = Me.MultiPage1.Value + 1 To Me.MultiPage1.Pages.Count - 1
    If Me.MultiPage1.Pages(Idx).Visible Then
        Me.MultiPage1.Value = Idx
        Exit For
    End If
Next

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Roy Cox
Roy Cox
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial