Re: MFC: Invisible Scroll
You will be better off with a two-column list view control.
Re: MFC: Invisible Scroll
No, I tried CListCtrl. First of all, it has string length limitation of max 260 characters. Also, as I have long strings, when I scrolled to the right, the numbers on the left where not seen.
Re: MFC: Invisible Scroll
If you just want to hide the scroll bar, call CWnd’s function ShowScrollBar().
Re: MFC: Invisible Scroll
Quote:
Originally Posted by
VladimirF
If you just want to hide the scroll bar, call CWnd’s function ShowScrollBar().
Thank you for your answer. But because of some reason, I still see both vertical and horizontal scrollbars after I added this:
m_lstOldData.ShowScrollBar(SB_VERT, FALSE);