1. bind error
- Posted by "Kat" <gertie at visionsix.com> Jul 26, 2004
- 611 views
I have tried running bindw and i get this error msg: You must have PDEXW.EXE in the euphoria\bin directory Naturally, it is there, and in the other /bin files i tried to run from. Bindw has worked before. Now what? Kat
2. Re: bind error
- Posted by Alexander Toresson <toressonodakra at swipnet.se> Jul 26, 2004
- 602 views
Maybve your EUDIR environment variable is messed up? Regards, Alexander Toresson Shhh! Be vewy quiet! I'm hunting wuntime ewwows!
3. Re: bind error
- Posted by "Kat" <gertie at visionsix.com> Jul 26, 2004
- 594 views
On 26 Jul 2004, at 5:09, Alexander Toresson wrote: > > > posted by: Alexander Toresson <toressonodakra at swipnet.se> > > Maybve your EUDIR environment variable is messed up? Actually, it is messed up, i commented it out. This mostly solved the problem of Eu locking up D:/ drive. I simply moved all the /bin dir to the application, and spelled out where the files are to include. Why wouldn't bindw look where the current dir is before checking for a /euphoria/bin dir? I even tried running it with current dir as D:/euphoria/bin , and it wouldn't run! Kat
4. Re: bind error
- Posted by "Mike Sabal" <Sabal.Mike at notations.com> Jul 26, 2004
- 679 views
> Actually, it is messed up, i commented it out. This mostly solved the > problem of Eu locking up D:/ drive. I simply moved all the /bin dir to the > application, and spelled out where the files are to include. Why wouldn't > bindw look where the current dir is before checking for a /euphoria/bin dir? I > even tried running it with current dir as D:/euphoria/bin , and it wouldn't run! > > Kat Have you tried setting the EUDIR variable on the command line just for that session? It would be released from memory when you exit that console.
5. Re: bind error
- Posted by "Wolf" <wolfritz at king.igs.net> Jul 26, 2004
- 589 views
Will adding a: SET EUDIR=blah SET PATH=%PATH%;blahblah_to _add_more_path... .. directly into bindw.bat not work? > Actually, it is messed up, i commented it out. This mostly solved the > problem of Eu locking up D:/ drive. I simply moved all the /bin dir to the
6. Re: bind error
- Posted by "Kat" <gertie at visionsix.com> Jul 26, 2004
- 589 views
On 26 Jul 2004, at 10:54, Wolf wrote: > > > Will adding a: > SET EUDIR=blah > SET PATH=%PATH%;blahblah_to _add_more_path... > .. directly into bindw.bat not work? Nope, i edited bindw.bat to be: SET EUDIR=U:\newsgetter\bin\ PATH="U:\newsgetter\Eu webgetter tcp4u\";U:\newsgetter\bin\ exw.exe bind.ex -w32 %1 %2 %3 %4 %5 %6 %7 %8 %9 and it still went looking for the PD version in a /euphoria/bin dir. And didn't run. Kat > > Actually, it is messed up, i commented it out. This mostly solved the > > problem of Eu locking up D:/ drive. I simply moved all the /bin dir to the > > > >
7. Re: bind error
- Posted by "Mike Sabal" <Sabal.Mike at notations.com> Jul 26, 2004
- 597 views
> SET EUDIR=U:\newsgetter\bin\ > PATH="U:\newsgetter\Eu webgetter tcp4u\";U:\newsgetter\bin\ > exw.exe bind.ex -w32 %1 %2 %3 %4 %5 %6 %7 %8 %9 > and it still went looking for the PD version in a /euphoria/bin dir. And didn't > run. > Kat Try setting EUDIR to U:\newsgetter\ without the bin\. I believe bind appends bin\ to EUDIR internally.
8. Re: bind error
- Posted by Bernard Ryan <xotron at bluefrog.com> Jul 26, 2004
- 609 views
Kat wrote: > PATH="U:\newsgetter\Eu webgetter tcp4u\";U:\newsgetter\bin\ ^ ^ Are you sure that using spaces in the path will work ? Bernie
9. Re: bind error
- Posted by "Kat" <gertie at visionsix.com> Jul 26, 2004
- 662 views
On 26 Jul 2004, at 14:46, Mike Sabal wrote: > > > > SET EUDIR=U:\newsgetter\bin\ > > PATH="U:\newsgetter\Eu webgetter tcp4u\";U:\newsgetter\bin\ > > exw.exe bind.ex -w32 %1 %2 %3 %4 %5 %6 %7 %8 %9 > > > and it still went looking for the PD version in a /euphoria/bin dir. > And didn't > > run. > > > Kat > > Try setting EUDIR to U:\newsgetter\ without the bin\. I believe bind > appends bin\ to EUDIR internally. That worked! All better now, thanks! Kat