How do I open a Word Template from Access database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can create an event procedure in Access to open a specific Word Document,
but unable to open a specific Word Template. Any ideas?
 
Have you try this code to open a template

Function Open_WordDoc()

Dim objWord As Word.Application
Dim objDoc As Word.Document
Dim DocPath As String

DocPath = "Path and name of the document"

Set objWord = New Word.Application
Set objDoc = objWord.Documents.Open(DocPath)

objDoc.Activate
objDoc.PrintOut ' To print out
objWord.Visible = True ' To display

End Function
 
Back
Top