E
eSQueL
Automation with Access (client) and Word (server).
I have the following code:
Dim docApp As Object
Dim docDoc As Object, str as string
Set docApp = CreateObject("Word.application")
Set docDoc = docApp.Documents
str = "wdPrintDocumentContent"
docApp.Application.PrintOut Item:=str
that does not work. Where is the mistake?
tnx
eSQueL
I have the following code:
Dim docApp As Object
Dim docDoc As Object, str as string
Set docApp = CreateObject("Word.application")
Set docDoc = docApp.Documents
str = "wdPrintDocumentContent"
docApp.Application.PrintOut Item:=str
that does not work. Where is the mistake?
tnx
eSQueL