hi! ok i have a search engine. it works fine. only thing is that when i write something in the textbos i must click the button 'Search' with my mouse for it to start searching. what i want to do is write something to the textbox and hit the 'Enter' key and then start searching.
i searched the forum and i only found this
Private Sub TextBox1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
If e.KeyCode = Keys.Return Then
keyPressed()
End If
End Sub
Sub keyPressed()
MsgBox("Enter key Pressed.")
End Sub
but i didn't undertand it much... :S
any help would be welcome!! thanks!!!