How to Find the Current Video Resolution (110361)



The information in this article applies to:

  • Microsoft Visual FoxPro for Windows 3.0
  • Microsoft FoxPro for Windows 2.5
  • Microsoft FoxPro for Windows 2.5a
  • Microsoft FoxPro for Windows 2.5b
  • Microsoft FoxPro for Macintosh 2.5b

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

Modification Type:MajorLast Reviewed:12/1/2003
Keywords:KB110361