I have 3 tables that I will use as forms. I wanted to display the main table including 2 buttons that would open the other 2 forms.
On Table 1 I have a EmployeeID field, set to Autonumber, Indexed (no duplicates).
One Table 2 (which would correspond to the first button) I have more information I want filed UNDER the EmployeeID in question. And on Table 3, there is more information that I also wanted filed under the EmployeeID in question.
Both table 2 and table 3 have an EmployeeID field as well, set to Number, not indexed.
So, when you press the button it would open up the records information that the main form is on.
Someone from here (M8KWR) told me to add this line (below) to the code. It does open up the forms when I click the button, but it does not save the information
stLinkCriteria = "[EmployeeID]=" & Me![EmployeeID]
I have a One-to-One relationship set-up between the main Employee table and the other 2. Not sure how to set up the "Join Type" or to check the Referential Integrity box.
SOMEONE PLEASE HELP...
On Table 1 I have a EmployeeID field, set to Autonumber, Indexed (no duplicates).
One Table 2 (which would correspond to the first button) I have more information I want filed UNDER the EmployeeID in question. And on Table 3, there is more information that I also wanted filed under the EmployeeID in question.
Both table 2 and table 3 have an EmployeeID field as well, set to Number, not indexed.
So, when you press the button it would open up the records information that the main form is on.
Someone from here (M8KWR) told me to add this line (below) to the code. It does open up the forms when I click the button, but it does not save the information
stLinkCriteria = "[EmployeeID]=" & Me![EmployeeID]
I have a One-to-One relationship set-up between the main Employee table and the other 2. Not sure how to set up the "Join Type" or to check the Referential Integrity box.
SOMEONE PLEASE HELP...