vsprogrammer
Programmer
Hi! I am new to this, please forgive if it does not make sense. I have a vb6 form with hotkeys on labels to bring me to the textbox when hit, ie.) on the caption I have "&Invoice #:" but when you hit Alt+I it does not work - nothing happens. So I tried to do the following on the form - keydown():
PLEASE HELP.... Thanks!
Code:
If vbAltMask Then
Select Case KeyCode
Case vbKeyI
txtInvoiceNbr.SetFocus
KeyCode = 0
End Select
End If
End If