I have a search form which you can enter "MemberID" and/or "Contact No" and it will open a form with the related record.
Problem being that you cannot move to any other records on this opened form, you have to either re-search or open the form from a different part of the program to be able to move through the records.
The code I am using is
just for the MemberID at the moment.
Thanks in advance
Mark
Problem being that you cannot move to any other records on this opened form, you have to either re-search or open the form from a different part of the program to be able to move through the records.
The code I am using is
Code:
DoCmd.OpenForm "EmpMembershipForm", , , "MemberID = " & Me.MemberID
Thanks in advance
Mark