Registriert seit: 17. Sep 2006
Ort: Sonnensystem, Zentral
1.522 Beiträge
Delphi 5 Standard
|
Re: Benötige Hilfe beim Entwickeln einer Komponente
8. Sep 2007, 02:59
Delphi-Quellcode:
SetWindowRgn( Handle, Region, True);
DeleteObject(Region);
Das Region Handle nach einer Zuweisung mit SetWindowRgn nicht mehr verwenden oder gar löschen
Im MSDN steht geschrieben: After a successful call to SetWindowRgn, the operating system owns the region specified by the region handle hRgn. The operating system does not make a copy of the region. Thus, you should not make any further function calls with this region handle. In particular, do not close this region handle.
|