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