Command Button

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
Back
Top