I'm trying to set the focus on a field in the subform of a subform.
This works to set the focus on a field in the first subform:
There is a subform called "frm_Revisions" on the subform "frm_SubForm" and I want to set the focus on a field in "frm_Revisions". For example:
But it just won't work. Any help on this would be much appreciated.
Thanks,
TwoOdd
--------------
Good judgment comes from experience, and experience comes from bad judgment.
-- Barry LePatner
This works to set the focus on a field in the first subform:
Code:
Forms!frm_Main!frm_SubForm.Form.fld_ID.SetFocus
There is a subform called "frm_Revisions" on the subform "frm_SubForm" and I want to set the focus on a field in "frm_Revisions". For example:
Code:
Forms!frm_Main!frm_SubForm!frm_Revisions.Form.fld_RevID.SetFocus
But it just won't work. Any help on this would be much appreciated.
Thanks,
TwoOdd
--------------
Good judgment comes from experience, and experience comes from bad judgment.
-- Barry LePatner