Graham
Sat Oct 01 00:31:02 CDT 2005
The original replies were not reproduced, but the simplest method of having
access to envelopes from the desktop is to drop a shortcut to an envelope
template there. There are sample templates for download from my web site
that would do the job.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site
http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Peter wrote:
> Try this:
>
> Create a macro and add the following code:
>
> - Dialogs(wdDialogToolsEnvelopesAndLabels).Show
> - Add the macro to a toolbar or create your own
> - Click the button on the toolbar to open the dialog box
>
> This won't get an icon to automatically load the function, but at
> least you don't have to go all the way through the tool menu to get
> to it. I was using Word 2003. Hope this helps.
>
>
> "DBishop" wrote:
>
>> I want to create a desktop icon that will open word and
>> automatically open the the "Tools | Letters and Mailings",
>> "Envelopes and Labels" window.
>>
>> I have recorded a macro that opens this window, but the window is
>> modal so the macro cannot be terminated until the window is closed
>> and the code behind the macro uses ActiveDocument.Envelope.Insert
>> with the proper arguments to insert the envelope.
>>
>> I have also tried to use Sendkeys in the macro to send the [Alt] +
>> "T" (Tools), [Alt] + "e" (Letters and Mailings), [Alt] + "E"
>> (Envelopes and Labels) {Sendkeys "%(TeE)"} but when I run it, the
>> current time gets inserted into the document.
>>
>> Any ideas?