View Single Post
 
Old 11-12-2015, 06:31 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,375
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

FWIW, you can print all the fonts installed on your system with the following macro:
Code:
Sub ListFonts()
Dim ListFont as Variant
Application.ScreenUpdating = False
For Each ListFont in Fontnames
  With Selection
    .Font.Name = "Arial"
    .Font.Size = 12
    .TypeText ListFont
    .TypeText Text := Chr(11)
    .Font.Name = ListFont
    .TypeText "ABCDEFGHIJKLMNOPQRSTUVWXYZ ~!@#$%^&*()_+|<>?:{}"
    .TypeText Text := Chr(11)
    .TypeText "abcdefghijklmnopqrstuvwxyz '1234567890-=\,.;'[]"
    .TypeText Text := Chr(11)
    .InsertParagraphAfter
    .Movedown Unit := wdParagraph, Count := 1, Extend := wdMove
  End With
Next ListFont
Selection.WholeStory
Selection.Sort
Selection.HomeKey Unit := wdStory
End sub
For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote