G Guest Sep 21, 2005 #1 I can create an event procedure in Access to open a specific Word Document, but unable to open a specific Word Template. Any ideas?
I can create an event procedure in Access to open a specific Word Document, but unable to open a specific Word Template. Any ideas?
G Guest Sep 21, 2005 #2 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
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