Hello ajithrengaraj,
Try this:
-Add a combo box, text box and button to your form
-Double click the button, which should bring you to the code for the button press
-Add the following to the button press code:
ComboBox1.Items.Add(TextBox1.Text)
The items in a combo box can be referenced by an index (1,2,3,etc) or by item (text that you see). To delete one, you can do this:
' Remove the third item in the list
ComboBox1.Items.RemoveAt(2)
Or if you can remove an item by the specific text that is displayed:
ComboBox1.Items.Remove("This is a test")
Or if you want to remove the currently selected item:
ComboBox1.Items.RemoveAt(ComboBox1.SelectedIndex)