Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Incongruence between PRINT; and LOCATE+ PRINT; on the 25th row of Screen 0
#6
@Steve
thanks for technical  information...
so scroll up starts at row before the last row!
and the correct code to gain the 25th line of text is this

Code: (Select All)

Cls
For a% = 1 To 25
    If a% < 24 Then Print a%
    If a% = 24 Then Print a%;
    If a% = 25 Then Locate 25, 1: Print a%;
    _Delay .2
Next a%

it always uses LOCATE!!

Ok you suggest to pass to the graphic managing of text...
so it is more flexible...
do you think that wiki must be corrected?
Reply


Messages In This Thread
RE: Incongruence between PRINT; and LOCATE+ PRINT; on the 25th row of Screen 0 - by TempodiBasic - 11-26-2024, 11:34 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)