Registriert seit: 8. Mai 2005
Ort: Sondershausen
4.274 Beiträge
Delphi 6 Personal
|
AW: "Fensterfoto" unter Windows 7 klappt nicht so recht...
25. Jul 2010, 21:48
So:
Delphi-Quellcode:
if (hNotifierWnd <> 0) and (isWindowVisible(hNotifierWnd)) then
begin
hInetExpWnd := FindWindowByClasses(...);
if hInetExpWnd <> 0 then
begin
GetClientRect(hInetExpWnd, cwcr);
hINSWndDC := GetDC(hInetExpWnd);
if hINSWndDC <> 0 then
begin
with cwcr do
stretchblt(hBmpDC, 0, 37, clWndWidth, clWndHeight - 37, hINSWndDC, 0, 0, Right - Left,
Bottom - Top, SRCCOPY);
// ...
end;
ReleaseDC(hInetExpWnd, hINSWndDC);
end;
end;
|
|
Zitat
|