C
Curt
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
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