D
drolfe
I have two tables, modified by a single form. I have a main database
that holds the title information for the form, in that database i have
10 keys that point to the other database to pull that record and
present it on the form. My problem is that when I add a new record to
the first database, i need it to first populate the next 10 records in
my other database, then also update my main database with those record
numbers in the keys
Here is a mockup of the two tables
Main Table:
<pre>
UserID | File1 | File2 | File3 | File4
----------------------------------------------------
1 | 1 | 2 | 3 | 4
2 | 5 | 6 | 7 | 8
File Table:
FileID | UserID | Data.....
---------------------------------------
1 | 1 | blah blah blah
2 | 1 | ........
............
5 | 2 | etc...
6 | 2 | etc...
</pre>
now my problem again is when I add a new record to the main table DB, i
need it to cross reference both tables updating them simultaneously
any ideas??
that holds the title information for the form, in that database i have
10 keys that point to the other database to pull that record and
present it on the form. My problem is that when I add a new record to
the first database, i need it to first populate the next 10 records in
my other database, then also update my main database with those record
numbers in the keys
Here is a mockup of the two tables
Main Table:
<pre>
UserID | File1 | File2 | File3 | File4
----------------------------------------------------
1 | 1 | 2 | 3 | 4
2 | 5 | 6 | 7 | 8
File Table:
FileID | UserID | Data.....
---------------------------------------
1 | 1 | blah blah blah
2 | 1 | ........
............
5 | 2 | etc...
6 | 2 | etc...
</pre>
now my problem again is when I add a new record to the main table DB, i
need it to cross reference both tables updating them simultaneously
any ideas??