RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TWinControl.MainWndProc Method

Receives Windows messages for the control.

Pascal
procedure MainWndProc(var Message: TMessage);
C++
__fastcall MainWndProc(TMessage Message);

MainWndProc is the window procedure for the control that is associated with the control's window when it is created. When Windows sends a message to the control's window, MainWndProc receives it. 

MainWndProc does not process or dispatch the messages itself, but rather calls the method specified by WindowProc to do that. MainWndProc provides an exception-handling block around WindowProc, ensuring that if any unhandled exceptions occur during the processing of a message, the application's HandleException method will handle them. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!