How do you print a list of the fonts in Word for hardcopy referenc

G

Guest

The function for printing off a hardcopy list of available fonts with the
name and a sample of the font used to be available in WordPerfect. I found
it helpful to be able to reference a hardcopy of the available fonts rather
than scrolling through the application list. I found the list of available
fonts for Word 2003 but the sample of the font is not displayed, only the
name of the font
(http://support.microsoft.com/default.aspx?scid=kb;en-us;837463&Product=offxp)
 
T

Tony Jollans

I did this for somebody the other day - it's a bit rough'n'ready but it does
list each font name in its font.

Drop this in a standard code module and run it:

Sub ListFonts()
Documents.Add
For Each Font In FontNames
Selection.Font.Name = Font
Selection.TypeText Font
Selection.TypeParagraph
Next
End Sub

--
Enjoy,
Tony


Fay Finch said:
The function for printing off a hardcopy list of available fonts with the
name and a sample of the font used to be available in WordPerfect. I found
it helpful to be able to reference a hardcopy of the available fonts rather
than scrolling through the application list. I found the list of available
fonts for Word 2003 but the sample of the font is not displayed, only the
name of the font
(http://support.microsoft.com/default.aspx?scid=kb;en-us;837463&Product=offx
p)
 
C

cat

Hi,
I would like to do this too , but on the link below, I am stuck at
instruction no.4-
what code do i paste in the window at right? I am not Winodws savvy..I know
I am close to seeing this printable list of fonts...pls advise.
Thank you!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top