View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Default to Single Label

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
Word MVP web site http://word.mvps.org


QuadSquad wrote:
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.