Hey guys I have a listview called lvwfound and I was wondering, how do I click on a item that added to the list view to a list box thing.
The code that adds thigns to the list view is
VB Code:
Dim i As Integer Dim item As String Dim iResponce As Integer i = Me.lvwFound.ListItems.Count 'list count For i = 0 To i - 1 'MsgBox Me.lvwFound.ListItems(i + 1) item = Me.lvwFound.ListItems(i + 1) '
Would i replace lvwfound with list4 ? Also i there a click event for a listview so only when I click on items in a listview it will add that item to a listbox?
Thank you.




Reply With Quote