desktop - Programatically triggering tab key functionality in a VB.Net windows application -
How can I programmatically trigger tab key functionality in VB.Net windows application?
Currently when I press the key of the tab, and the focus is in the right order, then my application is using a splitter.
However, I have to use the arrow keys to focus on the next controls, focusing on when the user presses the tab keys.
In advance thanks
You SendKeys.Send
method (in systems .indows.forms namespace). You will call SendKeys.Send ("{TAB}") to simulate a tab keyboard.
To see all the top codes, check
Comments
Post a Comment