Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: MonitorCount im Betrieb aktualisieren?
3. Mär 2011, 15:16
Das hier steckt hinter der Getter-Methode von Screen.MonitorCount:
Delphi-Quellcode:
function TScreen.GetMonitorCount: Integer;
begin
if FMonitors.Count = 0 then
Result := GetSystemMetrics(SM_CMONITORS)
else
Result := FMonitors.Count;
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|