Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redraw a dialog box

Status
Not open for further replies.

BobbyB

Programmer
Feb 19, 2002
44
0
0
CA
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...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top