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:
but still i am not able to tab through the pages of the tabcontrol, still only the first page is "tabbable". can someone help?
i do have the numbering of all the tabstops in order, i also tried to put this in the constructor of the form:
Code:
Me.TabPage1.TabStop() = True
Me.TabPage2.TabStop() = True
Me.TabPage3.TabStop() = True
etc.