Page 1 of 1

TRACE- VIEW OUTPUT AS IT IS GENERATED

Posted: Fri Mar 16, 2007 12:40 pm
by pronoland
HOW CAN I VIEW OUTPUT AS IT IS GENERATED, SO I CAN SEE WHERE IN THE PROGRAM I AM

Posted: Fri Mar 16, 2007 2:42 pm
by bungytheworm
Please do not yell ;)

You wana know line where youre at in some time when youre running a program or what?

Try this

Posted: Thu May 10, 2007 12:46 pm
by burger2227
The obvious answer:
Wherever you produce output, also print it to the screen.
Example
PRINT #1, "Total: "; TotalSales
would be changed to
PRINT #1, "Total: "; TotalSales
PRINT "Total: "; TotalSales