I have a CListCtrl control in my MFC project, I don't want the horizontal ScrollBar to be shown at any time. But the vertical one needs to be shown normally. I used VS2010, any solutions?
相关问题
- Sorting 3 numbers without branching [closed]
- Multiple sockets for clients to connect to
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
You can do that by deriving your List control and having something like this:
Or if you don't want to derive your List control, you can do this: