Tab out of header

  • Thread starter noe1818 via AccessMonster.com
  • Start date
N

noe1818 via AccessMonster.com

I have a "add record" button in my form header (looks nicer), when I press
tab it only goes to objects in the header. How can I have it where the user
presses the "add record" button and either has it go directly to the details
section, or when they press tab after hitting the "add record button" it goes
to the details section? I'm not good at all with code so being specific would
be a great help?

Noe
 
B

Boyd Trimmell aka HiTechCoach via AccessMonster.co

A simple solution would be to add a line to the "Add record" button code of

DoCmd.GoToControl "YourControlName"

Where "YourControlName" is the name of the first control the user will
normally start their data entry.

I normally add this to all my "Add Record" command buttons.

Hope this helps ...
 

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

Top