Output Chart to picture format?

  • Thread starter Thread starter Ashley
  • Start date Start date
Ashley:

There are a few printer drivers out there that would allow you to output
your report to image formats, most common is the TIFF format although others
exist. Do a google search on this issue. You could also print to a PDF and
with Adobe Acrobat convert the resulting output to a GIF or JPEG.
 
Private Sub cmdExport_Click()
On Error GoTo Err_cmdExport_Click


Me.Graph0.Object.Export "C:\graph.jpg"


Exit_cmdExport_Click:
Exit Sub

Err_cmdExport_Click:
MsgBox Err.Description
Resume Exit_cmdExport_Click

End Sub

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Back
Top