FAX with Excel VBA

O

Otto Moehrbach

Excel XP, Win XP
Win XP has a built-in FAX capability so the user can send a FAX from his
computer. That's what I have. But I need to program in Excel VBA the task
of sending a range by FAX.
The following is a macro recorder recording when a FAX is sent manually
through Win XP. Obviously it needs work because, for one thing, the input
of the FAX number is not recorded. In my case, the range to send as well as
the FAX number are variables:
Sub Fax()
Application.ActivePrinter = "Fax on Ne04:"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Preview:=True, _
ActivePrinter:="Fax on Ne04:"
End Sub

Can anyone offer me some guidance with this or direct me to some sources of
information? Thanks for your time. Otto
 
O

Otto Moehrbach

Mike
Thanks for your response. Ron's site doesn't have anything about
FAXing. It does have a lot about emailing. Do you have any other advice I
could use? Otto
 

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