1
QB64 Discussion / Re: Can QB64 finish without the screen disappearing
« on: February 24, 2018, 02:54:29 pm »Your program probably has a call to SYSTEM. Replacing that with END will keep your screen up with "Press any key to continue" or similar. That won't allow you to scroll back in case your output is longer than the screen, though.
You can, however, create a console application and replicate the DOS experience by having your program output to terminal:Code: QB64: [Select]
Add the snippet above to the beginning of your program.
Thank you! This works great! Much appreciated!