1. opening a dll causing keyboard unresponsiveness
- Posted by Chris Burch <chriscrylex at aol.com> Sep 19, 2006
- 517 views
- Last edited Sep 20, 2006
Hi I'm trying to open a dll, but after opening it, the keyboard becomes un responive - ie when the program finishes, it says press enter.... , but there is no keyboard response in this window. I have to close the window with the 'x', then use th unresponsive/end now window. The action of opening the dll causes this, as it occurs if you put an abort directly after the open_dll. It does not occur with other dlls. Could the dll be corrupt in some way? An exe c program works fine using it. Chris http://euallegro.wikispaces.com http://members.aol.com/chriscrylex/euphoria.htm http://uboard.proboards32.com/ http://members.aol.com/chriscrylex/EUSQLite/eusql.html
2. Re: opening a dll causing keyboard unresponsiveness
- Posted by jacques deschênes <desja at globetrotter.net> Sep 19, 2006
- 491 views
- Last edited Sep 20, 2006
Hi Chris, When a dll is loaded its initialisation routine is called. So if your application become non responsive, its propably because the dll initialisation routine never return for a reason or another. If the dll comes from a commercial product and it works with other program, It is improbable that the problem comes from the dll itself. Maybe the initialisation routine of the dll do some check about the process loading it and when it comes to euphoria interpreter this check fail. regards, jacques Deschênes Chris Burch wrote: > > Hi > > I'm trying to open a dll, but after opening it, the keyboard becomes un > responive > - ie when the program finishes, it says press enter.... , but there is no > keyboard > response in this window. I have to close the window with the 'x', then use th > unresponsive/end now window. > > The action of opening the dll causes this, as it occurs if you put an abort > directly after the open_dll. It does not occur with other dlls. > > Could the dll be corrupt in some way? An exe c program works fine using it. > > Chris > > > <a href="http://euallegro.wikispaces.com">http://euallegro.wikispaces.com</a> > <a > href="http://members.aol.com/chriscrylex/euphoria.htm">http://members.aol.com/chriscrylex/euphoria.htm</a> > <a href="http://uboard.proboards32.com/">http://uboard.proboards32.com/</a> > <a > href="http://members.aol.com/chriscrylex/EUSQLite/eusql.html">http://members.aol.com/chriscrylex/EUSQLite/eusql.html</a>
3. Re: opening a dll causing keyboard unresponsiveness
- Posted by Chris Burch <chriscrylex at aol.com> Sep 19, 2006
- 524 views
- Last edited Sep 20, 2006
jacques deschênes wrote: > > Hi Chris, > When a dll is loaded its initialisation routine is called. So if your > application > become non responsive, its propably because the dll initialisation routine > never return for a reason or another. > If the dll comes from a commercial product and it works with other program, > It is improbable that the problem comes from the dll itself. > Maybe the initialisation routine of the dll do some check about the process > loading it and when it comes to euphoria interpreter this check fail. > > regards, > jacques Deschênes > > Chris Burch wrote: > > > > Hi > > > > I'm trying to open a dll, but after opening it, the keyboard becomes un > > responive > > - ie when the program finishes, it says press enter.... , but there is no > > keyboard > > response in this window. I have to close the window with the 'x', then use > > th > > unresponsive/end now window. > > > > The action of opening the dll causes this, as it occurs if you put an abort > > directly after the open_dll. It does not occur with other dlls. > > > > Could the dll be corrupt in some way? An exe c program works fine using it. > > > > Chris Hi Hm, that would be disappointing, its the SEAL audio library I'm trying to wrap. Oh well. Thanks Chris http://euallegro.wikispaces.com http://members.aol.com/chriscrylex/euphoria.htm http://uboard.proboards32.com/ http://members.aol.com/chriscrylex/EUSQLite/eusql.html
4. Re: opening a dll causing keyboard unresponsiveness
- Posted by Al Getz <Xaxo at aol.com> Sep 19, 2006
- 531 views
- Last edited Sep 20, 2006
Chris Burch wrote: > > Hi > > I'm trying to open a dll, but after opening it, the keyboard becomes un > responive > - ie when the program finishes, it says press enter.... , but there is no > keyboard > response in this window. I have to close the window with the 'x', then use th > unresponsive/end now window. > > The action of opening the dll causes this, as it occurs if you put an abort > directly after the open_dll. It does not occur with other dlls. > > Could the dll be corrupt in some way? An exe c program works fine using it. > > Chris > > > <a href="http://euallegro.wikispaces.com">http://euallegro.wikispaces.com</a> > <a > href="http://members.aol.com/chriscrylex/euphoria.htm">http://members.aol.com/chriscrylex/euphoria.htm</a> > <a href="http://uboard.proboards32.com/">http://uboard.proboards32.com/</a> > <a > href="http://members.aol.com/chriscrylex/EUSQLite/eusql.html">http://members.aol.com/chriscrylex/EUSQLite/eusql.html</a> Hi there Chris, Try this: use exwc instead of exw if that's what you are using. Take care, Al E boa sorte com sua programacao Euphoria! My bumper sticker: "I brake for LED's" From "Black Knight": "I can live with losing the good fight, but i can not live without fighting it". "Well on second thought, maybe not."
5. Re: opening a dll causing keyboard unresponsiveness
- Posted by Chris Burch <chriscrylex at aol.com> Sep 20, 2006
- 534 views
Al Getz wrote: > > Chris Burch wrote: > > > > Hi > > > > I'm trying to open a dll, but after opening it, the keyboard becomes un > > responive > > - ie when the program finishes, it says press enter.... , but there is no > > keyboard > > response in this window. I have to close the window with the 'x', then use > > th > > unresponsive/end now window. > > > > The action of opening the dll causes this, as it occurs if you put an abort > > directly after the open_dll. It does not occur with other dlls. > > > > Could the dll be corrupt in some way? An exe c program works fine using it. > > > > Chris > > > > > > <a > > href="http://euallegro.wikispaces.com">http://euallegro.wikispaces.com</a> > > <a > > href="http://members.aol.com/chriscrylex/euphoria.htm">http://members.aol.com/chriscrylex/euphoria.htm</a> > > <a href="http://uboard.proboards32.com/">http://uboard.proboards32.com/</a> > > <a > > href="http://members.aol.com/chriscrylex/EUSQLite/eusql.html">http://members.aol.com/chriscrylex/EUSQLite/eusql.html</a> > > > Hi there Chris, > > Try this: use exwc instead of exw if that's what you are > using. > > > Al > > E boa sorte com sua programacao Euphoria! > > > My bumper sticker: "I brake for LED's" > Hi Nope, same result. Chris http://euallegro.wikispaces.com http://members.aol.com/chriscrylex/euphoria.htm http://uboard.proboards32.com/ http://members.aol.com/chriscrylex/EUSQLite/eusql.html