View Single Post
  #1   Report Post  
billybob
 
Posts: n/a
Default I'm not sure which NG I should ask this question.

I'm very new at templates and macros. I would like to edit the vba command code to only show and print "This is What Typeface will Look Like" instead of the "ABCDE..., abcde...,etc. (keeping it simple).Would someone "in the know" show me how to edit this portion of the command to generate the desitrd result?

Sub FontSampleGenerator()
Dim oDoc As Document, SampleText As String, FontName As String, _
MyRange As Range, StartRange As Range, i As Long

Set oDoc = Documents.Add
SampleText = Chr$(147) & "ABCDEFGHIJKLMNOPQRSTUVWXYZ" & _
Chr$(148) & ", " & _
Chr$(147) & "abcdefghijklmnopqrstuvwxyz" & Chr$(148) & ", " & _
Chr$(147) & "0123456789" & Chr$(148) & ", " & _
Chr$(147) & "The quick brown fox jumps over the lazy dog" & Chr$(148) & ", " & _
Chr$(145) & "Ã*áâéêëìÃ*îòóôùúû" & Chr$(146) & ", " & _
Chr$(145) & "(;,.:£‚¬$?!)" & Chr$(146)

System.Cursor = wdCursorWait

Thanks, anyone!