There are no built-in interfaces to use faxing with Outlook. You would need
to use TAPI or whatever interfaces that fax software supports to pass the
fax information to the software.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"MUSIWA" wrote in message
...
I am sure this has been done but help any way I have this
Set OutProg = CreateObject("outlook.application") 'open out look
Set OutM = OutProg.CreateItem(olMailItem) ' create a mail
With OutM 'send the fax
.subject = "I am trying"
.To = "@blah Blah"
.body = "This is the latest information on these most due
patients"
.Importance = Outlook.OlImportance.olImportanceNormal
.Display
.Send
End With
This works fine
Can I write the same thing for faxing instead instead of the outlook email
I have vista Ultimate with a LAN-Fax which works.
Thanks in advance and if there is a better way to fix it so it works even
better will be appreciated