Getting the size of all monitors can be difficult, as the desktop can be stretched or duplicated, and you cannot determine this easily :)#!/usr/bin/perl use warnings; use strict; use Win32::GUI; my $desk = Win32::GUI::GetDesktopWindow(); my $dw = Win32::GUI::Width($desk); my $dh = Win32::GUI::Height($desk); print "${dw}x$dh\n";
In reply to Re: Determine screen resolution (on Windows)
by Ieronim
in thread Determine screen resolution (on Windows)
by mdog
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |