Command Button

R

Roger Bell

I have a Command Button on a Form that takes the user to the Next Record.
When this button is clicked I would like the cursor to be positioned in a
specific field. Can code be added to the existing "On Click" Event procedure
for this to occur?
Thanks for any help
 
T

tina

yes. try

DoCmd.RunCommand acCmdRecordsGoToNext
Me!ControlName.SetFocus

replace ControlName with the name of the control you want the cursor to
"land" in, of course.

hth
 
Top