I have tried many different ways to open an existing document via Access, for example...
Dim wordApp As Word.Application
Dim wordDoc As Word.Document
Set wordApp = CreateObject("Word.Application"
Set wordDoc = wordApp.Documents.Open(FileName:=docName)
...from Microsoft help, where docName is a string path file name. I always get error Run-time error '5174', this file could not be found. The very name of the file is displayed as not found, but it is really there. This is all local on my C:\ drive. My only hunch is that FileName happends to be a name of a database column, leaving out "FileName:=" does not help. I can't use the contents of db's FILENAME because it tells me it's not a string. Sure looks like a string filename to me...
Do I need to change the db column name? I have no idea why early or late binding or anything I try to open an existing file gives me the exact name of the file and "file not found."
Dim wordApp As Word.Application
Dim wordDoc As Word.Document
Set wordApp = CreateObject("Word.Application"
Set wordDoc = wordApp.Documents.Open(FileName:=docName)
...from Microsoft help, where docName is a string path file name. I always get error Run-time error '5174', this file could not be found. The very name of the file is displayed as not found, but it is really there. This is all local on my C:\ drive. My only hunch is that FileName happends to be a name of a database column, leaving out "FileName:=" does not help. I can't use the contents of db's FILENAME because it tells me it's not a string. Sure looks like a string filename to me...
Do I need to change the db column name? I have no idea why early or late binding or anything I try to open an existing file gives me the exact name of the file and "file not found."