it's a search listview and i want to retrieve the data
all i want is to populate a data in listview per each row
please help...
here's my sample code
Dim objDataReader As OleDbDataReader
objDataReader = objCommand.ExecuteReader
If objDataReader.HasRows = 0 Then
txtCostCenter.Text = ""
txtDivision.Text = ""
End If
While objDataReader.Read
Dim lvwItem As ListViewItem
With lvwItem
For Each lvwItem In lstLicense.Items
lvwItem.SubItems.Add(16).Text = (objDataReader("Division"))
Next
End With
End While
End Sub