Okay, I got it.
I'm noticing though that in the task pane, there are a lot of winword.exe
showing up in the processes, but not the applications. I've closed Word and
it doesn't show it as running on the bottom of my screen, but there were like
8 instances of winword.exe in the processes, each taking up a bunch of
memory. Does my code have a memory leak or something? Here's the final code
I use in Outlook, via a button on the standard menu that shows up when I open
a contact to view it's details. (my code copies their address, then it opens
this word template and, using AutoNew, some code in that template pastes
their address into a new envelope...
Sub Standard_Letter()
Dim Wd As Word.Application
Dim Doc As Word.Document
'Copy the Name/Address
Contact_Copy
'create a new word doc with the template
Set Wd = CreateObject("Word.Application")
Set Doc = Wd.Documents.Add("C:\Documents and Settings\My Name\Application
Data\Microsoft\Templates\Outlook Letters\Standard Envelope.dot")
Wd.Visible = True
End Sub
many thanks!