Reputation: 55
I have a userform with 12 multi pages. I want to increase the font size of each page caption,as the default font is small. searched lot of blogs for this, but not getting any solution.
Upvotes: 1
Views: 3514
Reputation: 2267
You can do that only for the whole multipage not for a single page. Use this example:
Private Sub UserForm_Initialize()
MultiPage1.Font.Size = 16
MultiPage1.Font.Name = "Courier"
MultiPage1.Font.Bold = True
MultiPage1.Font.Italic = True
End Sub
Edit: You can also do it fix in the settings of the multipage. NOT in the settins for the pages:
Upvotes: 1