Knowledge Base

How to Find the Current Video Resolution

Article ID: 110361

Article Last Modified on 12/1/2003


APPLIES TO


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