谢谢

解决方案 »

  1.   

    http://www.enet.com.cn/eschool/inforcenter/A20040415302691.html
      

  2.   

    define WM_XXX   WM_USER+1;::SendMessage();
      

  3.   

    BOOL PostMessage(
       UINT message,
       WPARAM wParam = 0,
       LPARAM lParam = 0 
    );
    Parameters
    message 
    Specifies the message to be posted. 
    wParam 
    Specifies additional message information. The content of this parameter depends on the message being posted. 
    lParam 
    Specifies additional message information. The content of this parameter depends on the message being posted. 
    Return Value
    Nonzero if the message is posted; otherwise 0.LRESULT SendMessage(          HWND hWnd,
        UINT Msg,
        WPARAM wParam,
        LPARAM lParam
    );
    ParametershWnd
    [in] Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but the message is not sent to child windows.
    Msg
    [in] Specifies the message to be sent.
    wParam
    [in] Specifies additional message-specific information.
    lParam
    [in] Specifies additional message-specific information.
    Return ValueThe return value specifies the result of the message processing; it depends on the message sent.