CRichEditView::OnTextNotFound
更新 : 2007 年 11 月
検索に失敗したときに、フレームワークが呼び出します。
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);
}
必要条件
ヘッダー : afxrich.h