Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Scrolling Output That Exceeds Screen Size
#7
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
b = b + ...
Reply


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



Users browsing this thread: 2 Guest(s)