1. Re: EUPHORIA Digest - 18 Feb 1997 to 19 Feb 1997
- Posted by Ad Rienks <Ad_Rienks at COMPUSERVE.COM> Feb 20, 1997
- 1137 views
He Steve, >I tried it without the quotes. When I double click on the icon, the screen >goes blank for a couple seconds, then returns to Windows Explorer without >starting the program. It runs OK with the quotes, but doesn't repeat. >Steve Elder Come out of your WinDoze and run the program from DOS. I guess when the program does not execute, that there is something else wrong in your program too. For instance, you want to test 'while halt = 1 do', but did you initialize halt also with: halt = 1, without quotes? Otherwise, the while loop will never start and execution 'falls through'. Because 'end while' is your last statement, the program will consider it's job done and return doing nothing. Try running the program 'with trace' as the first statement and 'trace(1)' as the second. Hope this helps again! Ad.