Is there a function that indicates what resolution a screen is using?
Thank you
Harvey
Harvey
Is there a function that indicates what resolution a screen is using?
hag wrote:Is there a function that indicates what resolution a screen is using?
#include "FiveWin.ch"
Function Main()
  Local nWidth, nHeight, ;
     aRes := ScrResolution()
  ? nWidth  := aRes[ 1 ]
  ? nHeight := aRes[ 2 ]
  ? nWidth  := GetSysMetrics( 0 )
  ? nHeight := GetSysMetrics( 1 )
Return NilThanks for the help. I'll try it later today.