Problème Textbox keypress
Fermé
LANGAZOU
Messages postés
95
Date d'inscription
vendredi 16 janvier 2015
Statut
Membre
Dernière intervention
8 novembre 2015
-
28 janv. 2015 à 18:55
Maurice - 28 janv. 2015 à 19:10
Maurice - 28 janv. 2015 à 19:10
A voir également:
- Problème Textbox keypress
- Vba textbox date format dd/mm/yyyy ✓ - Forum VB / VBA
- Format de saisie dans textbox userform excel ✓ - Forum Excel
- Vba textbox ✓ - Forum VB / VBA
- Programmer une textbox sous vba ✓ - Forum VB / VBA
- Comment concatener plusieurs textbox ✓ - Forum Excel
1 réponse
Bonjour
en principe on remplace la virgule par le point
A+
Maurice
en principe on remplace la virgule par le point
Private Sub TextBox6_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) Select Case KeyAscii Case 46, 48 To 57 '0 à 9 sont acceptes & . KeyAscii = KeyAscii Case 44 KeyAscii = 46 Case Else 'elimine toute autre entree KeyAscii = 0 End Select End Sub
A+
Maurice