Tab Order In a Continuous FormUpload ImagesLink Brent Davis 2 months ago
When tabbing through a record on a continuous form I would like to be able to go from the detail section on a record to the form footer section for that particular record. I have a notes field in the form footer and would like to tab to it after the detail section is completed. Currently I have to click on the notes section to get focus in the notes field. I appreciate any assistance. Thanks.
Kevin Robertson 2 months ago
Try adding the code below to the Key_Down Event of the last control in the Tab Order of the Detail Section.
If KeyCode = 9 Then Notes.SetFocus
Brent Davis 2 months ago
Thanks Kevin! Worked perfectly!!!!
Kevin Robertson 2 months ago
You're welcome.
Sorry, only students may add comments.
Click here for more
information on how you can set up an account.