XL98: How to Determine Which Items Are Selected in a ListBoxLast reviewed: March 16, 1998Article ID: Q182491 |
The information in this article applies to:
SUMMARYThis article explains how to retrieve selected items from a ListBox control that allows you to select multiple values.
MORE INFORMATIONIn a UserForm, when you set the MultiSelect property to "1 - fmMultiSelectMulti" (without the quotation marks) for a ListBox control, you can choose any number of items from a list. For example, if a list contains Alpha, Bravo, and Charlie, you 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, FalseThis 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 engineers 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 the Microsoft fee-based consulting line at (800) 936-5200. 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/default.aspThe steps in the following example read the array for the Selected property:
REFERENCESFor more information about list boxes, click the Office Assistant, type listbox," click Search, and then click to view "ListBox Control." NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If Microsoft Help is not installed on your computer, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q179216 TITLE : OFF98: How to Use the Microsoft Office Installer Program |
Additional query words: XL97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |