Faxing from XP

  • Thread starter Thread starter John McGanty
  • Start date Start date
J

John McGanty

Does anyone know if there's a way to send a fax of a Word
document with XP? Thanks for any help on this!

-- John
 
Microsoft Fax (and most third party fax applications) add a fax driver to
the available printers. Simply print to the fax driver.
The following macro makes this a one click operation

Sub FaxPrint()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter
ActivePrinter = "Fax"
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter
End Sub

See http://www.gmayor.com/installing_macro.htm

You do, however, have to install the fax software first!

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
Back
Top