PostMessage():此函数的详细意思?  谢谢!!!

解决方案 »

  1.   

    发送消息的.以看看Delphi开发指南里面,里面介绍挺详细的delphi帮助:
    The PostMessage function places (posts) a message in the message queue associated with the thread that created the specified window and then returns without waiting for the thread to process the message. Messages in a message queue are retrieved by calls to the GetMessage or PeekMessage function. BOOL PostMessage(    HWND hWnd, // handle of destination window
        UINT Msg, // message to post 
        WPARAM wParam, // first message parameter
        LPARAM lParam  // second message parameter
       );
     ParametershWndIdentifies the window whose window procedure is to receive the message. Two values have special meanings: Value Meaning
    HWND_BROADCAST The message is posted to all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows. The message is not posted to child windows.
    NULL The function behaves like a call to PostThreadMessage with the dwThreadId parameter set to the identifier of the current thread.
     MsgSpecifies the message to be posted. wParamSpecifies additional message-specific information. lParamSpecifies additional message-specific information.  Return ValuesIf the function succeeds, the return value is nonzero.
    If the function fails, the return value is zero. To get extended error information, call GetLastError. ResApplications that need to communicate using HWND_BROADCAST should use the RegisterWindowMessage function to obtain a unique message for inter-application communication.
    If you send a message in the range below WM_USER to the asynchronous message functions (PostMessage, SendNotifyMessage, and SendMessageCallback), make sure that the message parameters do not include pointers. Otherwise, the functions will return before the receiving thread has had a chance to process the message and the sender will free the memory before it is used.
      

  2.   

    简单的来说就是向系统广播一条消息。(还有SendMessage)
      

  3.   

    发送消息的函数,与SendMessage的区别是,一个是不经过消息队列直接发送,另一个是要经过消息队列
      

  4.   

    说得简单些,就是向消息队列中发送消息!不同于Sendmessage() post不等待返回值!