The second is more of a blunt instrument
and can be used if the registry hack doesn't fix it for you.
Save this macro in a global template (one that's
stored in Word's Startup directory):
Sub
ToolsEnvelopesAndLabels()
Dim dlg As Dialog
Set dlg = Dialogs(wdDialogToolsEnvelopesAndLabels)
With dlg
.DefaultOrientation = wdLeftPortrait
.DefaultFaceUp = True
.Show
End
With
Set dlg = Nothing
End
Sub
When you use the Tools/Envelopes menu command,
this macro executes instead. It does not, however, pick up the address
information from the document automatically. You will have to select it
first. I also found that after using the macro for a while, Word would
remember the required settings and the macro could be abandoned without
losing the required functionality.