RTI_SENDFAX (OpenInsight 32-bit Specific)
At 03 JUN 2010 02:42:55PM Terry Rainville wrote:
Has anyone gotten this to work and if so can you please post and example here.
I am looking this over and it says I need a faxserver software, ie Windows Fax which is suposed to be on XP - I dont see this anywhere in XP menus.
Plus I would like to see an example of coding the faxing of documents if possible.
At 04 JUN 2010 11:02AM Dave Harmacek wrote:
Start Control Panel
Add or Remove Programs
Click on the button Add/Remove Windows Components
see if there is a checkmark at Fax Services
Dave
At 07 JUN 2010 04:13PM Jared Bratu wrote:
Dave's suggestion is valid, in addition here is a code snippet to fax a word document. You must have Word installed for this to work. OpenOffice can also be used.
ReceiverName = "John Doe" Subject = "" Note = "" CoverPage = "" HostFile = "" ItemName = "C:\Revsoft\OInsight\test.doc" SenderName = "My Company" SenderEmail = "" SenderFax = "201-123-4567" ReceiverFax = "111-111-1111" FaxServer = "" SendFax_Status = "" Call RTI_SendFax(ReceiverFax, ReceiverName, Subject, Note, CoverPage, HostFile, ItemName, SenderName, SenderEmail, SenderFax, FaxServer, SendFax_Status)