Bug With TabControl Object

  • Thread starter Thread starter Felipe T.
  • Start date Start date
F

Felipe T.

Hi guys.

I had a tabcontrol object with 4 tabs, and it worked Correctly.
Now i must add an 5th tab...
And voilá! The control scrambles all my tabs....

Why the TabControl Object has this bug?
Any way to solve it?

Thx,
Felipe
 
Yes, this is a known bug in the designer itself. Typically my fix is to
write code to reorder the tabs to the correct order and place it in the
Form's ctor immediately after the InitializeComponent call.
 
Thx, ill use it this way then.

Chris Tacke said:
Yes, this is a known bug in the designer itself. Typically my fix is to
write code to reorder the tabs to the correct order and place it in the
Form's ctor immediately after the InitializeComponent call.
 
Back
Top