• print font examples (Word 2003)

    Author
    Topic
    #435395

    Is there a macro (or other method) of getting a printout of all of my fonts–one that shows actual examples of each font? I used to have a macro for this for Word 97, but can’t fnd t anymore, and am havng no luck in doing searches for it.

    Viewing 3 reply threads
    Author
    Replies
    • #1028909

      I found this lying around, and it still seems to work.

      StuartR


      Sub AllFonts()
      Dim strBaseFont As String
      Dim strFont As Variant

      With Selection.ParagraphFormat
      .Alignment = wdAlignParagraphLeft
      .LeftIndent = 0
      .RightIndent = 0
      .SpaceBefore = 1
      .SpaceAfter = 0
      .LineSpacingRule = wdLineSpaceSingle
      .WidowControl = True
      .KeepTogether = True
      .KeepWithNext = True
      End With
      strBaseFont = "Times New Roman"
      For Each strFont In Application.FontNames
      Selection.Font.Name = strBaseFont
      Selection.TypeText strFont & vbCrLf
      Selection.Font.Name = strFont
      Selection.TypeText "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" & vbCrLf
      Selection.TypeText "The quick brown fox jumps over the lazy dog's back" & vbCrLf
      Selection.TypeText "! @ #$ % ^ & *() _ + - = { } [ ] : ;?,./|~`" & vbCrLf
      Selection.ParagraphFormat.KeepWithNext = False
      Selection.TypeText vbCrLf
      Selection.ParagraphFormat.KeepWithNext = True
      Next strFont

      End Sub

    • #1028914

      Here’s another macro (in the attached document).

    • #1028952

      What I have used for a long time is TypeRodent version 1.2, but I don’t have Word 2003, just Word 97.
      It’s a template with a macro in it. Very convenient.
      http://tatumweb.com/typerat/%5B/url%5D

    • #1030527

      thanks to all for the help. That gives me what I needed.

    Viewing 3 reply threads
    Reply To: print font examples (Word 2003)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: