Default to Single Label

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I print a label from Word most of the time it is a single label. Is
there a way to set the default to Single Label and then just select the row
and column each time rather than the default being Full Page of the Same
Label?

Thank you.
 
Leave the address box blank and click the New Document button. Save
the resulting document as a template, giving it a name that identifies
the label stock.

When you want a new label, use the File > New dialog and choose that
template. Make sure the nonprinting table gridlines are turned on
(Table > Show Gridlines), and type the address into whatever label you
want.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
 
While Jay's method may be the most sensible way of handling this, it is
possible to default the envelope/label tool to opening in label mode with
single label selected. Though I guarantee that you will find that equally
irriatting longer term. If you wish to proceed, then add the following macro
to normal.dot

Sub ToolsEnvelopesAndLabels()
SendKeys "%{L}%{N}%{A}"
Dialogs(wdDialogToolsEnvelopesAndLabels).Show
End Sub

or you could rename the macro to (say) SingleLabel) and add a second button
button to your toolbar to call the macro.

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top