Tambahkan Item ke ComboBox VB.Net

'Add items
ComboBox1.Items.Add(text)

'remove items
ComboBox1.Items.Remove(ComboBox1.SelectedItem)
Helpful Hawk