CStatic That Knows Good From Bad
Posted
by Keith Vasilakes
on February 9th, 2000
This controll is great when you are displaying a value and you want to notify the user if the value is within tolerance or out of tolerance.
As always this controll can be either an LValue or an RValue

Comments
does not compile
Posted by Legacy on 05/11/2000 12:00amOriginally posted by: Rick Shide
BOOL CMathEdit::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message==WM_KEYDOWN && pMsg->wParam==VK_RETURN)
{
//AfxMessageBox("eating return!");
EvaluateData();
if()
return TRUE;
}
return CEdit::PreTranslateMessage(pMsg);
}
MathEdit.cpp(81) : error C2059: syntax error : ')'
Reply