I create a modeless dialog box this way...
g_DlgRequest = new DlgItemFound;
g_DlgRequest->Create(DlgItemFound::IDD);
g_DlgRequest->ShowWindow(SW_SHOW);
... and then a big process is launched...
for(...){
//...
}
The window appear but don't display its controls because of the big process... How can I force the Dialog Box to completely draw its components?
thanks...
g_DlgRequest = new DlgItemFound;
g_DlgRequest->Create(DlgItemFound::IDD);
g_DlgRequest->ShowWindow(SW_SHOW);
... and then a big process is launched...
for(...){
//...
}
The window appear but don't display its controls because of the big process... How can I force the Dialog Box to completely draw its components?
thanks...