vb에서 쓰던 코드인데 vb.net에서는 어떻게 쓰나요?
볼수록매력
2023.04.01
Dim strTxt As String
strTxt = 데이터1|데이터2|데이터3|1|데이터14|데이터5|데이터6|데이터7|데이터8|데이터9|데이터9|데이터10|데이터11|데이터12|데이터13|데이터14|데이터15|데이터16|데이터17|데이터18|데이터
Dim arrTxt() As String
Dim a As Integer, b As Integer
Dim objList As ListItem
arrTxt = Split(strTxt, |)
For a = 0 To UBound(arrTxt) Step 6
Set objList = ListView1.ListItems.Add(, , arrTxt(a))
For b = 1 To 5
If a + b = UBound(arrTxt) Then
objList.SubItems(b) = arrTxt(a + b)
End If
Next
Next
-
미련곰탱이
리스트아이템쪽만 일부 수정하면 나머지는 수정할 필요 없음.