Print an ACCESS mdb report from visual basic frontend

S

Stanley

I would like to print an ACCESS mdb report from the visual basic frontend (
not from inside ACCESS). Is there a way to do this?
 
G

Graham Mandeno

Hi Stanley

No, you can't do this except from 'inside' Access.

However, you can get inside Access with COM automation. For example:

Set AcApp = CreateObject("Access.Application")
AccApp.OpenCurrentDatabase .....
AccApp.DoCmd.OpenReport ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top