I want to diable the TAB key in the key board when using the application in visual basic.My purpose is to prevent the user from using the TAB key for navigation within the control.
Printable View
I want to diable the TAB key in the key board when using the application in visual basic.My purpose is to prevent the user from using the TAB key for navigation within the control.
On the KeyPress event, check and see if the user presesd the tab key. If they did, change the KeyAscii back to 0 and call SetFocus on the current control.