1)自定义消息: #define MYMESSAGE WM_USER+1000 2)向指定窗口发送自定义消息: SendMessage(m_hWnd,MESSAGE,0,0); 3)在指定窗口的窗口过程函数中对自定义消息进行处理。