0

如何检查列表框是否被选中

列表1

checkbox item

checkbox   Raja
checkbox   Raman
checkbox   Vijay

从 list1 我想检查复选框是否被选中

如何在vb6中编写代码

需要 Vb6 代码帮助

4

1 回答 1

6

这是代码:

Private Sub Command1_Click()
    If List1.SelCount > 0 Then
        MsgBox "Some items are selected"
    Else
        MsgBox "Sorry,no items are selected !"
    End If
End Sub

编辑

如果您想找出选定的项目,您可以这样做:

Private Sub Command2_Click()
    Dim i As Long

    For i = 0 To List1.ListCount - 1    'loop through the items in the ListBox
        If List1.Selected(i) = True Then    ' if the item is selected(checked)
            MsgBox List1.List(i)        ' display the item
        End If
    Next
End Sub
于 2012-07-16T07:32:19.743 回答