[求助]关于CToolTipCtrl声明变量的问题
本人超菜鸟一只,希望帮下忙改改,m_Restart和pMsg应该怎么声明?
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
//添加工具提示
CToolTipCtrl * m_tip;
m_tip=new CToolTipCtrl;
m_tip->Create(this);
m_tip->AddTool(&m_Restart,_T("计算机"));
//激活工具提示
m_tip->Activate(TRUE);
//重载函数,处理tip
if (NULL != m_tip)
{
m_tip->RelayEvent(pMsg);
}
return CDialog::PreTranslateMessage(pMsg);
}
编译后:
'm_Restart' : undeclared identifier
'pMsg' : undeclared identifier