View Single Post
  #4   Report Post  
Posted to microsoft.public.word.pagelayout
Michael52 Michael52 is offline
external usenet poster
 
Posts: 3
Default Change default alignment printing to Centered for labels?



"Graham Mayor" wrote:

The following macro will intercept the Word label wizard and apply the
centred formatting. If you want to use this only occasionally you should
change the macro name and adde it to a toolbar button.

Sub ToolsEnvelopesAndLabels()
With ActiveDocument.Styles("Normal").ParagraphFormat
.Alignment = wdAlignParagraphCenter
End With
With ActiveDocument.Styles("Normal")
.AutomaticallyUpdate = False
End With
Dialogs(wdDialogToolsEnvelopesAndLabels).Show
End Sub

http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Graham Mayor wrote:
Tables use normal paragraph style for alignment.
Open a document.
Change the normal paragraph style FOR THAT DOCUMENT to centred
Use the label wizard
Print your labels


Michael52 wrote:
"Michael52" wrote:

Is there any way to change the default for label printing to
centered from left aligned so I don't have to keep manually changing
this item every time I want to print a label?

Your answer would apply for a document, not for labels that are
selected from the envelope/label option. Any other suggestions?



Excellent - Thank You!