TabControl: Tabs are out of order at runtime

LHandy

Well-known member
Joined
May 27, 2005
Messages
50
Programming Experience
5-10
[resolved] TabControl: Tabs are out of order at runtime

As the title states, I have all of my tabs in the order that I want them in at design time. When I run the application, for some reason, they seem to be randomly out of order. I never change their location at any point in the code.

What is happening here?

Edit: Using VS.NET 2003 w/most recent .net framework 1.1 build.
 
Last edited:
I researched the issue some more and found that it happens in the constructor. When you double click on the tabcontrol at design time it will rearrange the tab order in the constructor. To fix it simply put them back in order there.


Apparently this is a bug that has, as Microsoft tends allow, gone unfixed.
 
Back
Top