1. RE: Win32lib BUG
- Posted by Ron Austin <ronaustin at alltel.net> Dec 17, 2003
- 475 views
The only thing I changed (per Euman's instructions) was if not sequence(pId) then I only changed the one line, and now it works. Elliott S. de Andrade wrote: > > > That would be > pId = {pId} > and not > id = {id} > on the next line too, then? > > >From: Derek Parnell <ddparnell at bigpond.com> > >Reply-To: EUforum at topica.com > >To: EUforum at topica.com > >Subject: Re: Win32lib BUG > >Date: Wed, 17 Dec 2003 08:14:59 +1100 > > > >Thanks. > > > >----- Original Message ----- > >From: "Euman" <euman at bellsouth.net> > >To: <EUforum at topica.com> > >Sent: Wednesday, December 17, 2003 7:05 AM > >Subject: Win32lib BUG > > > > > > > Win32lib line: 24629 > > > > > > global procedure setWinMsgHandler(object pId, object pMsg, integer > >pRoutine) > > > integer lPosn > > > integer id > > > atom lMsg > > > > > > -- BUG! > > > > > > if not sequence(id) then > > > > > > -- should be > > > > > > if not sequence(pId) then > > > > > > Regards, > > > Euman > > >
2. RE: Win32lib BUG
- Posted by "Elliott S. de Andrade" <quantum_analyst at hotmail.com> Dec 18, 2003
- 466 views
>From: Ron Austin <ronaustin at alltel.net> > >The only thing I changed (per Euman's instructions) was >if not sequence(pId) then > That would not work though, since id is an integer, and trying to assign it a sequence wouldn't work. And, it wouldn't help that you're using it and haven't assigned anything to it before. >I only changed the one line, and now it works. > >Elliott S. de Andrade wrote: > > > > > > That would be > > pId = {pId} > > and not > > id = {id} > > on the next line too, then? >