Private Sub CommandButton1_Click()
Unload UserForm1
End Sub
Private Sub Label1_Click()
ThisWorkbook.FollowHyperlink Address:="[URL]https://www.excel-downloads.com/[/URL]", NewWindow:=True
End Sub
Private Sub Label1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
With Label1
.ForeColor = &HFF0000
.Font.Underline = True
.MousePointer = fmMousePointerCustom
.MouseIcon = LoadPicture("C:\WINDOWS\Cursors\harrow.cur") [COLOR=green]'A vérifier si le fichier "Cursor" est dispo
[/COLOR] End With
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
With Label1
.ForeColor = &H80000012
.Font.Underline = False
End With
End Sub