Use the ComboBox control and add several values through the properties window in the Item part which allows you to add in the form of a collection. The question I have is how can I do so that when I start the application, the first option of the ComboBox is the first value that is added in the collection.
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Text = TextBox1.Text & " - " & ComboBox1.Text
End Sub
End Class