I'm trying to catch CEdit EM_SHOWBALLOONTIP
message within PreTranslateMessage
function.
Can somebody tell me how to do this ?
thank you
BOOL CTestDlg::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->hwnd == m_edit1.GetSafeHwnd())
{
if (pMsg->message == EM_HIDEBALLOONTIP)
{
}
}
return CDialogEx::PreTranslateMessage(pMsg);
}