Class for using new features in listview control
Posted
by Rui Santos
on August 6th, 1998
Class for using new features in listview control
This class was contributed by Rui Santos. The CListCtrlEx class allows you to easily use the new features in the listview control that comes with IE4. You could also use the Technology Preview from Microsoft but if it is just the listview control you are after you should definitely look into this class.

Comments
Dude you need a DELL, i mean a good example.
Posted by Legacy on 06/27/2002 12:00amOriginally posted by: Pharaoh
???
Reply
This Sucks
Posted by Legacy on 04/05/2002 12:00amOriginally posted by: Bird Man
ReplyExamples of class?
Posted by Legacy on 09/07/2001 12:00amOriginally posted by: Barto
Hi, does anyone have any examples of code where this class is implemented?? much appreciated, thanx
ReplyCListCtrl background image problem solution
Posted by Legacy on 06/11/2001 12:00amOriginally posted by: Nikolay Iliev
Hi,
list view currently does not support background images supplied as HBITMAP handles. Only way to display background image is to pass the URL, which refer to a local file (e.g. "file://D:\\WINNT\\image.bmp"). You need also to set text background color to CLR_NONE to have a image displayed properly.
MFC Example:
----------------------------------------------------m_list.SetTextBkColor(CLR_NONE);
LVBKIMAGE bk;
bk.ulFlags = LVBKIF_SOURCE_URL | LVBKIF_STYLE_NORMAL;
bk.hbm = NULL;
bk.pszImage = "file://D:\\WINNT\\image.bmp";
bk.cchImageMax = strlen(bk.pszImage);
bk.xOffsetPercent = 50; // centered
bk.yOffsetPercent = 50; // centered
m_list.SetBkImage(&bk);
----------------------------------------------------
Regards,
ReplyNI
Anyone have examples of this class in action?
Posted by Legacy on 07/23/1999 12:00amOriginally posted by: Volkan
Title says it all.
Thanks,
-V-
Reply