Word Start

G

Guest

Whe opening Word, I get the folowing MS Visual Basic error msg: Compile error in hidden module WinFaxPrint&Merge. What is the "fix".
 
G

Graham Mayor

As Jay has indicated the Winfax add-in is the cause of this problem You
appear to have an old version of the add-in. Frankly it is not worth chasing
down a replacement. Use the following macro to send fax messages:

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

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

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