SHARE
Facebook X Pinterest WhatsApp

Locking Rebars and Toolbars

I found a way to lock the rebars like the rebars in the Windows Explorer under Win 2000/XP (which wasn’t easy to do). Simply add the following code to the MainFrm.cpp where you want to lock or unlock the rebar: CReBarCtrl& rbc = m_wndReBar.GetReBarCtrl(); REBARBANDINFO rbbi; rbbi.cbSize = sizeof(rbbi); rbbi.fMask = RBBIM_STYLE; int nCount = […]

Written By
thumbnail
CodeGuru Staff
CodeGuru Staff
Apr 26, 2005
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

I found a way to lock the rebars like the rebars in the Windows Explorer under Win 2000/XP (which wasn’t easy to do). Simply add the following code to the MainFrm.cpp where you want to lock or unlock the rebar:

CReBarCtrl& rbc = m_wndReBar.GetReBarCtrl();
REBARBANDINFO rbbi;
rbbi.cbSize = sizeof(rbbi);
rbbi.fMask  = RBBIM_STYLE;
int nCount  = rbc.GetBandCount();
for (int i  = 0; i < nCount; i++)
{
   rbc.GetBandInfo(i, &rbbi);
   rbbi.fStyle ^= RBBS_NOGRIPPER | RBBS_GRIPPERALWAYS;
   rbc.SetBandInfo(i, &rbbi);
}

The toolbars in the rebar unlocked:

And now locked:

Thanks to the CodeGuru reviewers, I also know a way to lock toolbars (not within a rebar). The idea is this: when locking controlbars, we need to disable any mouse attempts to move’em around. The key to this is to set the m_pDockBar member to NULL.

When unlocking, make sure to set it back to what it was earlier.. which means the app needs to cache these. This dirty little trick should do the job.

Add these to mainfrm.h:

CDockBar*   m_pTBDockBar;
CDockBar*   m_pDBDockBar;
BOOL m_bLocked;

Add this to mainfrm.cpp (into the constructor):

m_bLocked = FALSE;

Add this code to toggle:

DWORD dwToolbarStyle = m_wndToolBar.GetBarStyle();
DWORD dwDlgbarStyle  = m_wndDlgBar.GetBarStyle();
if(m_bLocked)
{
   // Changes the bars' style, so they have grippers
   dwToolbarStyle |= CBRS_GRIPPER;
   dwDlgbarStyle  |= CBRS_GRIPPER;
   m_wndToolBar.SetBarStyle(dwToolbarStyle);
   m_wndDlgBar.SetBarStyle(dwDlgbarStyle);

   //when removing the fixed style, set back the dockbar
   m_wndToolBar.m_pDockBar = m_pTBDockBar;
   m_wndDlgBar.m_pDockBar  = m_pDBDockBar;
}
else
{
   // Changes the bars' style, so they have not grippers
   dwToolbarStyle &= ~CBRS_GRIPPER;
   dwDlgbarStyle  &= ~CBRS_GRIPPER;
   m_wndToolBar.SetBarStyle(dwToolbarStyle);
   m_wndDlgBar.SetBarStyle(dwDlgbarStyle);

   // If the bar is floating, it will be docked before locking it.
   DockControlBar(&m_wndToolBar);
   DockControlBar(&m_wndDlgBar);

   //remove dockbar so that it cannot be moved around
   m_pTBDockBar = m_wndToolBar.m_pDockBar;
   m_pDBDockBar = m_wndDlgBar.m_pDockBar;
   m_wndToolBar.m_pDockBar = NULL;
   m_wndDlgBar.m_pDockBar  = NULL;
}

m_wndDlgBar.Invalidate();    // dialog bars need Invalidate()
RecalcLayout();
m_bLocked = !m_bLocked;

The toolbars unlocked:

And now locked:

Summary

This code has been tested on Win NT 4.0/2000/XP Pro.

Best regards, Frank

Recommended for you...

Video Game Careers Overview
CodeGuru Staff
Sep 18, 2022
Dealing with non-CLS Exceptions in .NET
Hannes DuPreez
Aug 5, 2022
Online Courses to Learn Video Game Development
Ronnie Payne
Jul 8, 2022
Best Online Courses to Learn C++
CodeGuru Staff
Jun 25, 2022
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. © 2025 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.