Delphi .NET (2) Database (71) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
When is my control's window handle created?
This article has not been rated yet. After reading, feel free to leave comments and rate it.
A control's window handle is created by the CreateWnd method.
If you have processing that needs to be performed after the window handle
is created, then you can override CreateWnd and do
 | |  | |
procedure TMyClass.CreateWnd;
begin
inherited CreateWnd;
end;
| |  | |  |
Comments:
|