G Guest Mar 26, 2004 #1 Is there any way to set the default font parameters of a button when it receives the focus. Your help will be much appreciated.
Is there any way to set the default font parameters of a button when it receives the focus. Your help will be much appreciated.
K Kevin Sprinkel Mar 26, 2004 #2 -----Original Message----- Is there any way to set the default font parameters of a Click to expand... button when it receives the focus. Your help will be much appreciated. Click to expand... 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
-----Original Message----- Is there any way to set the default font parameters of a Click to expand... button when it receives the focus. Your help will be much appreciated. Click to expand... 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