JeffreyDavid
Registered User.
- Local time
- Today, 01:44
- Joined
- Dec 23, 2003
- Messages
- 63

On Error GoTo Err_PrintInvoice_Click
Dim strDocName As String
strDocName = "NcrPrintOut"
' Print NCR report, using NcrPrintOut Filter query to print
' invoice for current order.
DoCmd.OpenReport strDocName, acViewNormal, "NcrPrintOutQuery"
MsgBox "Your NCR #" & Me.NcrNo & " has been sent to the printer", vbOKOnly
DoCmd.Close
The only problem is that is goes right to the printer. Is there anyway I can get the report to open in print preview mode? I need the option of selecting a different printer depending on the status of the job the report is for.