ok I have couple of textboxes I want to tab to the next textbox when the number of letters in the box is equal to maxlength property. How can i do this using api function or is there any other way?? tnx.
Printable View
ok I have couple of textboxes I want to tab to the next textbox when the number of letters in the box is equal to maxlength property. How can i do this using api function or is there any other way?? tnx.
VB6? if so:VB Code:
Private Sub Text1_Change() If Len(Text1.Text) = Text1.MaxLength Then SendKeys "{TAB}" End Sub
lol that was simple tnx man it works.Quote:
Originally Posted by bushmobile