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:
WApp.Documents(1).Content.Font.Name = "Arial" 'Or use the document name instead of the index position
Thank you very much.
Since I discovered Delphi and Lazarus, VB has become history to me.