在VS里面的错题提示,本人初学者请问

在VS里面的错题提示,本人菜鸟请教
1>.\comtest.cpp(16) : error C2039: 'OnHelp' : is not a member of 'CWinApp'
1> E:\Microsoft Visual Studio 8\VC\ce\atlmfc\include\afxwin.h(4921) : see declaration of 'CWinApp'
1>.\comtest.cpp(16) : error C2065: 'OnHelp' : undeclared identifier
1>comtestDlg.cpp
1>.\comtestDlg.cpp(133) : error C2065: 'WM_ICONERASEBKGND' : undeclared identifier
1>.\comtestDlg.cpp(175) : warning C4244: '=' : conversion from 'wchar_t' to 'char', possible loss of data


16: ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
133: SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
175: buf[i]=m_send.GetAt(i);

要怎么解决?

------解决方案--------------------
http://translate.google.cn/?hl=zh-cn&tab=wT#
1> \ comtest.cpp(16):错误C2039:'OnHelp“:是不是一个CWinApp的成员
1> C:\的Microsoft Visual Studio8\ VC\ CE\ atlmfc\\ afxwin.h(4921):看到声明“的CWinApp
1> \ comtest.cpp(16):错误C2065:'OnHelp“:未声明的标识符
1> comtestDlg.cpp
1> \ comtestDlg.cpp(133):错误C2065:'WM_ICONERASEBKGND“:未声明的标识符
1> \ comtestDlg.cpp(175):警告C4244:'=':从“wchar_t的'转化为'字符',可能丢失数据


16:ON_COMMAND(ID_HELP的CWinApp:: OnHelp)
133:SendMessage的(WM_ICONERASEBKGND,reinterpret_cast的<WPARAM>(dc.GetSafeHdc()),0);
175:BUF[I] = m_send.GetAt(I);

------解决方案--------------------
你先是添加了消息映射 函数 后来又把那个对应的 对话框中的 ID 删了