Printing Graphs

  • Thread starter Thread starter Antonio
  • Start date Start date
A

Antonio

Hello, all...I am trying to print graphs, but instead it
prints the form...but I only want to print the graph.
Anybody has a coding suggestion? Thanks
 
Hello, all...I am trying to print graphs, but instead it
prints the form...but I only want to print the graph.
Anybody has a coding suggestion? Thanks

Open the form in design view.
Select the Graph object.
Copy it.

Create a new unbound report.
Paste the graph into the report. The report header will be fine.
Run the report.

If you need to print the report from the form, add a command button to
the form.
Code it's Click event:
DoCmd.OpenReport "ReportName"
 
Back
Top