Print an ACCESS mdb report from visual basic frontend

  • Thread starter Thread starter Stanley
  • Start date Start date
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?
 
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 ...
 
Back
Top