Hide Scrollbars from a CListCtrl | CodeGuru

Hide Scrollbars from a CListCtrl

Environment: VC++ 6.0, WinXP Short description: Removes the scrollbars from a CListCtrl without losing the ability to scroll. Introduction When you create a CListCtrl with the “NO SCROLL” option, it completely stop scrolling. If the data is out of the screen, you do not see anything. So, you always had to use the scrollbars, until […]

Written By
CodeGuru Staff
CodeGuru Staff
Jun 30, 2003
2 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: VC++ 6.0, WinXP
Short description: Removes the scrollbars from a CListCtrl without losing the ability to scroll.

Introduction

When you create a CListCtrl with the “NO SCROLL” option, it completely stop scrolling. If the data is out of the screen, you do not see anything. So, you always had to use the scrollbars, until now!

I’ve used this for many kiosk software solutions, and it gives you complete control of the CListCtrl.

Using the Code

The CListCtrlHiddenSB is derived from CListCtrl. It has one function to hide the scrollbars: HideScrollBars(int Type, int Which).

  • The Type variable has two const: LCSB_CLIENTDATA and LCSB_NCOVERRIDE.
  • The Which variable tells which scrollbar will be hidden; here we use the default: SB_BOTH, SB_HORZ, and SB_VERT.

The Clientdata type of hiding scrollbars must be called BEFORE any data is entered because this will change the clientrect of the control to be smaller.

In the demo project, I override the normal constructor, like this:

(...)
class CCListCtrlExampleDlg : public CDialog
{
// Construction
public:
  CCListCtrlExampleDlg(CWnd* pParent = NULL);    // standard
                                                 // constructor

  //These are the defs for each type of how we hide the scrollbars
// Dialog Data
  //{{AFX_DATA(CCListCtrlExampleDlg)
  enum { IDD = IDD_CLISTCTRLEXAMPLE_DIALOG };
  CListCtrlHiddenSB m_list4;
  CListCtrlHiddenSB m_list3;
  CListCtrlHiddenSB m_list2;
  CListCtrlHiddenSB m_list1;
  //}}AFX_DATA

  // ClassWizard generated virtual function overrides
  //{{AFX_VIRTUAL(CCListCtrlExampleDlg)
  protected:
  virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV
                                                      // support
  //}}AFX_VIRTUAL
(...)

Just before the listctrls are filled with data, we hide the scrollbars:

  m_list1.HideScrollBars(LCSB_CLIENTDATA, SB_VERT);

  m_list2.HideScrollBars(LCSB_CLIENTDATA);

  m_list3.HideScrollBars(LCSB_NCOVERRIDE);

  m_list4.HideScrollBars(LCSB_NCOVERRIDE);
Advertisement

Known Issues

If you have a listctrl that will just get a horizontal scrollbar and you choose to hide both of the scrollbars, the function will also remove the vertical scrollbar. But, because it is not there, some of the gfx will be cut off.

In other words, the clientarena should only be used when you KNOW how many scrollbars will be shown.

Personally, I prefer using the NcCalcSize. It removes the scrollbars pretty smoothly. It doesn’t care whether the listctrl shows all scrollbars or not.

Downloads


Download demo project – 36 Kb


Download source – 3 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.