Code to View/Hide Status Bar in SDI and MDI Applications | CodeGuru

Code to View/Hide Status Bar in SDI and MDI Applications

Ever wanted to change the "View/Hide Status Bar" menue option so that the application (main) window changes it’s height accordingly preserving the size of the visible client area? Here’s a little handler for the OnViewStatusBar message handler to perform this task. Versions for MFC or Non-MFC available. // // OnViewStatusBar handler // // increase or […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 20, 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

Ever wanted to change the "View/Hide Status Bar"
menue option so that the application (main) window changes it’s
height accordingly preserving the size of the visible client
area?

Here’s a little handler for the OnViewStatusBar message handler
to perform this task. Versions for MFC or Non-MFC available.

//
// OnViewStatusBar handler
//
// increase or decrease app window height to adapt to
// visible or invisible status bar
//
void CMainFrame::OnViewStatusBar() // MFC version
// by Volker Bartheld 
{
 CControlBar* pBar = GetControlBar(AFX_IDW_STATUS_BAR);
 if (pBar != NULL)
 {
  RECT AppWinRect, BarRect;
  GetWindowRect(&AppWinRect);
  pBar->GetWindowRect(&BarRect);
  int iBarHeight = BarRect.bottom – BarRect.top;
  BOOL bShow = (pBar->GetStyle() & WS_VISIBLE) == 0;
  ShowControlBar(pBar, bShow, FALSE);
  if (bShow)
  {
   //    … increase frame
   SetWindowPos(&CWnd::wndNoTopMost,
   AppWinRect.top, AppWinRect.left,
   AppWinRect.right-AppWinRect.left, AppWinRect.bottom-AppWinRect.top+iBarHeight,
   SWP_NOMOVE);
  }
  else
  {
   //    … decrease frame
   SetWindowPos(&CWnd::wndNoTopMost,
   AppWinRect.top, AppWinRect.left,
   AppWinRect.right-AppWinRect.left, AppWinRect.bottom-AppWinRect.top-iBarHeight,
   SWP_NOMOVE);
  }
 }
}
void CMainFrame::OnViewStatusBar()  // non-MFC-version
// by Alexander Sailer 
{
 // MFC StatusbarHandler aufrufen
 OnBarCheck(ID_VIEW_STATUS_BAR);
 CControlBar* pBar = NULL;
 BOOL bVisible(false);
 RECT AppWinRect, BarRect;
 int iBarHeight(0);
 // get ptr to status bar
 pBar = GetControlBar(ID_VIEW_STATUS_BAR);
 ASSERT(pBar);
 // Abme_ungen holen
 GetWindowRect(&AppWinRect);
 pBar->GetWindowRect(&BarRect);
 iBarHeight = BarRect.bottom – BarRect.top;
 // Abfrage ob Bar sichtbar ist
 bVisible = pBar->IsVisible();
 if (bVisible)//    … increase frame
 {
  SetWindowPos(&CWnd::wndNoTopMost,
  AppWinRect.top, AppWinRect.left,
  AppWinRect.right-AppWinRect.left,
  AppWinRect.bottom-AppWinRect.top+iBarHeight,
  SWP_NOMOVE);
 }
 else //    … decrease frame
 {
  SetWindowPos(&CWnd::wndNoTopMost,
  AppWinRect.top, AppWinRect.left,
  AppWinRect.right-AppWinRect.left,
  AppWinRect.bottom-AppWinRect.top-iBarHeight,
  SWP_NOMOVE);
 }
}

Downloads

Download source – 1 Kb

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.