Bonjour,
J'aimerai supprimer la valeur d'une combobox avec vbKeyClear mais cela ne fonctionne pas...
Seul vbdelete fonctione.
Voici mon code et mon fichier.
Merci par avance pour votre retour.
Private Sub ComboBox_reper1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = vbKeyDelete _
Then
ComboBox_reper1.Value = ""
End If
If KeyCode = vbKeyClear _
Then
ComboBox_reper1.Value = ""
End If
End Sub
J'aimerai supprimer la valeur d'une combobox avec vbKeyClear mais cela ne fonctionne pas...
Seul vbdelete fonctione.
Voici mon code et mon fichier.
Merci par avance pour votre retour.
Private Sub ComboBox_reper1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = vbKeyDelete _
Then
ComboBox_reper1.Value = ""
End If
If KeyCode = vbKeyClear _
Then
ComboBox_reper1.Value = ""
End If
End Sub