Hello I have a main form with 2 subforms.
When I click on a record in subform_1, I want to go to the the same record in subform_2.
Both forms are tied to the same table.
The unique ID is called Prop_ID.
I can find information on going to the last record etc, but not how to go the the specific record (in this instance for example Prop_id 15).
Thanks for any help or rethink of process.
Regards
Mark
When I click on a record in subform_1, I want to go to the the same record in subform_2.
Both forms are tied to the same table.
The unique ID is called Prop_ID.
I can find information on going to the last record etc, but not how to go the the specific record (in this instance for example Prop_id 15).
Code:
me.Parent.subform2.setfocus
Docmd.Gotorecord acDataForm, me.Parent.subform2, acgoto, me.prop_id
Thanks for any help or rethink of process.
Regards
Mark