Hello,

In case Curlywink's suggestion doesn't work for you, you can try adding the following code in the textbox's keypress event:
Code:
If KeyAscii = vbKeyReturn then
   KeyAscii = 0  'Eliminates Beep
   Call cmdEnter_Click
End if
Hope this helps.

JMik