Looking for a conversion program

  • Thread starter Thread starter Jim Shaw
  • Start date Start date
J

Jim Shaw

I want to take a word file fax.doc and convert it to use
in Fax Console that comes with XP.

I will take any suggestions short of trying to build the
file in that nasty little Fax Cover Page Editor.

Thanks
 
Not sure what you are looking for here.
You can print to the Fax driver *any* Word document. The cover editor
doesn't have to enter into it.
You can add a macro to do the job if you wish:

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
Back
Top