Page 1 of 1

CTRL+ALT+DELETE in qbasic

Posted: Thu Aug 11, 2005 5:57 pm
by renjo
is it possible to use CTRL+ALT+DELETE in qbasic?? without enter in windows?

example:

Code: Select all

For exit, push CTRL+ALT+DELETE...
i push CTRL+ALT+DELETE

Code: Select all

Press any key to continue...

Posted: Fri Aug 12, 2005 12:48 am
by Guest
I don't think so, but, you can try Ctrl+Break. That got me out of the endless loop below:

Code: Select all

FOR I = 1 TO 2
  I = 1
NEXT I
Note: It would be helpful if you report back on whether it worked for you or not, and which version of QuickBASIC and Windows you are using. Thank you.