I have a CEdit Control that was working just fine. The KB824141 windows update has caused my code to do some strange things:
 
if (m_ctlBank.IsWindowVisible() && m_Bank.IsEmpty())
{
   AfxMessageBox("Must have valid bank name.[" + m_Bank + "]");
   m_ctlBank.SetFocus();
   return;
}
 
I have a dialog in which these controls are hidden, or set to be invisible. However, when debugging my app, execution is always entering this if statement. Does anyone know of a quick fix, besides taking out this check? Thanks!
 
Adam

Reply via email to