VBA for printing first page and in color

B

brian0110

how do i print write the code so that my command button prints the
report in color instead of greyscale? and also, only to print the first
page? thanks!

my code:

Private Sub Command8_Click()
On Error GoTo Err_Command8_Click

Dim stDocName As String

stDocName = "rptDetailedOustanding"
DoCmd.OpenReport stDocName, acNormal

Exit_Command8_Click:
Exit Sub

Err_Command8_Click:
MsgBox Err.Description
Resume Exit_Command8_Click

End Sub
 
Top