TabControl

dbasnett

Newcomer
Joined
May 18, 2005
Messages
1
Using VB 2003 I have a tab control that sometimes draws the pages in a different order than what is shown and listed in the development environment. If I exit and start visual studio the problem goes away.
 
That is a known issue of the TabControl...

To ensure that that behavior goes away you must add the tabs (Clear the tabs collection of the tab control and re-add them on the desired order) at run-time on the contructor or Load of the form.

Alex :p
 
Back
Top