I have a question, lets say i have the following
VB Code:
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If e.KeyChar = "=" Then MsgBox("You Pressed "="") End If End Sub
how can i do the same thing with enter? if anyone knows how to do this, i would greatly appreciate it.
thanks,




Reply With Quote