Complie Error

  • Thread starter Thread starter Robert
  • Start date Start date
R

Robert

When I start Word 2003, I get an error that reads "Comple
error in hidden module. Winfax Print and merge". Does
anyone know what this means and how to fix it? Thanks.
 
It means that the WinFax add-in in Word's (or the Office) Startup folder
does not work with Word 2003. Try moving it to another location, or see
Symantec's Web site for an updated version.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
The addin for Winfax is causing an error, presumably because it is for an
earlier Word version. You don't need this add-in to fax from Word, so remove
it from the startup folder - and use the following macro to fax from Word:

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
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