hello all-

I have the following code to open a word template in the app.path directory....

VB Code:
  1. Dim appWord As Object
  2. Dim strDoc As String
  3.     strDoc = " & app.path & Labels1.dot"
  4.     Set appWord = CreateObject("Word.Application")
  5.     appWord.Documents.Open strDoc
  6.     appWord.Visible = True

I get an error message that it cant find the document????

did I code this correctly? Thanks for all your help in advanced!!!