jetspin
Programmer
- Mar 5, 2002
- 76
Hi.
I have a continuous form that is okay. I can add records to it, BUT as soon as I add a joined table to the form's qry, I cannot add any records on the continous form? The new record navigator is disabled and there is a blank rec as the last of the continuous forms but it does not accept any data entry.
Here are my tables and the qry for the form before and after.
tblINVitems
itmItmID AutoNumber Prime Key
itmIctID Number FK to tblINVItemCategories
itmName Text
itmSerialNumber Text
itmDesc Text
tblINVItemCategories
tctIctID AutoNumber Prime Key
tctName Text
tctDesc Text
tctIctID is one to many itmItmID
The form source qry that works....
SELECT tbINVItems.itmItmID,
tbINVItems.itmName, tbINVItems.itmDesc,
tbINVItems.itmSerialNumber
FROM tbINVItems
ORDER BY tbINVItems.itmName;
Here is the form source query that causes the problem as soon as I put the joined table in the query.
SELECT tbINVItems.itmItmID,
tbINVItems.itmName,
tbINVItems.itmDesc,
tbINVItems.itmSerialNumber
FROM tblINVItemCategories INNER JOIN tbINVItems ON tblINVItemCategories.ictIctID = tbINVItems.itmIctID
ORDER BY tbINVItems.itmName;
I recreated the table several times...with no luck...
I deleted all recs too.
Jetspin2
I have a continuous form that is okay. I can add records to it, BUT as soon as I add a joined table to the form's qry, I cannot add any records on the continous form? The new record navigator is disabled and there is a blank rec as the last of the continuous forms but it does not accept any data entry.
Here are my tables and the qry for the form before and after.
tblINVitems
itmItmID AutoNumber Prime Key
itmIctID Number FK to tblINVItemCategories
itmName Text
itmSerialNumber Text
itmDesc Text
tblINVItemCategories
tctIctID AutoNumber Prime Key
tctName Text
tctDesc Text
tctIctID is one to many itmItmID
The form source qry that works....
SELECT tbINVItems.itmItmID,
tbINVItems.itmName, tbINVItems.itmDesc,
tbINVItems.itmSerialNumber
FROM tbINVItems
ORDER BY tbINVItems.itmName;
Here is the form source query that causes the problem as soon as I put the joined table in the query.
SELECT tbINVItems.itmItmID,
tbINVItems.itmName,
tbINVItems.itmDesc,
tbINVItems.itmSerialNumber
FROM tblINVItemCategories INNER JOIN tbINVItems ON tblINVItemCategories.ictIctID = tbINVItems.itmIctID
ORDER BY tbINVItems.itmName;
I recreated the table several times...with no luck...
I deleted all recs too.
Jetspin2