Page 1 of 1

How to LRUN without clearing the screen?

Posted: Wed Apr 20, 2011 1:56 pm
by programandala.net
LRUN performs NEW, so also clears the screen and all open windows. The same happens with QLRUN.

Is there any toolkit keyword or trick to load and run a program without clearing the screen?

Re: How to LRUN without clearing the screen?

Posted: Wed Apr 20, 2011 3:22 pm
by RWAP
Yes - load a short boot program and then use MRUN instead of LRUN to load the rest of the SuperBASIC program.

I forget the equivalent in QLOAD.

Re: How to LRUN without clearing the screen?

Posted: Wed Apr 20, 2011 8:20 pm
by dilwyn
RWAP wrote:Yes - load a short boot program and then use MRUN instead of LRUN to load the rest of the SuperBASIC program.

I forget the equivalent in QLOAD.
SBASIC on SMSQ/E has QMERGE, QMRUN, QLRUN and QSAVE_O

These are like MERGE, MRUN, LRUN and SAVE_O but work ont he "_sav" files.

Dilwyn

Re: How to LRUN without clearing the screen?

Posted: Wed Apr 20, 2011 9:52 pm
by programandala.net
I didn't remember MRUN. Then I could use "DLINE" to delete the boot program lines if necessary.
Thank you!