richbrowncardiff Posted June 30, 2014 Posted June 30, 2014 Hi all, Do you know of a way to set the default font & size in Excel and word 2010 ? All users have roaming profiles so need a way of putting in in all profiles I think? I have the adm templates for group policy but cant see anywhere to set this ? as always help much appreciated Many thanks
featured_spectre Posted June 30, 2014 Posted June 30, 2014 I have a macro which I load at start up. I'm out of office for the week but when I'm back I can post it up for you. 1
richbrowncardiff Posted June 30, 2014 Author Posted June 30, 2014 Thanks Nephilim that would be great
featured_spectre Posted June 30, 2014 Posted June 30, 2014 The macro defaults it to arial 10.5 single spacing (I believe). Add it to the template in the office folder (normal.dotx) and it should be golden.
featured_spectre Posted July 7, 2014 Posted July 7, 2014 here is the subroutine for it. Sub ChangeFont() With ActiveDocument.Styles("Normal").Font .Name = "Arial" .Size = 10.5 .Bold = False .Italic = False .Underline = wdUnderlineNone .UnderlineColor = wdColorAutomatic .StrikeThrough = False .DoubleStrikeThrough = False .Outline = False .Emboss = False .Shadow = False .Hidden = False .SmallCaps = False .AllCaps = False .Color = wdColorAutomatic .Engrave = False .Superscript = False .Subscript = False .Scaling = 100 .Kerning = 0 .Animation = wdAnimationNone End With With ActiveDocument.Styles("Normal") .AutomaticallyUpdate = False .BaseStyle = "" .NextParagraphStyle = "Normal" End With End Sub
featured_spectre Posted July 22, 2014 Posted July 22, 2014 @richbrowncardiff did this work for you? 1
zbjsy Posted September 16, 2014 Posted September 16, 2014 here is the subroutine for it. Sub ChangeFont() With ActiveDocument.Styles("Normal").Font .Name = "Arial" .Size = 10.5 .Bold = False .Italic = False .Underline = wdUnderlineNone .UnderlineColor = wdColorAutomatic .StrikeThrough = False .DoubleStrikeThrough = False .Outline = False .Emboss = False .Shadow = False .Hidden = False .SmallCaps = False .AllCaps = False .Color = wdColorAutomatic .Engrave = False .Superscript = False .Subscript = False .Scaling = 100 .Kerning = 0 .Animation = wdAnimationNone End With With ActiveDocument.Styles("Normal") .AutomaticallyUpdate = False .BaseStyle = "" .NextParagraphStyle = "Normal" End With End Sub how do you apply this? thank you
featured_spectre Posted September 16, 2014 Posted September 16, 2014 load up your normal.dot file, press ALT+F11, paste the code into the VB, save it, restart word. Enjoy.
zbjsy Posted September 16, 2014 Posted September 16, 2014 how do you then put this across the network ?
featured_spectre Posted September 16, 2014 Posted September 16, 2014 not sure on network wide without replacing all of the normal.dot files.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now