Private Sub UserForm_Initialize()
Me.Label1.Visible = False
End Sub
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
With Me.Label1
.TextAlign = fmTextAlignCenter
.Visible = True
.BackColor = 12648447
.BorderStyle = fmBorderStyleSingle
.Caption = 'Hello Le Forum XLD' & vbCrLf & 'Ici le CommandButton1' & vbCrLf & _
'qui a été activé par' & vbCrLf & Application.UserName & vbCrLf & _
'en ce ' & Format(Date, 'DDDD DD MMMM YYYY')
End With
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Me.Label1.Visible = False
End Sub