CRichEditView::OnTextNotFound
Chamado pela estrutura sempre que uma Pesquisar falhará.
virtual void OnTextNotFound(
LPCTSTR lpszFind
);
Parâmetros
- lpszFind
O texto que não foi encontrado.
Comentários
Substituir esta função para alterar a notificação de saída de um MessageBeep.
Para obter mais informações, consulte MessageBeep in the Windows SDK.
Exemplo
void CMyRichEditView::OnTextNotFound(LPCTSTR lpszFind)
{
// Replace the beep with a message box
CString str;
str.Format(_T("'%s' was not found."), lpszFind);
AfxMessageBox(str);
}
Requisitos
Cabeçalho: afxrich.h