MultiPage tab?

  • Thread starter Thread starter capt
  • Start date Start date
C

capt

I have a userform which I have inserted one multipage with three pages. Is
there a way to link the tab on a multipage to one of the lable box?
 
Further to my last.
This is in oder to rename the tab by inserting the text in a lable box.

Thanks
 
How about using a textbox that you can change:

Option Explicit
Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
With Me.MultiPage1
.Pages(.Pages.Count - 1).Caption = Me.TextBox1.Value
End With
End Sub
 
Back
Top