::PostMessage(AfxGetApp()->m_pMainWnd->m_hWnd,YOUR_MSG,(WPARAM)0,(LPARAM)0);// YOUR_MSG为你要发送的消息。看看MSDN里的解释:PostMessageThe 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
);
 
Parameters
hWnd 
Handle to 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. 
Msg 
Specifies the message to be posted. 
wParam 
Specifies additional message-specific information. 
lParam 
Specifies additional message-specific information. 
Return Values
If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. To get extended error information, callGetLastError. Res
Applications 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), its message parameters can not include pointers. Otherwise, the operation will fail. 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. QuickInfo
  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Requires version 1.0 or later.
  Header: Declared in winuser.h.
  Import Library: Use user32.lib.
  Unicode: Implemented as Unicode and ANSI versions on Windows NT.See Also
Messages and Message Queues Overview, Message and Message Queue Functions, GetMessage, PeekMessage, SendMessageCallback, SendNotifyMessage  

解决方案 »

  1.   

    PostMessage(HWND,YOUR_MESSAGE,WPARAM,WRARAM);
      

  2.   

    postmessage前面没有什么诸如:pView->PostMessage();
    之类的对象名吗?
      

  3.   

    view对想不可以吗?
    那么窗口对象怎么写呢?
      

  4.   

    ::PostMessage(AfxGetApp()->m_pMainWnd->m_hWnd,YOUR_MSG,(WPARAM)0,(LPARAM)0);这就是将YOUR_MSG发送到主应用程序呀。
    要在主应用程序中进行接收处理这一消息,要不白发了.
      

  5.   

    对呀,我在MyView.cpp里接受了这个消息。
      

  6.   

    如果View是对话框的父窗口
    GetParent()->PostMessage(……);就行了,连指针转换都不用
      

  7.   

    取得View的句柄,再用PostMessage(...)
      

  8.   

    view怎么才算是对话框的父窗口?