Sys(602)
This function returns the value of the BITMAP setting in FoxPro's configuration file (Config.FPW).
Usage |
nSetting = SYS( 602 ) |
Certain writes to the screen, particularly output from the ? command or drawing methods such as Line, Circle and PSet, are not refreshed when new screen data is sent down to the terminal, such as when another window is selected, and then control returns to the original window. Avoid these commands when working in a terminal server environment. While we here at Hacker Labs don't have a terminal server to test this, we think you might be able to work around some of the problem by issuing these screen writes in the Activate event of the form. |
Example |
* You might use this command to avoid the screen display * situation presented above. IF SYS(602) = 1 ? "We can write to the screen!" ELSE WAIT WINDOW "In Terminal Server display mode." ENDIF |
See Also |