Hi DougHomeOffice,
I have a line in one of my Access modules like this:
Function Database_Options()
Application.SetOption "Move After Enter", 1
' where 0 stays put and 1 moves after enter
End Function
If you run this function from an Autoexec macro, it will set the default enter key behaviour for the whole database each time it opens.
Some other related options you can set in code are:
Application.SetOption "Arrow Key Behavior", 1
Application.SetOption "Behavior Entering Field", 1
Application.SetOption "Cursor Stops at First/Last Field", 1
The last one here is especially useful in stopping the last enter press on the last field from advancing to the next record (makes it stay on same record but go back to first field). Hope this is what you wanted, Cheers jobo123