gcue 10 Posted July 22, 2010 is there a way to define the available X,Y coordinates for desktop size. I would think it would probably be something to do with getting resolution first. but how do you know if the monitors are all side by side. if the monitors are stacked, that would create -XXXX and -YYYY coordinates which knowing the resolution won't really help. thanks Share this post Link to post Share on other sites
andygo 1 Posted July 22, 2010 hi, to get the x and y of a 2-monitor system (maybe also for more multiple-systems) i use this: $x = _WinAPI_GetSystemMetrics(78) $y = _WinAPI_GetSystemMetrics(79) Share this post Link to post Share on other sites
gcue 10 Posted July 22, 2010 perfect!!!!! many thanks!!!!! Share this post Link to post Share on other sites