How to Auto tabbing fields
Posted on July 21, 2011
1 2 3 4 | 'Controls - How to Auto tabbing fields Private Sub Text2_Change() If Len(Text2.Text) = Text2.MaxLength Then SendKeys "{Tab}" End Sub |
1 2 3 4 | 'Controls - How to Auto tabbing fields Private Sub Text2_Change() If Len(Text2.Text) = Text2.MaxLength Then SendKeys "{Tab}" End Sub |