Multipage on userforms

D

Darren

on a userform, what code do i use to select a particular page of a
multipage, if for example, the first page (index 0) is called "Welcome".

Thanks in advance for any help.

Darren
 
J

John Wilson

Darren

Multipage1.Value = 0
for the first page
Multipage1.Value = 1
for the second page, etc.

John
 
Top