Book

Suggestions


Enter your email address:

Delivered by FeedBurner


Home Page

Bloglines

1906
CelebrateStadium
2006


OfficeZealot

Scobleizer

TechRepublic

AskWoody

SpyJournal












Subscribe here
Add to 

My Yahoo!
This page is powered by Blogger. Isn't yours?

Host your Web site with PureHost!


eXTReMe Tracker
  Web http://www.klippert.com



  Thursday, December 29, 2011 – Permalink –

Address Layout

Custom layout


When you use the Outlook as a source for addresses, you can customize the display to suit your own needs.

When you use the Insert Address button in the Envelopes and Labels dialog box it does not use the same format as the Insert Address button.

Here's the location to put the Address book on the Quick Access Toolbar in 2007-10:



Here's the work around:
Insert Address Button Does Not Use AddressLayout AutoText Entry

MacroButton; scroll down to Insert Address from Outlook.



Here are two sources with directions about how to reformat the AutoText entry: "AddressLayout".

Slipstick.com
Inserting Addresses into Microsoft Word Documents

Microsoft Knowlegebase:
HOW TO: Modify the Layout of an Address Book Entry




See all Topics

Labels: , , , , ,


<Doug Klippert@ 3:47 AM

Comments: Post a Comment


  Monday, December 26, 2011 – Permalink –

All Fonts

List maker



Here is a macro that will produce a list of all of the installed fonts.


  1. Open Word.
  2. Use Alt+F11 to open the Visual Basic editor.
  3. Choose Insert>Module from the Menu.
  4. Copy and Paste this code in the module.
  5. Return to Word and go to: Tools>Macro>Macros.
  6. Select and run "InstalledFonts".
Sub InstalledFonts()

Dim F As Integer
Dim InstalledFonts As Table

 'Open a fresh document

Set FreshDoc = Documents.Add

'Create a table and define the header

Set InstalledFonts = FreshDoc.Tables.Add(Selection.Range, FontNames.Count + 1, 2)
With InstalledFonts
.Borders.Enable = False
.Cell(1, 1).Range.Font.Name = "Arial"
.Cell(1, 1).Range.Font.Bold = 1
.Cell(1, 1).Range.InsertAfter "Font Name"
.Cell(1, 2).Range.Font.Bold = 1
.Cell(1, 2).Range.InsertAfter "Example"
End With

'Loop through all the fonts and add them to the table

For F = 1 To FontNames.Count
With InstalledFonts
.Cell(F + 1, 1).Range.Font.Name = "Arial"
.Cell(F + 1, 1).Range.Font.Size = 10
.Cell(F + 1, 1).Range.InsertAfter FontNames(F)
.Cell(F + 1, 2).Range.Font.Name = FontNames(F)
.Cell(F + 1, 2).Range.Font.Size = 10
.Cell(F + 1, 2).Range.InsertAfter "ABCDEFG abcdefg 1234567890 &$@"
End With
Next F
'Sort the names of the fonts

InstalledFonts.Sort SortOrder:=wdSortOrderAscending

End Sub

Also see a more sophisticated macro using Excel from Erlandsen Data Consulting: Display all installed fonts (Excel)



See all Topics

Labels: , , ,


<Doug Klippert@ 3:14 AM

Comments: Post a Comment


  Saturday, December 17, 2011 – Permalink –

Formatting/Layout Suggestions

Publisher/Word


From the Word MVPS.org site:
Typographical Tips from Microsoft Publisher

..."Word is ubiquitous. If you buy a new computer, chances are good that it will come with some version of Office or Works Suite (which includes Word) installed. Word is a powerful word processing program that incorporates many of the features of a page layout application, but there are times when a page layout or desktop publishing application is what is needed. If you are using the Small Business Edition of Office 97 or Office 2007-10, Professional, or Ultimate, you have such a program: Microsoft Publisher.

...even if you use only Word, Publisher can be useful to you. Because once upon a time, at least, it came with an excellent manual. The Microsoft Publisher 97 Companion is a 328-page book (compare this to the 19 pages devoted to Publisher in Discovering Microsoft Office 2000 Premium and Professional), and it contains much material that can be equally helpful to Word users.

For example, the chapter "The Look of Words" discusses what fonts are, how to choose them, and how to get the most from them. The following tips, guidelines, and rules of thumb are excerpted from that chapter [with some comments interspersed]. We have not attempted to reproduce all the illustrations that appear in the actual manual, but even the text alone is helpful."



See all Topics

Labels: , ,


<Doug Klippert@ 3:34 AM

Comments: Post a Comment