erik.van.geit
MrExcel MVP
- Joined
- Feb 1, 2003
- Messages
- 17,832
Hi, guys and galls,
Please do the following.
Create a Userform
Change the FONT property: name or size or both
What do you expect? I thought that the caption font and size would change. But nothing happens.
Perhaps I am missing the obvious... What's the FONT property made for then?
If someone can help, that would be nice.
kind regards,
Erik
PS: some code I played with
Please do the following.
Create a Userform
Change the FONT property: name or size or both
What do you expect? I thought that the caption font and size would change. But nothing happens.
Perhaps I am missing the obvious... What's the FONT property made for then?
If someone can help, that would be nice.
kind regards,
Erik
PS: some code I played with
Code:
Private Sub UserForm_Click()
Me.Font.Size = 10
Me.Font.Name = "Trebuchet MS"
MsgBox Me.Font.Name & vbNewLine & Me.Font.Size
Me.Font.Size = 40
Me.Font.Name = "Arial"
MsgBox Me.Font.Name & vbNewLine & Me.Font.Size
End Sub