2006-05-10

The programming: MFC nonsense

Nonsense:

This does not work:
combo.SetRedraw(FALSE);
//Blah-blah-blah
combo.SetWindowText("something not in list");
combo.SetRedraw(TRUE);


And this works:
combo.SetRedraw(FALSE);
//Blah-blah-blah
combo.SetRedraw(TRUE);
combo.SetWindowText("something not in list");

Sucks...

No comments:

Post a Comment