Font on Tab Controls

TJBernard

Registered User.
Local time
Today, 18:56
Joined
Mar 28, 2002
Messages
176
Is there anyway to enlarge, bold, or change the font of a standard MS Access tab control page headers. When I add the tab control to a form, it defaults the font at Tahoma Size 8. On the properties I could not find an option to change the font size, type and weight.

If anyone has any ideas let me know.

Thank you,

T.J.
 
TJ,

I think the trick is to select the entire control, not just a tab page in the control. When the whole control is selected the usual font name, font size, etc., properties are available.

HTH,
Jim
 
Hi,
If anyone cannot find out the way still, please try this.
Function ChangeControlProperties()
Dim ctl As Control
For Each ctl In Forms("yourForm")
If ctl.ControlType = 123 Then
ctl.FontName = "Arial"
tl.FontSize = 9
End If
Next
End Function
Thanks!
Ratheesh
 
I set the fonts to Bold in all page tabs. All you need do is click to the right of the tabs, above the content border. You then have access to all the formatting controls.
 
I set the fonts to Bold in all page tabs. All you need do is click to the right of the tabs, above the content border. You then have access to all the formatting controls.
Hi. Welcome to AWF!

Thanks for trying to help. Just FYI though, you are replying to a 9-year old thread.
 
Actually its 21 years old with a 12 year hiatus between posts 2 & 3
See you all again in or around 2034
 

Users who are viewing this thread

Back
Top Bottom