Change default alignment printing to Centered for labels?

M

Michael52

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?
 
D

Doug Robbins - Word MVP

Click on the New Document Button and then format it the way you want and
save that document as a template. Then use File>New and select it when you
want to use it.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
M

Michael52

Michael52 said:
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?
 
M

Michael52

Doug Robbins - Word MVP said:
Click on the New Document Button and then format it the way you want and
save that document as a template. Then use File>New and select it when you
want to use it.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP




Your answer would apply for a document, but not for selecting the option for print envelopes & labels. Any other suggestions?
 
G

Graham Mayor

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Graham Mayor

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
M

Michael52

Graham Mayor said:
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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>




Excellent - Thank You!
 
Top