XL98: How to Remove All Items from a ListBox or ComboBox (182696)



The information in this article applies to:

  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q182696

SUMMARY

This article illustrates how to remove all items from a ListBox or ComboBox control.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to 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 requirements. To build a sample UserForm that contains a ListBox control that is populated when the UserForm loads and then removes items in the control, follow these steps:

  1. Close and save any open workbooks, and then create a new workbook.
  2. On Sheet1, type the following values:

    A1: Alpha
    A2: Bravo
    A3: Charlie
    A4: Delta
    A5: Echo

  3. Start the Visual Basic Editor (press OPTION+F11).
  4. On the Insert menu, click UserForm.
  5. Double-click the UserForm to open the Code window for the UserForm.
  6. In the module, type the following code for the UserForm Initialize event:
           Private Sub UserForm_Initialize()
    
              ' Populate the ListBox.
              ListBox1.List = Worksheets("Sheet1").Range("A1:A5").Value
           End Sub
    
         This procedure populates ListBox1 when the UserForm is loaded.
    						
  7. Draw a ListBox control on the UserForm.
  8. Draw a CommandButton control on the UserForm.
  9. Double-click the CommandButton to open the Code window for the CommandButton.
  10. In the module, type the following code for the CommandButton Click event:
           Private Sub CommandButton1_Click()
               Dim i As Integer
    
               For i = 1 To ListBox1.ListCount
    
                   'Remove an item from the ListBox.
                   ListBox1.RemoveItem 0
    
               Next i
           End Sub
    
         This Visual Basic procedure removes all of the items from ListBox1.
    						
  11. Run the UserForm.
  12. Click the CommandButton.
All of the items are removed from ListBox1.

REFERENCES

For more information about using the ListBox control, click the Office Assistant in the Visual Basic Editor, type listbox control, click Search, and then click to view the "ListBox Control" topic.

For more information about using the RemoveItem method, click the Office Assistant in the Visual Basic Editor, type removeitem, click Search, and then click to view the "RemoveItem Method (VBA Forms 97)" topic.

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:

179216 OFF98: How to Use the Microsoft Office Installer Program


Modification Type:MinorLast Reviewed:10/10/2006
Keywords:kbdtacode kbhowto kbProgramming KB182696