Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

i thought one is supposed to be able to tab through the pages of a tab control, but apparently not.... tabbing only goes only through the elements on the first tabpage and then instead of going to the second tab page it jumps to the next control on the form.

 

i do have the numbering of all the tabstops in order, i also tried to put this in the constructor of the form:

Me.TabPage1.TabStop() = True
Me.TabPage2.TabStop() = True
Me.TabPage3.TabStop() = True

etc.

but still i am not able to tab through the pages of the tabcontrol, still only the first page is "tabbable". can someone help?

  • Leaders
Posted

By windows convention, you do not "tab through tabs", you tab to the tab control's header and then use the navigation keys to go from tab to tab. If you had to tab through all tabs, there'd be no way of accessing things on the tabs (particularly in the middle).

 

Something you *might* be able to do *somewhere* is:

TCL.SelectedIndex = (TCL.SelectedIndex + 1) Mod TCL.TabCount

 

But, TabControls probably block all Tab messages anyway...

Iceplug, USN

One of my coworkers thinks that I believe that drawing bullets is the most efficient way of drawing bullets. Whatever!!! :-(

  • Leaders
Posted
If a TabControl or any control within one if it's TabPages has focus then pressing Control+Tab will bring up the next tab. This is consistant with most tabbed interfaces.
[sIGPIC]e[/sIGPIC]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...