How do you prevent user input in a ComboBox so that only one of the items in the defined list can be selected by the user?
Private Sub ComboBox4_KeyPress(sender As Object, e As KeyPressEventArgs) Handles ComboBox4.KeyPress e.keyChar = string.empty End Sub