How to Find the Current Video Resolution
Article ID: 110361
Article Last Modified on 12/1/2003
APPLIES TO
- Microsoft Visual FoxPro 3.0 Standard Edition
- Microsoft FoxPro 2.5b
- Microsoft FoxPro 2.5a
- Microsoft FoxPro 2.5b
- Microsoft FoxPro 2.5b for Macintosh
This article was previously published under Q110361
SUMMARY
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)))
REFERENCES
FoxPro for Windows "Language Reference," page L3-1064
FoxPro for Macintosh "Language Reference," pages 840-841
Additional query words: VFoxWin FoxMac FoxWin 2.50 mode
Keywords: KB110361