Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now
Free Printable Forms

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

Newest Tips

Printing On Both Sides of the Paper

Turning Off AutoComplete for Dates

Ordering Search and Replace

Understanding Auto Line Spacing

Adding Comments to Your Document

Conditional Calculations in Word

Determining Word Frequency

 

Printing a Font List with WordBasic

Summary: Want a sample list of all the fonts on your system? Here's a WordBasic macro that will do the trick. (This tip works with Microsoft Word 6, and Word 95.)

In older versions of Word, there used to be a feature that allowed you to quickly print a list of fonts on your system. Unfortunately, that is no longer the case. The following WordBasic macro, however, will create a document that contains a complete font list, in sorted order.

Sub MAIN
FileNewDefault
Font "Arial", 10
FormatTabs .Position = "2 in", .Align = 0, .Set
FormatFont .Bold = 1, .Underline = 1
Insert "Font Name"
Insert Chr$(9)
Insert "Font Example"
FormatFont .Bold = 0, .Underline = 0
InsertPara
For J = 1 To CountFonts()
   Insert Font$(J)
   Insert Chr$(9)
   Font Font$(J), 10
   Insert "ABCDEFG abcdefg 1234567890"
   Font "Arial", 10
   InsertPara
Next J
StartOfDocument 1
LineDown 1, 1
TableSort .DontSortHdr = 0, .FieldNum = "Paragraphs", _
   .Type = 0, .Order = 0, .FieldNum2 = "", .Type2 = 0, _
    .Order2 = 0, .FieldNum3 = "", .Type3 = 0, .Order3 = 0, _
	.Separator = 0, .SortColumn = 0, .CaseSensitive = 0
LineUp 1
End Sub

Once the macro is through running, you will have a complete font list for your system. You can then print it out and keep it handy when you are working with Word.

Tip #404 applies to Microsoft Word versions: 6 | 95

Create Rock-Solid Lists! Bulleted and numbered lists can help make your writing clearer and easier to follow. If not done properly, however, they can be a nightmare to work with. Discover the ins and outs of Word's lists with this great reference available in two versions.
 
Check out Word Bullets and Numbering today!