Changing TabPage Size

stordaz

Newcomer
Joined
Apr 15, 2003
Messages
16
Location
Italy
Hi,

How can I change the width of the top label of a TabPage in a TabControl?
I tried changing the width value in the size param of the properties windows but nothing happens.
Where am I wrong?

Thanx

---
stefano :confused:
 
You have a few options:
1. You can set SizeMode to Fixed and set the ItemSize property to the width you want.
2. You can use the Padding property to make each tab have a little extra padding. This will not create fixed width tabs, but just pad the text on each one.

-Ner
 
Thank you, Ner

I know it was a simple question but
I'm new to VB.NET and I think I'going to visit
this forum very often in the next weeks.

---
Stefano
 
Back
Top