I have ben using the resizeHelper to resiz\e the dialog, but for the Window to look right I need to Minimize then Restore it to clear down some odd bitmaps still on display.
I did try and add calls to ShowWindow(SC_MINIMIZE); and
ShowWindow(SC_RESTORE);
See below but no luck
void CIDU_EmuDlg::OnSize(UINT nType, int cx, int cy)
{
/* Arange for the display to be resized */
CDialog::OnSize(nType, cx, cy);
m_resizeHelper.OnSize();
ShowWindow(SC_MINIMIZE);
ShowWindow(SC_RESTORE);
OnPaint();
}
I have to use the mouse to Min and Restore, any suggestions?