Display Update Speed for Dialog Boxes | CodeGuru

Display Update Speed for Dialog Boxes

Environment: Visual C++ 6 I’ve been searching for a simple answer to a problem. I wanted to increase the display update rate for a dialog box. This (modeless) dialog includes a progress bar, and it displays a percentage number and another number indicating progress (initially in edit boxes). When I’d disable the display update functions […]

Written By
CodeGuru Staff
CodeGuru Staff
Jan 14, 2000
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: Visual C++ 6

I’ve been searching for a simple answer to a problem. I wanted to increase the
display update rate for a dialog box. This (modeless) dialog includes a progress bar,
and it displays a percentage number and another number indicating progress (initially in
edit boxes). When I’d disable the display update functions (m_progress.SetPos() and
dlg->UpdateData(FALSE), the function generating these numbers would complete in half
the time. I tried using a DC and the TextOut() function (rather than updating the
edit boxes), but that didn’t speed things up either. Until I looked at the myriad
of windows messages sent when I used
UpdateData(FALSE) I didn’t realize the origin
of the wasted time. It’s all due to the “repainting” of the main app window (frame).
Since I’m (relatively) inexperienced with MFC, I’m delighted to find such a simple solution.
When you display the dialog box hide the main window (if you don’t require it’s use at
that time). I don’t use the UpdateData(FALSE) function, but I still see the information
on the screen, and the progress bar updates as expected (in a negligible amount of time).
I’m sure some of you may see holes in my theory, but this works fine for my app.

BOOL CMyDialog::OnInitDialog()
{
 CDialog::OnInitDialog();

 CWnd* temp_main_wnd = AfxGetMainWnd();

 temp_main_wnd->ShowWindow(SW_HIDE);
}


void CMyOperation::GetDataAndDisplay()
{
 unsigned int  m_percent = 0;
 unsigned int  m_other_data = 0;

 int x = 200;
 int y = 200;

 CMyDialog* dlg;

 CDC* TempDC = NULL;
 CDC  LocalDC;

 dlg = new CMyDialog;
 dlg->Create(IDD_MY_DIALOG, NULL);
 dlg->ShowWindow(SW_SHOWNORMAL);

 TempDC = dlg->GetDC();

 LocalDC.m_hAttribDC = TempDC->m_hAttribDC;
 LocalDC.m_hDC = TempDC->m_hDC;

 ...
 ...

 // When it's time to update the display...

 dlg->m_progress.SetPos(m_percent);

 LocalDC.TextOut(x, y, m_percent);
 LocalDC.TextOut(x, y + 50, m_other_data);

 ...
 ...
}

void CMyDialog::OnCancel()
{
 CWnd* temp_main_wnd = AfxGetMainWnd();

 temp_main_wnd->ShowWindow(SW_SHOW);

 CDialog::OnCancel();
}
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.