Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Called by the framework whenever a search fails.
virtual void OnTextNotFound(
LPCTSTR lpszFind
);
Parameters
- lpszFind
The text which was not found.
Remarks
Override this function to change the output notification from a MessageBeep.
For more information, see MessageBeep in the Windows SDK.
Example
void CMyRichEditView::OnTextNotFound(LPCTSTR lpszFind)
{
// Replace the beep with a message box
CString str;
str.Format(_T("'%s' was not found."), lpszFind);
AfxMessageBox(str);
}
Requirements
Header: afxrich.h