1. running a program
- Posted by larry shieffelbien <lazzer at ES.CO.NZ> Feb 25, 1999
- 408 views
hi there i am a complete beginner at euphoria and i have downloaded, unzipped,and installed euphoria but no matter how much i read i cant get a demo to run .in simple terms how do i run a demo am i surposed to enter the file via the bin folders ex or exw file ?? i need it explained simply just to get me started and then i can take over for my self from there thanks
2. Re: running a program
- Posted by JJProg at CYBERBURY.NET Feb 25, 1999
- 401 views
EU>hi there i am a complete beginner at euphoria and i have downloaded, EU>unzipped,and installed euphoria but no matter how much i read i cant get a EU>demo to run .in simple terms how do i run a demo am i surposed to enter the EU>file via the bin folders ex or exw file ?? i need it explained simply just EU>to get me started and then i can take over for my self from there thanks exw is for windows, ex is for dos. generally, use ex to run .ex files, and .exw to run .exw files. Jeffrey Fielding JJProg at cyberbury.net http://members.tripod.com/~JJProg/
3. Re: running a program
- Posted by Bernie Ryan <bwryan at PCOM.NET> Feb 25, 1999
- 412 views
1 : You will see that there some files that end with somefilename.e Some programs need these to run and they must be located either in your current directory or the Euphoria include directory You will get an error when you run a program if any of these somefilename.e are missing. 2 : Next you must have a line in your autoexec.bat that tells your computer where to locate your Euphoria where to find your Euphoria bin and include files are. The line should say the following : set eudir=c:\euphoria\ 3 : Now to run any program. ( all DOS programs end with .ex ) Only these will run ( all WINDOWS programs end with .exw ) TYPE: ex anydosprogramname.ex exw anywindowsprogamname.exw Bernie
4. Re: running a program
- Posted by MilesDaniel <handmade at CITILINK.COM> Feb 25, 1999
- 405 views
I had the same problem trying to run the demo programs and realised that you must re-start your computer so that the autoexec.bat file is run. This will set path for the directory that euphoria is in. MilesDaniel At 02:06 PM 2/25/99 -0500, you wrote: >1 : > >You will see that there some files that end with somefilename.e >Some programs need these to run and they must be located >either in your current directory or the Euphoria include directory >You will get an error when you run a program if any of these somefilename.e >are missing. > >2 : > >Next you must have a line in your autoexec.bat that tells your computer >where to locate your Euphoria where to find your Euphoria bin and include >files are. The line should say the following : > >set eudir=c:\euphoria\ > >3 : > >Now to run any program. ( all DOS programs end with .ex ) >Only these will run ( all WINDOWS programs end with .exw ) > >TYPE: > > ex anydosprogramname.ex > exw anywindowsprogamname.exw > > >Bernie > >