Re: listview items colors
- Posted by tone.skoda at gmx.net Jun 16, 2002
- 554 views
This is a multi-part message in MIME format. ------=_NextPart_000_002D_01C21583.2E9B3D60 charset="iso-8859-2" Attached is a library for Win32Lib v0.57.7 with demo to create colored list view and tree view items. global routines are: set_tv_item_text_color set_tv_item_bk_color set_lv_item_text_color set_lv_item_bk_color For listviews you are able to set same color for the whole row, not every item in row with different color. I didn't know of setUserProperty() functions. With them it is much easier to create libraries for win32lib. I'm not sure if they're fast? And are you able to use ids of items for first parameter, or are only ids of windows valid? Also, I think they have some bugs, that's why background color of one item in treeview will be black which is not right. Here it goes: First of, why does this display 1 and not 10: defineUserProperty (Win, 1, 10) ?getUserProperty (Win, 1) Secondly, here must be bug: defineUserProperty (Win, 1, 10) setUserProperty (Win, 1, 10) ?getUserProperty (Win, 1) defineUserProperty (Win, 2, 20) ?getUserProperty (Win, 1) setUserProperty (Win, 2, 20) ?getUserProperty (Win, 1) It outputs this: {10} {1} {1} instead of this: {10} {10} {10} ------=_NextPart_000_002D_01C21583.2E9B3D60 Content-Type: application/x-compressed; name="TVLV_Items_Colors.zip"