Hallo there,
I installed w2hfax today on win2000 with the newest
python (2.2.1) and found some problems, which I could
solve without a lot of knowledge:
- in hfaxlib.py all *.connect(host,port) have to be to
replaced by *.connect((host,port)). This is - if I
understood correctly - due to an implementation lack
in python < 2.0
- the w2hfax-client has problems talking to the
hfaxlib.py. At two places internal variables are
cleard through a call to a libary-function. Necessary
edits:
-- in frmMainApp.frm in Private Sub MnuEdit_Click()
the line: Call faxsession.retrfile("recvq/" &
docname, tifname)
must be: Call faxsession.retrfile("recvq/" &
docname, (tifname))
-- in mainmod.bas in Public Sub Main()
the line: Call faxsession.setdebuginfo(CInt
(debuglevel), logfile)
must be: Call faxsession.setdebuginfo(CInt
(debuglevel), (logfile))
Now it works for me!
Happy patching
Martin
Logged In: YES
user_id=406376
So why won't you produce a 1.09/1.08a version?