Stephanie14400
Messages postés5Date d'inscriptionsamedi 14 mai 2011StatutMembreDernière intervention15 mai 2011
-
15 mai 2011 à 13:04
NHenry
Messages postés15151Date d'inscriptionvendredi 14 mars 2003StatutModérateurDernière intervention 4 septembre 2024
-
15 mai 2011 à 15:06
Bonjours
Besoin d'un petit coups de pouce avec la methode SETFOCUS.
Je possède sur ma Form cinq control text1(0), text1(1) etc ... et j'aimerais qu'a chacune de mes saisies avec la touche Entrée passer au control text1() suivant.
Voila mon code qui me fait passer du text1(0) directement au text1(5):
Private Sub Text1_KeyPress(Index As Integer, KeyAscii As Integer)
Dim Z
For Z = 0 To 5
If KeyAscii = 13 Then
Text1(Z).SetFocus
End If
Next Z
End sub