|
Posting and Sending Messages
Any application can post and send messages. Like the system, an application
posts a message by copying it to a message queue and sends a message by passing
the message data as arguments to a window procedure. To post messages, an
application uses the PostMessage function. An application can send a message by calling the SendMessage, BroadcastSystemMessage, SendMessageCallback, SendMessageTimeout, SendNotifyMessage, or SendDlgItemMessage function.
An application typically posts a message to notify a specific window to
perform a task. PostMessage creates an MSG structure for the message and copies the message to the message queue. The
application's message loop eventually retrieves the message and dispatches it to
the appropriate window procedure.
An application typically sends a message to notify a window procedure to
perform a task immediately. The SendMessage function sends the message to the window procedure corresponding to the given
window. The function waits until the window procedure completes processing and
then returns the message result. Parent and child windows often communicate by
sending messages to each other. For example, a parent window that has an edit
control as its child window can set the text of the control by sending a
message to it. The control can notify the parent window of changes to the text that
are carried out by the user by sending messages back to the parent.
The SendMessageCallback function also sends a message to the window procedure corresponding to the
given window. However, this function returns immediately. After the window
procedure processes the message, the system calls the specified callback function.
For more information about the callback function, see the SendAsyncProc function.
Occasionally, you may want to send or post a message to all top-level windows
in the system. For example, if the application changes the system time, it must
notify all top-level windows about the change by sending a WM_TIMECHANGE message. An application can send or post a message to all top-level windows
by calling the SendMessage or PostMessage function and specifying HWND_TOPMOST in the hwnd parameter. You can also broadcast a message to all applications by calling
the BroadcastSystemMessage function and specifying BSM_APPLICATIONS in the lpdwRecipients parameter.
An application can post a message without specifying a window. If the
application supplies a NULL window handle when calling PostMessage, the message is posted to the queue associated with the current thread.
Because no window handle is specified, the application must process the message in
the message loop. This is one way to create a message that applies to the entire
application, instead of to a specific window.
By using the InSendMessage function, a window procedure can determine whether it is processing a message
sent by another thread. This capability is useful when message processing
depends on the origin of the message.
A common programming error is to assume that the PostMessage function always posts a message. This is not true when the message queue is
full. An application should check the return value of the PostMessage function to determine whether the message has been posted and, if it has not
been, repost it.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|