Search found 12 matches

by ufo973
09 Sep 2012, 23:37
Forum: ComboListBoxControls
Topic: How to add image to combo box from .res?
Replies: 3
Views: 6170

Re: How to add image to combo box from .res?

You need to load the image into an image list and then assign this image list to the control. The Events sample demonstrates how to assign an image list to the control. The Events sample demonstrates how to load images from a directory to the image list. hImgLst = ImageList_Create(16, 16, IIf(bComc...
by ufo973
09 Sep 2012, 16:14
Forum: ComboListBoxControls
Topic: How to add image to combo box from .res?
Replies: 3
Views: 6170

How to add image to combo box from .res?

How can i add an image to combo box from resource file? please provide an example code.
Thanks alot.
by ufo973
18 Aug 2012, 18:53
Forum: ExplorerListView
Topic: ListItems.Tag?
Replies: 8
Views: 8036

Re: ListItems.Tag?

Oh i got it now. thank you very much for explaining so well :)
by ufo973
18 Aug 2012, 17:54
Forum: ExplorerListView
Topic: ListItems.Tag?
Replies: 8
Views: 8036

Re: ListItems.Tag?

Additionally you need to handle the FreeItemData event (don't forget to activate it): Private Sub ExplorerListView1_FreeItemData(ByVal listItem As ExLVwLibUCtl.IListViewItem) If Not listItem Is Nothing Then FreeItemTag listItem End If End Sub What is this? and how to activate it? And into the Form'...
by ufo973
18 Aug 2012, 17:13
Forum: ExplorerListView
Topic: ListItems.Tag?
Replies: 8
Views: 8036

Re: ListItems.Tag?

I am sorry i don't want such a long and complicated process just to store some string data into listitem. Is there any alternative like adding a new column and hiding it from the user and use that column to add data to the listviewitem or something else? I was usually storing info regarding the item...
by ufo973
18 Aug 2012, 16:00
Forum: ExplorerListView
Topic: ListItems.Tag?
Replies: 8
Views: 8036

Re: ListItems.Tag?

In ItemData i can only add integer and long. but i can't add strings to itemData?
If you can give me an example please. reply fast please...
by ufo973
18 Aug 2012, 01:58
Forum: ExplorerListView
Topic: ListItems.Tag?
Replies: 8
Views: 8036

ListItems.Tag?

Hi, For somereasons i can't use global variables and i have to save some save variables into ListItems.Tag to retrieve later. but in ExplorerListView there is no such thing like ListItems.Tag? Is there any work around? like hiding the data in another column and hide it so it is not visible to the us...
by ufo973
10 Aug 2012, 22:35
Forum: ExplorerListView
Topic: Click/Double Click Event
Replies: 5
Views: 5587

Re: Click/Double Click Event

I understand that most events are disabled by default. But how to enable the double click event please? I am a noob so sorry for lots of questions.
by ufo973
10 Aug 2012, 22:19
Forum: ExplorerListView
Topic: Click/Double Click Event
Replies: 5
Views: 5587

Re: Click/Double Click Event

I think the value is already in the (ByVal listItem As ExLVwLibUCtl.IListViewItem)

So now my question is...
How to popup a msgbox when an item is double clicked in the listview?
Please help me. Thanx
by ufo973
10 Aug 2012, 21:45
Forum: ExplorerListView
Topic: Click/Double Click Event
Replies: 5
Views: 5587

Click/Double Click Event

Hi Everybody! i can't make it to display a msgbox when clicking/double clicking on a listeview item? My code... Private Sub listview_DblClick(ByVal listItem As ExLVwLibUCtl.IListViewItem, ByVal listSubItem As ExLVwLibUCtl.IListViewSubItem, ByVal button As Integer, ByVal shift As Integer, ByVal x As ...
by ufo973
09 Aug 2012, 23:44
Forum: ExplorerListView
Topic: How to remove selected item
Replies: 4
Views: 6201

How to remove selected item

there is nothing like explorerlistview.selecteditem.remove

so how can i remove/edit the selected item?
by ufo973
09 Aug 2012, 22:48
Forum: ExplorerListView
Topic: Need sample code to display unicode text in ExplorerListView
Replies: 3
Views: 4792

Re: Need sample code to display unicode text in ExplorerList

I installed the sample project but they are so complicated i couldn't get anything from it.

I want to simply show some unicode text in the listview someone please help me........