how to make a CListCtrl in report-mode without Columns ?
-
I need a CListCtrl derived class using owner-drawn report-mode but with '1 virtual column' that always stretches the entire viewable area. Any ideas ?
then you would have to draw the columnd AFAIK...it would make your a job a lot easier to use custom draw though... Cheers :) How do I print my voice mail?
-
then you would have to draw the columnd AFAIK...it would make your a job a lot easier to use custom draw though... Cheers :) How do I print my voice mail?
I'm ok with that, I already have a full-fledged Owner-Drawn CListCtrl. My only problem is that in a certain configuration I'd like to move to a 'non column-based' layout and maintain my owner-drawn capabilities, this doesn't seem to be supported in a standard manner.
-
I'm ok with that, I already have a full-fledged Owner-Drawn CListCtrl. My only problem is that in a certain configuration I'd like to move to a 'non column-based' layout and maintain my owner-drawn capabilities, this doesn't seem to be supported in a standard manner.
you could use InsertColumn only once and setting up the width of the control, it should use all the control's width and only in one column.
Written by: Rafael Fernández López.