Option Group print previw

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have form with an Option Group I have in Actions Openform but this prints
the form.
I need when a button is selected for a report to open in print preview but
that option is not in the dropdown list right now. I am using A97 is there a
way I can do this?

Octet
 
The OpenForm Action does not print the form. The default for OpenReport does
print the report.. If you are using a macro, just change the View from Print
to Print Preview. If using code, try:

DoCmd.OpenReport "ReportName", acViewPreview
 
Back
Top