Can anyone fill in the specifics for Winfax in the code from a previous thread?
oFaxObject=CreateObject('MyFaxSoftware.MyFaxObject')
SET PRINTER TO NAME 'MyFaxPrinter Name'
REPORT FORM MyReport TO PRINTER
REPORT FORM MyReport2 TO PRINTER
oFaxObject.FaxNumber='5555555'
oFaxObject.Send
Do I need to do anything else but add this code to my program in order to send faxes?
I am replacing DOS FoxPro 2.6 code run from a .bat file that sent faxes via DataFax software to our vendors overnight. We have over 700 vendors and store the fax numbers in our vendor table. I can re-use most of the code to create the documents, and hopefully just change the section that would send each doc to the queue.
I'm in urgent need of this info, since the Novel server housing the DataFax is migrating to NT within a few weeks.
If I start the WinFax controller and set the printer to 'WinFax" I can do the 'report form abcd to printer' and it gets sent to Winfax, but I still have to manually enter the phone number. I need to be able to send the fax programmatically using the phone numbers retrieved by the code.
oFaxObject=CreateObject('MyFaxSoftware.MyFaxObject')
SET PRINTER TO NAME 'MyFaxPrinter Name'
REPORT FORM MyReport TO PRINTER
REPORT FORM MyReport2 TO PRINTER
oFaxObject.FaxNumber='5555555'
oFaxObject.Send
Do I need to do anything else but add this code to my program in order to send faxes?
I am replacing DOS FoxPro 2.6 code run from a .bat file that sent faxes via DataFax software to our vendors overnight. We have over 700 vendors and store the fax numbers in our vendor table. I can re-use most of the code to create the documents, and hopefully just change the section that would send each doc to the queue.
I'm in urgent need of this info, since the Novel server housing the DataFax is migrating to NT within a few weeks.
If I start the WinFax controller and set the printer to 'WinFax" I can do the 'report form abcd to printer' and it gets sent to Winfax, but I still have to manually enter the phone number. I need to be able to send the fax programmatically using the phone numbers retrieved by the code.