Win 7 says Monitor 1 is on the left (when I click the "Identify" button), but the Control Panel shows Monitor 2 is on the left. Which is correct? And how can my PureBasic code know which monitor is the main one (like in the first image below)? Thanks!
Code: Select all
m=ExamineDesktops()
Debug "You have "+Str(m)+" monitors."
For n=0 To m-1
Debug ""
Debug "Monitor "+Str(n+1)+":"
Debug "Name = "+DesktopName(n)
Debug "Freq = "+Str(DesktopFrequency(n))+" Hz"
Debug "Depth = "+Str(DesktopDepth(n))+"-bit"
Debug "X = "+Str(DesktopX(n))
Debug "Y = "+Str(DesktopY(n))
Debug "W = "+Str(DesktopWidth(n))
Debug "H = "+Str(DesktopHeight(n))
Next

