1. Question for Rob on bindw
- Posted by "Rev. Ferlin Scarborough" <ferlin at SANDW.NET> Jun 20, 2000
- 472 views
Robert, Thanks for all the latest efforts to improve euphoria. I have been doing some programming using win32lib and have discovered that bindw does not support long file names. Take for instance a program with the name of FirstInstance.exw, I have to type the bind command like this bindw -clear_routines FirstI~1 which results in FirstI~1.exe I then have to Rename the program to FirstInstance.exe. Is it possible that you could please add Long File Name Support to bindw to your list of things to do. Thanks In Advance. Ferlin
2. Re: Question for Rob on bindw
- Posted by wolfgang fritz <wolfritz at KING.IGS.NET> Jun 20, 2000
- 485 views
> doing some programming using win32lib and have discovered that bindw > does not support long file names. It's about time someone mentioned this little 'bug'. I don't know how many .exe's I've accidentally overwritten because of this silly 'shortcoming' ....Wolf
3. Re: Question for Rob on bindw
- Posted by Robert Craig <rds at ATTCANADA.NET> Jun 20, 2000
- 455 views
Rev. Ferlin Scarborough writes: > Is it possible that you could please add Long File Name Support > to bindw to your list of things to do. bindw.bat uses ex.exe (DOS32). It will open existing long file names for reading and writing, but will use 8.3 names on new files that you create. I intend to fix this in ex.exe. You could try changing bindw.bat to use exw.exe instead of ex.exe. I did a very quick test and it seems to work. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
4. Re: Question for Rob on bindw
- Posted by "Rev. Ferlin Scarborough" <ferlin at SANDW.NET> Jun 22, 2000
- 447 views
On Tue, 20 Jun 2000 13:22:54 -0400, Robert Craig <rds at ATTCANADA.NET> wrote: >You could try changing bindw.bat to use exw.exe instead of >ex.exe. I did a very quick test and it seems to work. > >Regards, > Rob Craig > Rapid Deployment Software > http://www.RapidEuphoria.com Thanks Rob, Works like a charm for me. Later, Ferlin.