Checks which items in a ListBox Control are selected
Checks which items in a ListBox Control are selected
Rate Checks which items in a ListBox Control are selected
(3(3 Vote))
' Open a new project and add the following
'
' Paste the code in the declarations of your form
'
' Add a ListBox named List1
' Change the Style property of List1 to "1 - Checkbox"
'
' Add a Command button named Command1
'
' Run the project
'
' For more snippets please visit http://www.coderhq.com
Private Sub Command1_Click()
For N = 0 To List1.ListCount - 1
If List1.Selected(N) = True Then
MsgBox List1.List(N) & " is checked"
End If
Next
End Sub
Private Sub Form_Load()
For N = 1 To 10
List1.AddItem "Item Number " & N
Next
End Sub
Checks which items in a ListBox Control are selected Comments
No comments yet — be the first to post one!
Post a Comment