Tab control Page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a Tab Control Page in a form with multiple pages. I have to use a
horizontal scoll bar to see all pages. Is there a way to format the tabs so
the font is smaller and if there is two words on the tab to have the second
word under the first?

Thanks in advance
 
PJ,
Try the Multi-Row property of your tab control.
If you have too many tabs, it will place another row of tabs beneath the
first.
 
PJ said:
I have a Tab Control Page in a form with multiple pages. I have to
use a horizontal scoll bar to see all pages. Is there a way to format
the tabs so the font is smaller and if there is two words on the tab
to have the second word under the first?

You can change the font size of the page captions by setting the Font
Size property of the tab control itself. Unfortunately, the only way I
can think of to get two lines on the tabs is to create a a bitmap image
of the text you want and set the page's Picture property to that image,
while setting the page's Caption property to a space. That's rather
cumbersome, but it should work.
 
Al Camp said:
PJ,
Try the Multi-Row property of your tab control.
If you have too many tabs, it will place another row of tabs
beneath the first.

Good suggestion, which I didn't think of.
 
Back
Top