Zitat von
turboPASCAL:
Aber nicht vom gesamten Screen oder ? Das ist/wäre Resourcenverschwendung.
Mit
dcForm := GetWindowDC(Form1.Handle);
funktioniert es nicht, da ist das Bild schwarz.
Mit
Delphi-Quellcode:
hForm := GetForegroundWindow;
dcForm := GetWindowDC(hForm);
kann man das aktive Formular capturen.