如何检查listview子项是空的

时间:2013-06-15 03:15:02

标签: vb.net

在我的窗口应用程序中,我有4列的列表视图。我想检查第3个子项是否为空或所有行。如果它是空的我需要提示error.how检查子项3不没有任何价值观?

1 个答案:

答案 0 :(得分:0)

这样的事情应该有效:

    For Each Itm As ListViewItem In ListView1.Items
        'The orelse shortcut really works well here, since if the subitem doesn't
        'exist it won't check if the text is empty
        If Itm.SubItems.Count < 4 OrElse Itm.SubItems(3).Text = "" Then
            MsgBox(Itm.Text)
        End If
    Next

这将检查第四列的子项是否存在,或者它是否存在,它是否具有值。更改子项索引以选择其他列。