I have two forms that are set up as follows. The user can open the first form via the switchboard. The first form has a button which takes the user to the second form (this is the only way to get to the second form).
Anyhow, the user has the ability to select a person by their ID number on the first form. What I want is for that same person and all of their information to appear in the second form.
What happens now is that they are seemingly independent. I can select any ID on the first form and it has no affect on the second form. I tried using the following code:
Forms!frmSecond!ID.Value = Forms!frmFirstForm!ID.Value
but that did nothing, and I am guessing that this will not help populate the text boxes for that ID.
Any help is appreciated.
Anyhow, the user has the ability to select a person by their ID number on the first form. What I want is for that same person and all of their information to appear in the second form.
What happens now is that they are seemingly independent. I can select any ID on the first form and it has no affect on the second form. I tried using the following code:
Forms!frmSecond!ID.Value = Forms!frmFirstForm!ID.Value
but that did nothing, and I am guessing that this will not help populate the text boxes for that ID.
Any help is appreciated.