Checkbox: jump to next field when ticked

A

ancient_hilly

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?
 
F

fredg

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
 
Top