faxing a report 2nd request.

  • Thread starter Thread starter Guest
  • Start date Start date
I have a form that faxes an order. I have set the printer default for the
form to fax But I have to manually enter the fax number. Is there a way to
send using my [Fax] field?

I have found one help on MS, but it was for mass faxing. I want to use the
shipperID to automatically enter the fax number and send it. I have not been
able to figure it out.
thank you
Michael



Private Sub Command29_Click()
On Error GoTo Err_Command29_Click

Dim stDocName As String

stDocName = "Purchase Order"
DoCmd.OpenReport stDocName, acNormal

Exit_Command29_Click:
Exit Sub

Err_Command29_Click:
MsgBox Err.Description
Resume Exit_Command29_Click

End Sub
 
Back
Top