1. Does INSTAT release timeslice while waiting for keyboard/mouse event? The documentation doesn't say.
2. WAITKEY$ seems to return only lower case characters. One then has to check INSHIFT to determine if the character is upper case. The documentation does not mention this.
3. When using CONSOLE SET SCREEN if the console box is set larger than standard a virtual size is actually used, at least on a W2K system. For example:
On my machine with a W2K OS this results in an actual box of 24 rows by 80 columns but a virtual box of 75 rows by 100 columns. The remainder of the virtual box can be viewed using the scrollbars. The documentation does not mention this behavior.
Finally, is there a way to hook the scrollbars? Using SCROLL UP does not seem to move the vertical scrollbar all the way to the top?
2. WAITKEY$ seems to return only lower case characters. One then has to check INSHIFT to determine if the character is upper case. The documentation does not mention this.
3. When using CONSOLE SET SCREEN if the console box is set larger than standard a virtual size is actually used, at least on a W2K system. For example:
Code:
DESKTOP GET USER TO X, Y X = X \ 8 Y = Y \ 8 CONSOLE SET SCREEN Y, X
Finally, is there a way to hook the scrollbars? Using SCROLL UP does not seem to move the vertical scrollbar all the way to the top?
Comment