Option Explicit
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Dim objlblfantome As OLEObject
Dim flblfantome As Boolean
For Each objlblfantome In ActiveSheet.OLEObjects
flblfantome = objlblfantome.Name = "lblfantome"
Next objlblfantome
If Not flblfantome Then
CreerUneEtiquette CommandButton1, "Bonjour à tous" ' (MACRO)
' pour les autres contrôles, modifiez le nom et le texte que vous souhaitez sur l'étiquette
End If
End Sub