[Overview][Types][Procedures and functions][Variables][Index] Reference for unit 'LCLIntf' (#lcl)

PostMessage

Sends a message to a window.

Declaration

Source position: winapih.inc line 215

function PostMessage(

  Handle: HWND;

  Msg: Cardinal;

  WParam: WPARAM;

  LParam: LPARAM

):Boolean;

Description

This method is a thread-safe solution to send messages to windows. Those messages will be handled in the message loop of the application and therefore can be sent from any thread. They are not immediate, but they will awake the main thread if it is waiting for messages. These messages can be handled by procedures with the keyword message in the class of a form for example. One would then use the handle of this form as the Handle parameter of this routine. Custom messages should always have an identification number (represented by the parameter Msg) larger then the constant LM_USER. The two parameters WParam and LParam will be passed along to the window together with the Msg identification number.

The difference between SendMessage and PostMessage is the way that they return control to the calling thread. With SendMessage control is not returned until the window that the message was sent to has completed processing the sent message, however with PostMessage control is returned immediately.

See also

LCLIntf.SendMessage

  

Sends a message directed to a specific window to the message pool for the application.


Version 3.2 Generated 2024-02-25 Home