Sorry, I actually need to trap the keypress from a ComboBox. Where simply placing e.handled=true in the keypress works for a textbox-- does not work for a combobox.
Private Sub ComboBox1_KeyPress(ByVal sender As Object, _
ByVal e As System.Windows.Forms.KeyPressEventArgs) _
Handles ComboBox1.KeyPress
e.Handled = True
End Sub