Stop a default 'print'

  • Thread starter Thread starter Neal C
  • Start date Start date
N

Neal C

I am using the DoCmd.OutputTo acOutputreport on a button on a form. Whe you
use the DoCmd command with a report the default is that it always wants to
print the report as well as doing the command.
Can I stop it printing?

Thanks Neal
 
The OutputTo command does just that - produces printed output. Instead,
use this:
DoCmd.OpenReport "myReport", acViewPreview
-TedMi
 
Back
Top