I have a form with three tabs. The first tab has an unbound combo box where the user will choose an employee. On the second tab is a datasheet showing that employee's projects -- this is working properly using code I found on this forum that runs on the AfterUpdate event for the combo box.
On the third tab, I want to show the details of the project. I want the user to select a record on tab 2, then click tab 3 to see the details. I can't seem to get this to work. Here are my questions:
1. I assume this should be an event that runs when the user selects the record on tab 2. There is no AfterUpdate event, so do I use OnClick?
2. I don't know how to code this. I tried to mimic the code that works for tab 2, but I don't understand how to refer to the selected record on tab 2. (The field that links the project table to the details table is DeliverableID.)
Thanks for any help.