Page 1 of 1

HOW TO stop output flash by

Posted: Thu Mar 31, 2005 8:56 am
by MONNA
When you make a program with several outputs and if you have no printer available is it possible to block data on screen long enough to let you the time to note answers?In other words how it is possible to stop at one moment the screen or to conduct outputs to successive pages you could consult as you like?

Posted: Thu Mar 31, 2005 12:10 pm
by Rattrapmax6
Eh? Can you be a lil more clear? Maybe post some source? :wink:

Posted: Thu Mar 31, 2005 3:33 pm
by Mitth'raw'nuruodo
I got it.

You could pause the program + write carp to it: do this to pause it:

Code: Select all

DO: LOOP WHILE INKEY$ = ""
That'll pause it 'till you press a key.

Or you could output to a file the data.
do this to output to a text file:

Code: Select all

OPEN "filename.txt" FOR OUTPUT AS #1
  PRINT #1, -put in here like you would a normal print statement-
CLOSE #1
There you go! :D

Posted: Wed Jun 22, 2005 9:00 pm
by sid6.7
depending on how much output you expect you could use
sleep 1
sleep 2

between prints...

i would use above puase function