Button font style when in focus

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

Guest

Is there any way to set the default font parameters of a button when it receives the focus.

Your help will be much appreciated.
 
-----Original Message-----
Is there any way to set the default font parameters of a
button when it receives the focus.
Your help will be much appreciated.

There are a number of properties you can set:

With Me![yourcontrolname]
.FontName = "Arial"
.FontSize = 20
.FontWeight= 700 ' Bold
.FontItalic = True
.FontUnderline = True
End With

HTH
Kevin Sprinkel
 
Back
Top