Link to home
Start Free TrialLog in
Avatar of samyee
samyee

asked on

CListCtrl:: Remove HScroll

Q1) I wish to remove away the HScroll of the CListCtrl in report view but not the VScroll....

The only properties that I can find is the <No Scroll> option found in the Extended Style...

BUT I still need the VScroll but NOT the buttom HScroll...
Avatar of f4817
f4817

Hello,
which kind of list is your CListCtr?
Avatar of samyee

ASKER

A CCtrlList in Report view.... I dun really understand ur question??
ASKER CERTIFIED SOLUTION
Avatar of atari
atari

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
void CMyListCtrl::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
{
....................................................
....................................................
this->ShowScrollBar (SB_HORZ,FALSE);
// or [this->SetScrollRange(SB_HORZ,0,0);]
}