Checkbox: jump to next field when ticked

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

Guest

Hello, When a checkbox is ticked I would like the focus to jump to the next
field in the tab order automatically. Is this possible, please?
 
Hello, When a checkbox is ticked I would like the focus to jump to the next
field in the tab order automatically. Is this possible, please?

Code the CheckBox AfterUpdate event:
Me!NextControlName.SetFocus
 
Back
Top