Attached is a database used for logging users in and importing files scanned.
Currently, the Computers_ID is updated in t_Runs.Computers_ID, thereby showing what machine was used for each run.
I would like more details recorded when the runs are undertaken.
My preference is to swap out Computers_ID with t_User_Logs.User_Logs_ID as it also shows the WIN User, and current logged in user in addition to the computer name.
The relationships table would be revised to show t_User_Logs as a one to many with t_Runs.
The existing relationship between t_Runs and t_Computers would be deleted. Instead, we would create a one_to_one relationship with t_User_Logs.User_Logs_ID joined to t_Runs.User_logs_ID in a one to many relationship. t_Computers.Computers_ID would be in a one to one relationship with t_User_Logs.txt_Machine_Name.
It is still required to check and see if the computer name is already entered or not in t_Computers.
1. After changing the relationships so that User_Logs_ID is where t_Computers was, how do I add the User_Logs_ID to the t_Runs when the Command240 "Get Scan Details" button is pressed on the Import Files Form?
2. Fix the relationship change in the VBA for the t_Computers ?
Thanks for your help !
Bill