Hi,
I really need line with this I can't figure this out . I am looping through items in a list view box, I am then adding them to a string. I need each new line in the listview box to be a new line in the string. I will then add this string an access database.
But I can't get it to skip a line in the string
This is the code
For Each lvItem As ListViewItem In lstVParts.Items
Dim i As Integer
AllParts = AllParts & "+" & lstVParts.Items.Item(0 + i).SubItems(0).Text & " - " & lstVParts.Items.Item(0 + i).SubItems(1).Text & " - " & lstVParts.Items.Item(0 + i).SubItems(2).Text & vbCrLf
i = i + 1
Next
Any ideas
Thanks
James