Scroll Bars
C / C++ / MFC
5
Posts
3
Posters
0
Views
1
Watching
-
I to all, does anyone know how to use the LVS_EX_FLATSB style on a CListCtrl class? I can display the scrollbar, but I can do anything with it : it's disabled :confused: . Thanks to anyone. :) .
m_List.SetExtendedStyle(m_List.GetExtendedStyle()|LVS_EX_FLATSB); Jerzy
-
m_List.SetExtendedStyle(m_List.GetExtendedStyle()|LVS_EX_FLATSB); Jerzy
-
I agree you solution, but my problem is that the scrollbar (when displayed) is always disabled! Can you tell me why? Thanks. Massimo
-
a scroll bar in list box is disabled until it needs to be enabled, ie its enabled when there are mroe items in list box than the list box can show at one time.