Integrate Report to FaxMachine

  • Thread starter Thread starter raymelgarcia
  • Start date Start date
R

raymelgarcia

Guest
Hi to all!!!

im creating a report using microsoft Access. is there a fuction that the report will send automatically via fax? Do access have that build in feature?
or do i need to download a third party software?? like winfax??

pls help me

thank you very much..

if you have an example of source code that have a function that interface with fax machine..please send me.
 
Integrate Report to Fax Machine

Try this code:

Function Name()
Dim clsSendObject As accSendObject
Set clsSendObject = New accSendObject
clsSendObject.SendObject acSendReport, "ReportName", accOutputRTF, "[FAX: RecipientName@ ##########]", , , "Report Name", , True
Set clsSendObject = Nothing
End Function
 

Users who are viewing this thread

Back
Top Bottom