I have a parent form with two subforms, one of which contains additional subform.
I would like the user to be able to tab through the whole form. My idea is to set a button as the last tab index on a subform that will set focus (when it recieves focus) to the target subform. Then i will make the button invisable.
Form organization
- Parent Form
- Subform1 <--- buton location
- subform2
- sub-subform <--- button target
I want to set the focus from subform 1 to sub-subform using button
this is the coding I have in the buttons (on focus) event:
=[Forms]![Parent Form]![Subform2].[Form]![sub-subform].[Form]![sub-subform control].SetFocus
No error... just doesnt do anything.