On my userform i got a Multipage with the same function BUT with different Code so i match to the cells where to take action
My command Button works As they should But my Label functions Kill's Mee
On a Normal Userform i see Both Values when i run userform but Not on Multipage then i only see "Label 1"
My command Button works As they should But my Label functions Kill's Mee
On a Normal Userform i see Both Values when i run userform but Not on Multipage then i only see "Label 1"
Code:
Private Sub MultiPage1_Change()
End Sub
Private Sub CommandButton1_Click()
Sheets("Ark2").Range("C1").Value = "1"
End Sub
Private Sub CommandButton2_Click()
Sheets("Ark2").Range("C1").Value = "2"
End Sub
Private Sub CommandButton3_Click()
Unload Me
End Sub
Private Sub Label1_Click()
End Sub
Private Sub Label2_Click()
End Sub
Private Sub UserForm_Click()
End Sub
Private Sub UserForm_Initialize()
Label1.Caption = Worksheets("Ark2").Range("D1").Value
Label2.Caption = Worksheets("Ark2").Range("D2").Value
End Sub
Last edited: