Word & WinFax Pro v10

P

philb101

A clients PC is running Word without any problem until I install WinFa
Pro, from that point when I try to open Word I get a window, "Microsof
Word for windows has encoutered a problem and needs to close etc". Whe
I remove WinFax all is ok again.
The User is running Office 2000 & Windows XP Home Edition
Thanks for any ideas or pointer
 
G

Graham Mayor

Remove the Winfax addin from the startup folder and use the following macro
to send faxes from Word.
Symantec's add-ins have been notable for their ability to screw up Word by
their very presence:

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

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

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

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