Hi Gang:
OK, I've spent a couple of hours searching Google and trying to figure this out by myself and I'm stuck. Any help would be greatly appreciated.
I have a very simple database, two tables. EmployeeInfo is one table, EmployeeReviews is the other table. Since one employee can have many reviews, there is a one to many relationship between the employee table and the reviews table, and they are related through a PayrollServiceID field, which is the primary key in the EmployeeInfo table and the foreign key in the EmployeeReviews table.
I have a form setup to scroll through the employees in the employee table. I also have an employee review form set up for the reviews table.
On the EmployeeInfo form is a button to add a new review for that particular employee. I want the button to open the EmployeeReview form in a manner that it is ready to add a new record, and I want the payroll service ID field on the EmployeeReview form to default to the value that was currently displaying in the PayrollServiceID field in the EmployeeInfo form when you pushed the button, so you don't have to retype this info.
This must be stupidly easy, but I can't figure it out. Thanks again in advance.