In VB 6.0 it was possible to jump to one TabPage by using ALT plus a defined key, which had an underscore. E. g. by pressing ALT + P I could directly jump to a TabPage "Print".
Until now I did not find anything like that in VB.NET. Can you help me?
Printable View
In VB 6.0 it was possible to jump to one TabPage by using ALT plus a defined key, which had an underscore. E. g. by pressing ALT + P I could directly jump to a TabPage "Print".
Until now I did not find anything like that in VB.NET. Can you help me?
I don't know if there is a "friendly" way to do this, but you could always trap all keys and test for the ALT combos you want.
Then, set the tab controls selected index property
tab.SelectedIndex = n
note that the selectedindex number is 0-based. the first tab is 0.