Launch Word template from within Access

  • Thread starter Thread starter Dean Slindee
  • Start date Start date
D

Dean Slindee

I can currently launch a blank Word document from my Access 2002 application
with:

Set wrdApp = New Word.Application

Set wrdDoc = wrdApp.Documents.Add

wrdApp.Visible = True

wrdApp.Activate

I would like to improve this process to launch Word with a specific
template, perhaps like:

Set wrdDoc = wrdApp.Documents.Add("W:\Clinical_Transcription\SIX MONTH
CRISIS PLAN.doc", , True)

But, the above statement still launches a blank new document.



Is there a way to launch a template in Word from within Access?



Thanks,

Dean Slindee
 
Back
Top