Want to open letterhead.doc for user input then send to printer. Have the
following used for mail merge fine. Opens the doc then closes it Can someone
insert what I need so user may edit then print before close
Thanks Much
Private Sub optionbutton7_Click()
'Open Thank You Letter
OptionButton7.Value = False
Dim Word As New Word.Application
Dim WordDoc As New Word.Document
Word.Visible = True
Set WordDoc = Word.Documents.Open("C:\parade\Letterhead.doc")
With WordDoc
End With
Word.Application.Quit
Set Word = Nothing
End Sub
Curt was telling us:
Curt nous racontait que :
> Want to open letterhead.doc for user input then send to printer. Have
> the following used for mail merge fine. Opens the doc then closes it
[quoted text clipped - 15 lines]
> Set Word = Nothing
> End Sub
If you want a single Sub to do all this, you will need a userform to prompt
the user to type the various bits of text that re needed and then insert
these bits of text by code. This means that user formatting will be
difficult.
If you want the user to edit the document itself, the normal way; you will
need a second sub to do the printing and the closing.

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
Curt - 22 Aug 2007 01:54 GMT
Thank you for steering me in the right direction. It is greatly appreciated
Thanks Again
> Curt was telling us:
> Curt nous racontait que :
[quoted text clipped - 26 lines]
> If you want the user to edit the document itself, the normal way; you will
> need a second sub to do the printing and the closing.