You mean ComboBox?
ComboBox1.Items .Clear() removes all items and
ComboBox1.Items .RemoveAt(0) removes first item and in general
If index>= 0 AndAlso index < ComboBox1.Items .Count Then
ComboBox1.Items .RemoveAt(index )
End If
removes an item at the position "index".
Comment