CTRL+ALT+DELETE in qbasic

Please use this Board for QBasic related requests ( file research, programming, etc.)

Moderators: Administrator, Global Moderator

Post Reply
renjo

CTRL+ALT+DELETE in qbasic

Post 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...
Guest

Post 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.
Post Reply