Quote Originally Posted by RobDog888
Yes, on a clean install of Office, even on Vista.

One note though, I wouldnt use WApp.ActiveWindow.Selection for a couple of reasons.
Its dependant upon the desired document being the active one (in cases when the word app has multiple documents opened in it).
Slows down as its more resource intensive.

Change it to something like...

VB Code:
  1. WApp.Documents(1).Content.Font.Name = "Arial" 'Or use the document name instead of the index position
Thank you very much.