You need to expose label1 in the usercontrol.
Put this in the UserControl:
Public Property Get MyLabel() As Object
Set MyLabel = UserControl.Label1
End Property
Public Property Set MyLabel(ByRef NewLabel As Label)
Set UserControl.Label1 = NewLabel
End Property
Then you can do
UserControl1.MyLabel.Caption = "hello"