I tried the command and it works to print the form. I guess I should have specified that I am printing a report for the current record. This is the code for my other report that prints the current record only to the default printer.
I need to print the RptFaxCover to another printer for the current record only. I tried adding the acCmdPrint and could not get it to work. Any suggestions.
Thanks for your help
Private Sub PrtFaxCover_Click()
Me.Refresh
Dim strReportName As String
Dim strWhere As String
strReportName = "RptFaxCover"
strWhere = "[FAXID]=" & Me!FAXID
DoCmd.OpenReport strReportName, acNormal, , strWhere
End Sub