Hey...
Is there a way to call the button click event.

Say i have a textbox and they press enter how can i make enter click a button.


Code:
 Private Sub txtURL_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtURL.KeyPress

        If Asc(e.KeyChar()) = 13 Then I NEED TO KNOW WHAT TO DO NOW TO CLICK A BUTTON ! 



    End Sub