您好我想在我的lisview的最后一栏插入数据,我该怎么做?
我尝试使用此代码ListView1.SelectedItems(0) = "yes"
或ListView1.SelectedIndices.Add("Yes")
实际上我想要的是在初始插入后更新最后一列以及如何在列表视图的开头添加项目。
答案 0 :(得分:1)
使用以下代码解决
Dim index As Integer
If ListView1.SelectedItems.Count > 0 Then
index = ListView1.SelectedIndices(0)
listOfItems(index).SubItems(3).Text = "Qualified"
End If