For debugging I occasionally use commands like
I think it has some advantages over WAIT WINDOW, MESSAGEBOX.
Unpleasant is, that this way I can use only some area of the screen to show results. I have a suspicion, that this part has the same height as the form, from where the command was issued.
If I run following code from Command Window
everything is all right – on my screen I can see at this moment rows from #1 to #60.
When run from a form, I can see only rows from #1 to let's say #20, with higher form more.
If I add coordinates to the command, the whole screen is accessible, but it is not convenient here.
Why the system behaves like that and can such behavior be override some way.
Thank you, Tom.
Code:
_SCREEN.Print(cMyVar + CHR(13))
Unpleasant is, that this way I can use only some area of the screen to show results. I have a suspicion, that this part has the same height as the form, from where the command was issued.
If I run following code from Command Window
Code:
_SCREEN.Cls
FOR n = 1 TO 100
_SCREEN.Print(STR(n) + CHR(13))
ENDFOR
When run from a form, I can see only rows from #1 to let's say #20, with higher form more.
If I add coordinates to the command, the whole screen is accessible, but it is not convenient here.
Why the system behaves like that and can such behavior be override some way.
Thank you, Tom.