M
mewins
I have a database that was working fine but now you can't add new records to
it. I have a main form that shows information regarding awards and is linked
by the funder's name to tblFundInfo. I run the form off of a query (code
below):
SELECT tblMainAwardInfo.AwardName, tblMainAwardInfo.FundName,
tblMainAwardInfo.TypeAward, tblMainAwardInfo.Notes,
tblMainAwardInfo.AwardLocat, tblMainAwardInfo.Dept, tblMainAwardInfo.AwardID,
tblFundInfo.FundType
FROM tblFundInfo INNER JOIN tblMainAwardInfo ON tblFundInfo.FundName =
tblMainAwardInfo.FundName
ORDER BY tblMainAwardInfo.AwardName;
The query contains everything in tblMainAwardInfo and just the funder's name
from tblFundInfo. Everything was working fine last week and now for no
apparent reason new records can't be added in the form. New records can be
added directly into the table, but it's annoying. The form is set to allow
additions/edits/etc, but if/when I run the query behind it, it's no longer
updatable. If I recreate the query, I can't update that either. Both of the
tables seem ok, and nothing has changed as far as I know (both still have ID
numbers that autonumber and are still marked as the primary keys).
Any ideas on how to fix this? Thanks!
it. I have a main form that shows information regarding awards and is linked
by the funder's name to tblFundInfo. I run the form off of a query (code
below):
SELECT tblMainAwardInfo.AwardName, tblMainAwardInfo.FundName,
tblMainAwardInfo.TypeAward, tblMainAwardInfo.Notes,
tblMainAwardInfo.AwardLocat, tblMainAwardInfo.Dept, tblMainAwardInfo.AwardID,
tblFundInfo.FundType
FROM tblFundInfo INNER JOIN tblMainAwardInfo ON tblFundInfo.FundName =
tblMainAwardInfo.FundName
ORDER BY tblMainAwardInfo.AwardName;
The query contains everything in tblMainAwardInfo and just the funder's name
from tblFundInfo. Everything was working fine last week and now for no
apparent reason new records can't be added in the form. New records can be
added directly into the table, but it's annoying. The form is set to allow
additions/edits/etc, but if/when I run the query behind it, it's no longer
updatable. If I recreate the query, I can't update that either. Both of the
tables seem ok, and nothing has changed as far as I know (both still have ID
numbers that autonumber and are still marked as the primary keys).
Any ideas on how to fix this? Thanks!