vote up 1 vote down star

How do you prevent a user from resizing the column width of a clistctrl (report view)?

flag

2 Answers

vote up 0 vote down

You'll have to override theOnNotify method to catch header's TRACK messages.
Here is a solution: Prevent column resizing

Update: on newer MFC versions and on Vista, there is the LVCFMT_FIXED_WIDTH format flag.
You can set that flag when you insert the column: see LVCOLUMN Structure

LVCFMT_FIXED_WIDTH
Version 6.00 and Windows Vista. Can't resize the column; same as HDF_FIXEDWIDTH.

link|flag
vote up 0 vote down

i get the following error when I used the code snippet at http://www.codeguru.com/cpp/controls/listview/columns/article.php/c1065:

error C2248: 'OnNotify' : cannot access protected member declared in class 'CWnd'

HELP!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.