Hi! my problem is that I would like to save a report called by:
dim objinfacc as Object
set objinfacc = GetObject(path)
with objinfacc.application
.docmd.openreport nombre,acviewPreview,,condicion
.docmd.maximize
end with
through these actions I can print the report, but I also want to save it in a Word document, just as I can make directly from access using tools, send to Word.
I don't want to give direct access to the database to users, that's the reason why I want to make it through the application
Thank you
dim objinfacc as Object
set objinfacc = GetObject(path)
with objinfacc.application
.docmd.openreport nombre,acviewPreview,,condicion
.docmd.maximize
end with
through these actions I can print the report, but I also want to save it in a Word document, just as I can make directly from access using tools, send to Word.
I don't want to give direct access to the database to users, that's the reason why I want to make it through the application
Thank you