Hi,
within a dialog, which has several edit boxes and buttons, I have defined a message handler for WM_CHAR using the class wizard. This creates
void CKeyFromSource::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
int i;
i = 1; // break here
CDialog::OnChar(nChar, nRepCnt, nFlags);
}
I have a break on the i=1 line;
This break is never hit...
Do I have to do something to cause these messages to be passed along?
Is there something which inhibits these messages?
I am using Visual C++ 6.0
Thanks for all help.
within a dialog, which has several edit boxes and buttons, I have defined a message handler for WM_CHAR using the class wizard. This creates
void CKeyFromSource::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
int i;
i = 1; // break here
CDialog::OnChar(nChar, nRepCnt, nFlags);
}
I have a break on the i=1 line;
This break is never hit...
Do I have to do something to cause these messages to be passed along?
Is there something which inhibits these messages?
I am using Visual C++ 6.0
Thanks for all help.