08-01-2022, 10:14 PM
Interesting. I can't say anything about what the admin wrote because I don't have the knowledge.
I've looked at the specs when the window is reduced in size and I see the data doesn't update from 640 X 400 onwards. But I couldn't find where this error is.
I only have a guess. Here "Print" gets something wrong transmitted:
Print _Width(DisplayScreen), _Height(DisplayScreen)
I've looked at the specs when the window is reduced in size and I see the data doesn't update from 640 X 400 onwards. But I couldn't find where this error is.
I only have a guess. Here "Print" gets something wrong transmitted:
Print _Width(DisplayScreen), _Height(DisplayScreen)
Code: (Select All)
Do
AutoResize
Cls , 0
Print _Width(DisplayScreen), _Height(DisplayScreen)
_PutImage , WorkScreen, DisplayScreen, (0, 0)-Step(_Width(DisplayScreen), _Height(DisplayScreen))
_Limit 60
_Display
Loop
Sub AutoResize
Static OldFontSize
W = _Width(DisplayScreen): H = _Height(DisplayScreen)
FW = _FontWidth: FH = _FontHeight
'And so on
' . . .