XL: VB Code for Working with List Box Items in a Dialog Box

Last reviewed: February 20, 1998
Article ID: Q126794
The information in this article applies to:
  • Microsoft Excel for Windows, versions 5.0, 5.0c
  • Microsoft Excel for Windows NT, version 5.0
  • Microsoft Excel for Windows 95, versions 7.0, 7.0a
  • Microsoft Excel 97 for Windows
  • Microsoft Excel for the Macintosh, version 5.0, 5.0a
  • Microsoft Excel 98 Macintosh Edition

SUMMARY

In Microsoft Excel, you can use the list box control on a dialog sheet to present a user with a list of items that can be scrolled and selected. You can use Visual Basic, Applications Edition code to add items to (populate) this list and to retrieve items from it.

The following Visual Basic macro code examples demonstrate a few of the more common tasks that you may want to perform when you add items to or retrieve data from a list box.

MORE INFORMATION

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 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.asp

SAMPLE VISUAL BASIC CODE TO ADD ITEMS TO A LIST

To populate a list box with data from cells on a worksheet

   Sub Example1()
      DialogSheets(1).ListBoxes(1).ListFillRange = "MyWorksheet!A2:A15"
   End Sub

NOTE: "MyWorksheet" is the name of the worksheet that contains the data you would like placed in the list box.

To populate a list box using an array

   Sub Example2()
      DialogSheets(1).ListBoxes(1).List = _
         Array("Mon", "Tue", "Wed", "Thu", "Fri")
   End Sub

To populate the list box with data from a horizontal array of cells

Ordinarily, list boxes are populated with a column of data. If you need to populate a list box with a row of data, use this code:

   Sub Example3()
      DialogSheets(1).ListBoxes(1).List = _
         Worksheets("Sheet1").Range("A1:F1")
   End Sub

NOTE: "Sheet1" is the worksheet that contains your data.

SAMPLE VISUAL BASIC CODE TO REMOVE ITEMS FROM A LIST

To clear all items in a list box with RemoveAllItems

   Sub Example4()
      DialogSheets(1).ListBoxes(1).RemoveAllItems
   End Sub

For additional information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q105877
   TITLE     : XL: RemoveItem and RemoveAllItems Methods May Not Work

SAMPLE VISUAL BASIC CODE TO RETRIEVE ITEMS FROM A LIST

To retrieve the selected item in a single-select list box

   Sub Example5()

      Dim theContents As String

      ' Define a With statement to optimize code.
      With DialogSheets(1).ListBoxes(1)

         ' Define theContents equal to the selected item.
         theContents = .List(.ListIndex)

         ' End the With Statement.
      End With

      ' Display the selected item.
      MsgBox theContents

   End Sub

For additional information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q124214
   TITLE     : XL: Returning a Value from a List Box in Visual Basic

To retrieve the selected items from a multi-select list box

   Sub Example6()

      Dim LTemp As Variant
      Dim LItem As Variant
      Dim Counter As Integer
      Dim CurList as ListBox

      ' Set an object name for easy referencing of the list box.
      Set CurList = DialogSheets(1).ListBoxes(1)

      ' Put the Selected array into the variable LTemp.
      LTemp = CurList.Selected

      ' Initialize a Counter variable.
      Counter = 1

      ' Iterate through the loop once for each item in the array.
      For Each LItem In LTemp

         ' If the value of the current item is True...
         If LItem = True Then

            ' Show a message box indicating the item is selected.
            MsgBox CurList.List(Counter) & " is selected."

         End If

         ' Increment the Counter to get next selected item.
         Counter = Counter + 1
      Next

   End Sub

For additional information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q111564
   TITLE     : XL: Determining Which Items Are Selected in a List Box

To retrieve all items in a list box using a For-Each statement

   Sub Example7()

      Dim mtemp As Object
      Dim myList
      Dim LItem As Variant

      ' Set mtemp as a ListBox object.
      Set mtemp = DialogSheets(1).ListBoxes(1)

      ' Set mtemp = myList.
      myList = mtemp.List

      ' Create a For-Each Loop.
      For Each LItem In myList

         ' Display the selected item.
         MsgBox Litem

      Next

   End Sub

REFERENCES

"Visual Basic User's Guide," pages 226, 231


Additional query words: 7.00 5.00 5.00a 5.00c Dialogs ListBox XL98
XL97 XL7 XL5
Keywords : kbcode kbprg PgmCtrlsStd PgmHowto
Version : WINDOWS:5.0,5.0c,7.0; MACINTOSH:5.0,5.0a
Platform : MACINTOSH WINDOWS
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 20, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.