S
SandyR
I have a DB with 3 files:
TRADE NAMES
id - autonumber
fields with Trade Name Info
OWNERS
ID- autonumber
fields with Owner Info
LINK_TN_OWN
ID -autonumber
ID from Trade Name table
ID from owner table
fields pertaining to the Trade Name/Owner combination
Whenever a new trade name is created, at least one owner must be entered.
The users must be able to do the following:
enter new trade names and corresponding owner(s)
add new owners to existing trade names
modify either trade names, owners, or the info specific to the combination.
I have set up a form on the trade name table with a subform to show the
owners. The record source for the owners is a query like this:
Select [link_tn_own].[file_date], [link_tn_own].[note] ,
[owners].owner_name], ...
FROM [OWNERS] INNER JOIN [Link_tn_own] on [owners].[id] =
[link_tn_own].O_ID
This works perfectly for displaying existing records, but it doesn't allow
me to add owner records. I don't know how to set up the screen so that I can
add new owners and link records.
Can anyone give me some pointers?
Thanks!
TRADE NAMES
id - autonumber
fields with Trade Name Info
OWNERS
ID- autonumber
fields with Owner Info
LINK_TN_OWN
ID -autonumber
ID from Trade Name table
ID from owner table
fields pertaining to the Trade Name/Owner combination
Whenever a new trade name is created, at least one owner must be entered.
The users must be able to do the following:
enter new trade names and corresponding owner(s)
add new owners to existing trade names
modify either trade names, owners, or the info specific to the combination.
I have set up a form on the trade name table with a subform to show the
owners. The record source for the owners is a query like this:
Select [link_tn_own].[file_date], [link_tn_own].[note] ,
[owners].owner_name], ...
FROM [OWNERS] INNER JOIN [Link_tn_own] on [owners].[id] =
[link_tn_own].O_ID
This works perfectly for displaying existing records, but it doesn't allow
me to add owner records. I don't know how to set up the screen so that I can
add new owners and link records.
Can anyone give me some pointers?
Thanks!