-=> Quoting Raymond Pesek to Hans Blum <=-
RP> The only thing I can tell you is this has been reported numerous times
RP> on the CompuServe CA-CLIPPER forum and it seems no one has found the
RP> answer.
Dear Raymond,
Try this:
Change Errorsys.prg in the following manner:
* In DefError(..) Find:
// for network open error, set NETERR() and subsystem default
if ( e:genCode == EG_OPEN .and. e:osCode == 32 .and. e:canDefault )
NetErr(.t.)
return (.f.) // NOTE
end
* And insert after it:
// 5.3a Temp patch:
// for network open error, set NETERR() and subsystem default
if ( e:genCode == EG_OPEN .and. e:osCode == 5 .and. e:canDefault )
NetErr(.t.)
return (.f.) // NOTE
end
It works! It is a solution which was proposed soon after this problem
arouse for the first time.
Cheers!
Robert
The Netherlands
--- Blue Wave v2.12 [NR]
---------------
* Origin: HEKOM Holland. Clipper and CDGN Headquarters. (2:2802/223)
|