ok I have 2 listview's one countains a numeric list I Loaded to it and one is blank
so I want to transfer every word that is loaded on list1 to list2 but hexxed
VB Code:
ListView1.ListItems.Add = hex(ListView2.what here?)
Printable View
ok I have 2 listview's one countains a numeric list I Loaded to it and one is blank
so I want to transfer every word that is loaded on list1 to list2 but hexxed
VB Code:
ListView1.ListItems.Add = hex(ListView2.what here?)
You have to loop through the listview and add on at a time using its ListView2.ListItems(1).Text property. Then if you have any columns you need to add the text from each by referring to its SubItems property. Try a search on the Forums as there is alot of code for this already. :)