Date sous 3 textbox (VBA)
Résolu/Fermé
A voir également:
- Date sous 3 textbox (VBA)
- Airpods 3 date de sortie - Guide
- Picasa 3 - Télécharger - Albums photo
- Ai suite 3 download - Télécharger - Optimisation
- Publipostage date inversée ✓ - Forum Word
2 réponses
f894009
Messages postés
17205
Date d'inscription
dimanche 25 novembre 2007
Statut
Membre
Dernière intervention
19 octobre 2024
1 709
13 avril 2012 à 09:58
13 avril 2012 à 09:58
Bonjour,
exemple de code sans test des entrees
Definir MaxLengh des textbox's dans les proprietes ou par programme et
ajouter les tests des caracteres numeriques.
Private Sub TextBox1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox1.Text) = TextBox1.MaxLength Then
TextBox2.SetFocus
End If
End Sub
Private Sub TextBox2_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox2.Text) = TextBox2.MaxLength Then
TextBox3.SetFocus
End If
End Sub
Private Sub TextBox3_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox3.Text) = TextBox3.MaxLength Then
MsgBox ("ok")
End If
End Sub
Bonne suite
exemple de code sans test des entrees
Definir MaxLengh des textbox's dans les proprietes ou par programme et
ajouter les tests des caracteres numeriques.
Private Sub TextBox1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox1.Text) = TextBox1.MaxLength Then
TextBox2.SetFocus
End If
End Sub
Private Sub TextBox2_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox2.Text) = TextBox2.MaxLength Then
TextBox3.SetFocus
End If
End Sub
Private Sub TextBox3_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(TextBox3.Text) = TextBox3.MaxLength Then
MsgBox ("ok")
End If
End Sub
Bonne suite