The Problem.
By using a form that's bound to a complex query, the records are not updatable. I thought that I could use a temporary table (stored in memory only) then update the permanent relevant tables as necessary. However, I haven't been able to find a way to do this.
The database is multiuser with various levels of security access, so I'm not sure that creating an actual table (not in memory only) that's deleted afterwards will work.
Basically, all I want to do is allow users to input data into a couple of fields that belong to different tables based on information gathered from several tables and queries.
Any suggested workarounds would be greatly appreciated.
By using a form that's bound to a complex query, the records are not updatable. I thought that I could use a temporary table (stored in memory only) then update the permanent relevant tables as necessary. However, I haven't been able to find a way to do this.
The database is multiuser with various levels of security access, so I'm not sure that creating an actual table (not in memory only) that's deleted afterwards will work.
Basically, all I want to do is allow users to input data into a couple of fields that belong to different tables based on information gathered from several tables and queries.
Any suggested workarounds would be greatly appreciated.