Need4Speed
Member
- Joined
- Apr 4, 2007
- Messages
- 8
- Programming Experience
- Beginner
Thx for all the help 
the first cell of the row in the listview item stays empty and strLastName ends up in the second cell. How come?

VB.NET:
Dim NewItem As New ListViewItem
'NewItem.SubItems.Clear()
NewItem.SubItems.Add(strLastName)
NewItem.SubItems.Add(strFirstName)
NewItem.SubItems.Add(strStreet)
lvResults.Items.Add(NewItem)
the first cell of the row in the listview item stays empty and strLastName ends up in the second cell. How come?