"Ever wish you had a quick reference sheet for all those fonts you feel you simply have to have in your system? If you have any
version of Microsoft Word 6.0 or later you're in luck. Just choose Tools > Macro > Visual Basic Editor and insert the following script:
Sub ListFonts()
'Speeds macro processing and suppresses display.
Application.ScreenUpdating = False
Documents.Add Template:="normal"
For Each aFont In PortraitFontNames
With Selection
.Font.Bold = True
.Font.Underline = True
.Font.Name = "times new roman"
.TypeText aFont
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
.Font.Bold = False
.Font.Underline = False
.Font.Name = aFont
.TypeText "abcdefghijklmnopqrstuvwxyz"
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
.TypeText "0123456789?$%&()[]*_-=+/<>"
.InsertParagraphAfter
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
End With
Next aFont
Application.ScreenUpdating = True
End Sub
When you've finished, choose File > Close And Return To Microsoft Word.
Then choose Tools > Macro > Macros and run the script named FontSampler.
When you do, Word takes a few moments to run the script, leaving you
with a nicely formatted example of all of the fonts contained within
the System Folder.
? 2001 Element K Content LLC. All rights reserved. "
__________________
version of Microsoft Word 6.0 or later you're in luck. Just choose Tools > Macro > Visual Basic Editor and insert the following script:
Sub ListFonts()
'Speeds macro processing and suppresses display.
Application.ScreenUpdating = False
Documents.Add Template:="normal"
For Each aFont In PortraitFontNames
With Selection
.Font.Bold = True
.Font.Underline = True
.Font.Name = "times new roman"
.TypeText aFont
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
.Font.Bold = False
.Font.Underline = False
.Font.Name = aFont
.TypeText "abcdefghijklmnopqrstuvwxyz"
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
.TypeText "0123456789?$%&()[]*_-=+/<>"
.InsertParagraphAfter
.InsertParagraphAfter
.MoveDown unit:=wdParagraph, Count:=1, Extend:=wdMove
End With
Next aFont
Application.ScreenUpdating = True
End Sub
When you've finished, choose File > Close And Return To Microsoft Word.
Then choose Tools > Macro > Macros and run the script named FontSampler.
When you do, Word takes a few moments to run the script, leaving you
with a nicely formatted example of all of the fonts contained within
the System Folder.
? 2001 Element K Content LLC. All rights reserved. "
__________________