Hey all,
I have a print button in a form that is programmed to print a report - but it prints in black and white.
I need the report printed in colour.
Here is the code:
Anyone know what the code is to have it colour?
Thanks,
Marky
I have a print button in a form that is programmed to print a report - but it prints in black and white.
I need the report printed in colour.
Here is the code:
Code:
Private Sub print_current_date_data_Click()
On Error GoTo Err_print_current_date_data_Click
Dim stDocName As String
stDocName = "ctu_list_current_month"
DoCmd.OpenReport stDocName, acNormal
Exit_print_current_date_data_Click:
Exit Sub
Anyone know what the code is to have it colour?
Thanks,
Marky