How to Find the Current Video ResolutionLast reviewed: April 30, 1996Article ID: Q110361 |
The information in this article applies to:
You can programmatically determine the current video resolution by using the SYSMETRIC() function. SYSMETRIC(1) returns the current screen width in pixels, and SYSMETRIC(2) returns the current screen height in pixels. Combining these two function calls will give the current video resolution.
Example
WAIT WINDOW "The Current Video Resolution is "; + LTRIM(STR(SYSMETRIC(1)))+ " X " + LTRIM(STR(SYSMETRIC(2))) REFERENCESFoxPro for Windows "Language Reference," page L3-1064 FoxPro for Macintosh "Language Reference," pages 840-841
|
Additional reference words: VFoxWin 3.00 FoxMac FoxWin 2.50 2.50a 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |