RemoveItem Method
Object List Next Object
Defined By: ComboBox
Description:
Deletes a specified item from a ListBox, ComboBox, or FileListBox.
Declaration:
Function RemoveItem (ByVal index As Integer) As Integer
Details:
To remove individual items from a control's list, first name the control, then
enter the index number for the desired item. The index is an integer that represents the location of the item to remove within the
designated list. The list is zero-based, meaning the first item in a list is index=0.
To remove all items from the control's list at one time, use the Clear method.
See Also:
AddItem method, Clear method