How to easily reorder TabControl?

Viewed 36847

I have a TabControl which I have designed in the VS2005 designer that has about 7 tabs.

How can I easily switch the order of the tabs around?

I put one tab at the end in a rush, but now I want it somewhere in the middle.

3 Answers

Open FormName.Designer.cs.

Find the line this.tabControl1.Controls.Add ....

You can change the order here.

Screenshot

Related