multipage question

D

David Goodall

Hi,
I've created a multipage form containing 10 pages and I'd like, if possible,
to be able to use label1_dblclick() on label1, page 1, which then
automatically open page 5 say. I'm trying to duplicate a sort of hyperlink.
I've looked through the multipage properties but I can't see show as one of
them.

Any help, as always greatly appreciated.

Thanks
David.
 
B

Bob Phillips

Hi David,

Private Sub Label1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Me.MultiPage1.Value = 4
End Sub

You use the value 4 as the collection starts at 0.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top