检查列表中的数字项

时间:2017-02-25 18:27:46

标签: vb.net visual-studio listbox

我正在使用listBox,当我点击按钮时,我需要显示一条错误消息(listBox上正好有30个项目)。但我不知道为什么这种情况不起作用。我选择了正确的方法来检查列表中的项目数。

这是代码。

event.preventDefault();

感谢您抽出时间解决我的问题并度过了充满代码的美好的一天=)

1 个答案:

答案 0 :(得分:0)

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    If ListBox1.Items.Count = 30 Then
        MsgBox("HEY")
    End If

End Sub