Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
Frizzylee Frizzylee is offline
external usenet poster
 
Posts: 1
Default Printing a list of all my fonts

Is it possible to print a list of all my existing fonts (for quick reference)
in the style of each particular font? In other words, Arial looks like
Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.
  #2   Report Post  
Posted to microsoft.public.word.newusers
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Printing a list of all my fonts

Frizzylee wrote:
Is it possible to print a list of all my existing fonts (for quick
reference) in the style of each particular font? In other words,
Arial looks like Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.


See http://www.word.mvps.org/FAQs/Format...eGenerator.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


  #3   Report Post  
Posted to microsoft.public.word.newusers
Reitanos Reitanos is offline
external usenet poster
 
Posts: 109
Default Printing a list of all my fonts

Here's a simple macro:

Sub WriteFontList()
For Each fname In FontNames
With Selection
.Font.Name = "Tahoma"
.Font.Size = 12
.ParagraphFormat.SpaceBefore = 6
.TypeText fname
.TypeText ": "
.Font.Size = 12
.Font.Name = fname
.TypeText "The Quick Brown Fox"
.TypeText Text:=Chr(13)
End With
Next fname
End Sub

On Jul 15, 1:43*pm, Frizzylee
wrote:
Is it possible to print a list of all my existing fonts (for quick reference)
in the style of each particular font? *In other words, Arial looks like
Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.


  #4   Report Post  
Posted to microsoft.public.word.newusers
JoAnn Paules JoAnn Paules is offline
external usenet poster
 
Posts: 4,241
Default Printing a list of all my fonts

I use something else but will that tell you what's similar to another font?

--

JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



"Jay Freedman" wrote in message
...
Frizzylee wrote:
Is it possible to print a list of all my existing fonts (for quick
reference) in the style of each particular font? In other words,
Arial looks like Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.


See http://www.word.mvps.org/FAQs/Format...eGenerator.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.


  #5   Report Post  
Posted to microsoft.public.word.newusers
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Printing a list of all my fonts

No, it's similar to the macro posted by Reitanos -- it just prints a sample of
each font.

Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
"similar". ;-)

On Tue, 15 Jul 2008 17:49:36 -0400, "JoAnn Paules"
wrote:

I use something else but will that tell you what's similar to another font?

--

JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



"Jay Freedman" wrote in message
...
Frizzylee wrote:
Is it possible to print a list of all my existing fonts (for quick
reference) in the style of each particular font? In other words,
Arial looks like Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.


See http://www.word.mvps.org/FAQs/Format...eGenerator.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all may benefit.



  #6   Report Post  
Posted to microsoft.public.word.newusers
Bob Buckland ?:-\) Bob   Buckland ?:-\) is offline
external usenet poster
 
Posts: 2,073
Default Printing a list of all my fonts

Hi Jay,

Welll, since you 'asked'
it's actually Windows Graphic Device Interface (GDI) rather than Office that determines(?) 'similarity' using Panose mapping

http://support.microsoft.com/kb/918791 (search on Panose)

http://www.w3.org/Pringint/steveahn.html (Thumbnail overview)

http://msdn.microsoft.com/en-us/libr...98(VS.85).aspx (coding)

Example of how the Similarity lookup works:

http://books.google.com/books?id=-O9...9zGQ 74&hl=en

The TextMetric structure used to figure out how to match what you see on screen, on differing devices, to the printing devices,
after determining which font each actually has or can 'look like' it has so that the view and print more or more or less match is
pretty involved g.

============
"Jay Freedman" wrote in message ...
No, it's similar to the macro posted by Reitanos -- it just prints a sample of
each font.

Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
"similar". ;-)
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*


  #7   Report Post  
Posted to microsoft.public.word.newusers
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Printing a list of all my fonts

Thanks, Bob. FYI, the link to w3.org doesn't work any more (the page might have
been moved to their archive). The MSDN link was very informative, though
(fortunately I'm not freaked by complicated structures in C++).

From some of the results I've seen, I'll guess that many amateur fonts and even
a fair number of commercial ones contain either erroneous Panose data or none at
all. That experience was the basis for my original comment.

--
Jay

On Tue, 15 Jul 2008 18:04:04 -0700, "Bob Buckland ?:-\)" 75214.226(At
Beautiful Downtown)compuserve.com wrote:

Hi Jay,

Welll, since you 'asked'
it's actually Windows Graphic Device Interface (GDI) rather than Office that determines(?) 'similarity' using Panose mapping

http://support.microsoft.com/kb/918791 (search on Panose)

http://www.w3.org/Pringint/steveahn.html (Thumbnail overview)

http://msdn.microsoft.com/en-us/libr...98(VS.85).aspx (coding)

Example of how the Similarity lookup works:

http://books.google.com/books?id=-O9...9zGQ 74&hl=en

The TextMetric structure used to figure out how to match what you see on screen, on differing devices, to the printing devices,
after determining which font each actually has or can 'look like' it has so that the view and print more or more or less match is
pretty involved g.

============
"Jay Freedman" wrote in message ...
No, it's similar to the macro posted by Reitanos -- it just prints a sample of
each font.

Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
"similar". ;-)

  #8   Report Post  
Posted to microsoft.public.word.newusers
Bob Buckland ?:-\) Bob   Buckland ?:-\) is offline
external usenet poster
 
Posts: 2,073
Default Printing a list of all my fonts

Hi Jay,

When you see all of the things that go on and all the different combinations of devices and outside factors that can be involved
(including the ability to type the name of a non-existant font into Word and have it 'use it' g) it's fairly amazing that
everything works as well as it does

The link to W3 would have worked if I could type g onto computer 'a', what I'm reading on the screen from computer 'b'
Try this one
http://www.w3.org/Printing/stevahn.html

==============
"Jay Freedman" wrote in message ...
Thanks, Bob. FYI, the link to w3.org doesn't work any more (the page might have
been moved to their archive). The MSDN link was very informative, though
(fortunately I'm not freaked by complicated structures in C++).

From some of the results I've seen, I'll guess that many amateur fonts and even
a fair number of commercial ones contain either erroneous Panose data or none at
all. That experience was the basis for my original comment.

Jay
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Why can't i see the fonts in the fonts list? Shah Microsoft Word Help 1 December 24th 06 09:52 PM
cannot find some of the fonts in fonts list Himanshu Microsoft Word Help 6 September 9th 05 06:23 PM
Printing list of fonts Laura3521 Microsoft Word Help 1 April 29th 05 12:55 AM
Can I print a list of fonts IN those fonts? Laura3521 Microsoft Word Help 5 April 28th 05 05:47 PM
List of available fonts ET New Users 2 March 20th 05 05:07 AM


All times are GMT +1. The time now is 03:05 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"