Fax programing

M

MUSIWA

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
 
K

Ken Slovak - [MVP - Outlook]

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.
 
J

JP

At my last job, we had RightFax integrated with Outlook. If you sent
an email to a fax number (stored as a Business Fax number in an
Outlook contact), it send the email as a fax. Any attachments you send
in the email were printed out at the other end.

HTH,
JP
 
M

MUSIWA

The problem JP is that 2007 outlook lost that capability and that is where I
have a problem. I was hoping that the scan and fax interface was replacing
that capability but I donot know how to intaract with thru VBA
 
J

JP

Sorry, wish I could be more help here.

--JP

The problem JP is that 2007 outlook lost that capability and that is where I
have a problem. I was hoping that the scan and fax interface was replacing
that capability but I donot know how to intaract with thru VBA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top