Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Scrolling Output That Exceeds Screen Size
#8
(04-09-2024, 12:08 AM)bplus Wrote:
Code: (Select All)
'Screen _NewImage(800, 600, 32)
$Console:Only
Print "This program will count to 100 from the number you supply."
Print
Input "Enter the number to start counting from > ", count%
While count% <= 100
    Print count%
    count% = count% + 1
Wend

this will work for that program too;
Code: (Select All)
Screen _NewImage(800, 600, 32)
''Console:Only
Print "This program will count to 100 from the number you supply."
Print
Input "Enter the number to start counting from > ", count%
While count% <= 100
    Print count%;
    count% = count% + 1
Wend
I have done that, and it worked fine; I still want to be able to scroll without going to console:only mode. If I can.
Reply


Messages In This Thread
RE: Scrolling Output That Exceeds Screen Size - by Tim - 04-09-2024, 12:13 AM



Users browsing this thread: 1 Guest(s)