How can disable the Enter key totally in form?

Pooya.Alipour

Registered User.
Local time
Today, 05:56
Joined
Oct 9, 2011
Messages
12
Hi
I want to disable enter key in a form totally. I don't want it to pass from a field to another.
 
Try this

In the Form_Load Event:

Application.SetOption "Move After Enter", 0

Then to change back on Form_Close

Application.SetOption "Move After Enter", 1
 

Users who are viewing this thread

Back
Top Bottom