CListCtrl: Row-Height

Hello!
I want to have different row-heights in a CListCtrl / Report-View (something like:
row1: height 30
row2: height 60
and so on).
How is it done? I only found the style LVS_OWNERDRAWFIXED, but nothing like LVS_OWNDERDRAWVARIABLE.
Any ideas?
[284 byte] By [martho] at [2007-11-18 10:00:28]
# 1 Re: CListCtrl: Row-Height
Have a look here ( http://www.dev-archive.com/listview/change_row_height.shtml).
TheRogue at 2007-11-11 2:36:26 >
# 2 Re: CListCtrl: Row-Height
Hi TheRogue, thanx for your reply. I found this article before, but it only let's you change the row-height off ALL rows. I need a different height for every row.
martho at 2007-11-11 2:37:23 >
# 3 Re: CListCtrl: Row-Height
Take a look at this control ( http://www.codeproject.com/listctrl/xlistctrl.asp)...although I am not sure whether it also supports changing the row height individually...
Andreas Masur at 2007-11-11 2:38:28 >
# 4 Re: CListCtrl: Row-Height
Originally posted by martho
Hi TheRogue, thanx for your reply. I found this article before, but it only let's you change the row-height off ALL rows. I need a different height for every row.

All listview items have the same height. You can change it for all but not one by one.
I use an owner draw list box to achieve it.
http://www.marcoera.com/chat.htm
puzzolino at 2007-11-11 2:39:30 >
# 5 Re: CListCtrl: Row-Height
Hi and thanx to all, I will try the suggested controls.
martho at 2007-11-11 2:40:34 >