Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by whitelisting our website.

Hide scrollbars from a CListCtrl

This is an article about how you can remove the scrollbars from a CListCtrl and do not loose the ability to scroll. EnsureVisible and other functions works with this derived class.

Check it out on:
Codeproject.com
Codeguru.com
Planetsourcecode.com

Hide scrollbars from a CListCtrl

ListCtrlSBHideProject.zip (35.75 kB)
ListCtrlSBHideSource.zip (2.2 kB)

CListCtrl - Scrollbars are hidden, but they still work :)

Environment: VC++ 6.0, WinXP
Short description: Removes the scrollbars from a CListCtrl without
loosing 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 used this on 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 that will be hidden, here we use the
default: SB_BOTH, SB_HORZ and SB_VERT.

Clientdatatype of hiding scrollbars must be called BEFORE any data is entered,
because this will change the clientrect of the ctrl 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 listctrl's 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);

Known issues

If you have an listctrl that will just get a horiz-scrollbar, and you choose
to hide both of the scrollbars. The function will also remove the vert-scrollbar,
but since 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 of
the scrollbars that will be shown.

Personally I prefer using the NcCalcSize. It removes the scrollbars pretty
smooth. It's not dependent if the listctrl shows all scrollbars or not.