Do This:
Place two textboxes on a form.
Now tell me how to capture the TAB key, without setting TabStop Settings.
I've got everything else figured out, can't do this one.
Hoping for the best.
Printable View
Do This:
Place two textboxes on a form.
Now tell me how to capture the TAB key, without setting TabStop Settings.
I've got everything else figured out, can't do this one.
Hoping for the best.
VB Code:
Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer Private Sub Text1_LostFocus() If GetKeyState(vbKeyTab) < 0 Then Text1.SetFocus MsgBox "You can check out anytime you " & _ "want, but you can never leave. (Who's your daddy?)" End If End Sub
Welcome to the Hotel California....
Beautiful Thank you. All is well at HC. Good song :)
As peet would say...
:D