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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top