|
|
|
|
|
Dicas
|
|
Visual Basic (Miscelâneas)
|
|
|
Título da Dica: TAB automático para o próximo campo
|
|
|
|
Postada em 11/8/2003 por d@®l@n
Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer) If KeyCode > 47 And KeyCode < 123 Then If Len(Text1.Text) = (Text1.MaxLength) Then SendKeys "{TAB}" End If End If End Sub
|
|
|
|
|