G
Guest
My application adds new worksheets to an open workbook to perform separate
calculations. These worksheets are formatted programmatically, containing
e.g. comboboxes. To ensure correct layout the standard font should be Arial,
size=11. I want to make sure that all users have this setting as default when
they work with this application. I tried this, but without success though:
With Application
.StandardFont = "Arial"
.StandardFontSize = "11"
End With
I put this code on the OK button on a form that adds a new sheet.
calculations. These worksheets are formatted programmatically, containing
e.g. comboboxes. To ensure correct layout the standard font should be Arial,
size=11. I want to make sure that all users have this setting as default when
they work with this application. I tried this, but without success though:
With Application
.StandardFont = "Arial"
.StandardFontSize = "11"
End With
I put this code on the OK button on a form that adds a new sheet.