WD: How to Determine Which Items Are Selected in a List BoxID: Q198967
|
This article explains how to retrieve selected items from a ListBox control that allows you to select multiple values.
Microsoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
False, True, True, False
Private Sub UserForm_Initialize()
'Creates and assigns the Array to the Listbox when the form loads.
Dim mylist As Variant
mylist = Array("Sun.", "Mon.", "Tue.", "Wed.", "Thu.", "Fri.", _
"Sat.")
ListBox1.List = mylist
End Sub
Private Sub CommandButton1_Click()
'Displays individual selections one at a time.
For x = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(x) = True Then
MsgBox ListBox1.List(x)
End If
Next x
Unload Me
End Sub
Private Sub CommandButton2_Click()
'Displays all the items in one message box
Dim msg As String
For x = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(x) = True Then
msg = msg & ListBox1.List(x) & vbCrLf
End If
Next x
MsgBox "You have selected " & vbCrLf & msg
Unload Me
'Uncomment the following two line to insert the variable into a
'document.
'Documents.Add
'Selection.TypeText Text:= msg
End Sub
Q173707 OFF97: How to Run Sample Code from Knowledge Base Articles
Additional query words: vba vb
Keywords : kbdta
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: May 27, 1999