Software Engineer, Equity Strategist, Polymath.
Posts tagged Prevent Adding Items to combobox
Prevent Adding Items to combobox
015 years
by Ray Tawil
in Visual Basic.Net
Private Sub ComboBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs)
e.KeyChar = ChrW(0)
End Sub