D
Daniel
Hi,
I think this must be easy to do, but I don't see how.
I have a table with items (itemID, description, ...)
A "release" (releaseID, description, ...) is a list of all the items.
Sometimes, I want to hide some of the items, so I made a table,
releaseHideItems, which holds itemID and releaseID and works great in
subsequent queries. If it's in the table, then it's hidden.
How do I make a form to populate this releaseHideItems table?
Basically, I want to display:
-item number
-description
-***check box to indicate whether an item is hidden (or not)***
I don't know how to associate the existence of a record with a check
box (or equivalent) and make it updateable.
This is what I have for the recordsource, and I'm comfortable using VBA
if necessary.
SELECT qSI.itemNo, qSI.description, HI.releaseID
FROM qrySubItems AS qSI
LEFT JOIN releaseHiddenItems AS HI ON qSI.subItemID = HI.subItemID
Thank you for any assistance.
Daniel
I think this must be easy to do, but I don't see how.
I have a table with items (itemID, description, ...)
A "release" (releaseID, description, ...) is a list of all the items.
Sometimes, I want to hide some of the items, so I made a table,
releaseHideItems, which holds itemID and releaseID and works great in
subsequent queries. If it's in the table, then it's hidden.
How do I make a form to populate this releaseHideItems table?
Basically, I want to display:
-item number
-description
-***check box to indicate whether an item is hidden (or not)***
I don't know how to associate the existence of a record with a check
box (or equivalent) and make it updateable.
This is what I have for the recordsource, and I'm comfortable using VBA
if necessary.
SELECT qSI.itemNo, qSI.description, HI.releaseID
FROM qrySubItems AS qSI
LEFT JOIN releaseHiddenItems AS HI ON qSI.subItemID = HI.subItemID
Thank you for any assistance.
Daniel