11-26-2024, 11:34 PM
@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
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?
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?

