howdy,
how do I have a text box, that after entering text and hitting the ENTER key, my code runs.
example.

Private Sub Text2_KeyPress(KeyAscii As Integer)
dim num as integer
num = text2.text
If KeyAscii = 13 Then
label1.caption = num +5
End If
End Sub

I don't know if this makes sense but I bet someone can
easily figure it out.
thanks