Does anyone know how to process a <TAB> keystroke when entering it in a standard VB6 textbox? Right now it just jump to next tabstop. What I wish to do is to catch it just like a <ENTER> keystroke;
___________________________________________________________
Private Sub AE_SerialNo_KeyPress(keyascii As Integer)
If keyascii = 13 Then
___________________________________________________________
How would it look for a <TAB> catch? I found out that there should be a textbox with a "AcceptsTab" property... but I can't find it. All input is highly appreciated.
Thanks in advance.
Best Regards,
Lars Thornqvist