Re: Bound program doesn't execute
- Posted by DerekParnell (admin) Feb 09, 2010
- 1214 views
FredRansom said...
I'm running Version 4.0.0 beta 2 (r2670) for Windows on Vista Home. This little test program works fine if interpreted with euiw, but the bound version fails to execute. What am I doing wrong and how do I do it right?
bindw.bat: @echo off euiw %EUDIR%\source\bind.ex %1 %2 %3 %4 %5 %6 %7 %8 %9 Error file: C:\euphoria_4b\IDE.exe\Temp_2.exw:1 A machine-level exception occurred during execution of this statement Global & Local Variables
I think you are using an older method of binding code. I used this ...
bind -w32 Temp2.exw
and got this result ...
c:\temp>bind -w32 Temp2 deleted 487 unused routines and 5807 unused variables. You may now run Temp2.exe Press Enter c:\temp>Temp2
which gave me the window with a single button "PushButton2", so I clicked the button and got the message box "Cow condition" with the message "How now, brown cow?".
It works fine for me.
I'm using Windows XP SP3 but I don't think that matters.