Article ID: 213759 - Last Review: November 23, 2006 - Revision: 3.5 XL2000: How to Determine Which Items Are Selected in a List BoxThis article was previously published under Q213759 On This PageSUMMARY
This article explains how to retrieve selected items from a list box control that allows the user to select multiple values.
MORE INFORMATION
In a UserForm, when you set the MultiSelect property to 1 -fmMultiSelectMulti for a list box control, the user can select any number of items from a list. For example, if a list contains Alpha, Bravo, and Charlie, the user can select any, none, or all of the items.
To determine which items are selected, use the Selected property of the list box. The Selected property of a list box is an array of values in which each value is either True (if the item is selected) or False (if the item is not selected). For example, if the list contains 1, 2, 3, and 4, and 2 and 3 are selected, the Selected property is the following array: False, True, True, False
This is true because the first item (1) is not selected, the second and
third items (2 and 3) are selected, and the fourth item (4) is not selected.
Sample Visual Basic ProcedureMicrosoft 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 Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites: Microsoft Certified Partners - https://partner.microsoft.com/global/30000104 (https://partner.microsoft.com/global/30000104) Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice (http://support.microsoft.com/gp/advisoryservice) For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS (http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms) The steps in the following example read the array for the Selected property:
REFERENCESFor more information about list boxes, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type listbox in the Office Assistant or the Answer Wizard, and then click Search to view the topic. For more information about the Selection property, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type selection property in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
| Article Translations
|
Back to the top
