I've created a button in formA which updates the table in question, but i'd like to have an option to update and open the same record in form2
(different datafields are being entered so i don't think the
approach will work).
Is there anyway i can use the .bookmark property to open the new form?
The primary key is autogenerated on update, but as they're not a part of the input(1) or update(2) forms I'd like to avoid using it if possible
(different datafields are being entered so i don't think the
Code:
DoCmd.openForm "form2", , , "[field]=" & Me.[field]
Is there anyway i can use the .bookmark property to open the new form?
The primary key is autogenerated on update, but as they're not a part of the input(1) or update(2) forms I'd like to avoid using it if possible
Comment