I'm using Access 2003 and Microsoft Graph Chart on a form.
I want to be able to print the graph and the information on the form.
The problem I'm having is that the Graph does not print any of the data points inside it. Here's the code I'm using:
I want to be able to print the graph and the information on the form.
The problem I'm having is that the Graph does not print any of the data points inside it. Here's the code I'm using:
Code:
Private Sub Print_Form_Click()
On Error GoTo Err_Print_Form_Click
DoCmd.SetWarnings False
Forms("Probability").Printer.Orientation = acPRORLandscape
DoCmd.PrintOut , 1, 1, acLow, 1, False
DoCmd.SetWarnings True
Exit_Print_Form_Click:
Exit Sub
Err_Print_Form_Click:
MsgBox Err.Description
Resume Exit_Print_Form_Click
End Sub