CRichEditView::OnTextNotFound
调用由框架,只要搜索失败。
virtual void OnTextNotFound(
LPCTSTR lpszFind
);
参数
- lpszFind
未找到的文本。
备注
重写此函数从 MessageBeep更改输出通知。
有关更多信息,请参见 Windows SDK的 MessageBeep。
示例
void CMyRichEditView::OnTextNotFound(LPCTSTR lpszFind)
{
// Replace the beep with a message box
CString str;
str.Format(_T("'%s' was not found."), lpszFind);
AfxMessageBox(str);
}
要求
Header: afxrich.h