C
ChrisA
We are creating quotes based upon a selection from a combo box using the
following row source
SELECT AtlasProducts.ProductNo, AtlasProducts.ProductName,
AtlasProducts.ProductID, AtlasProducts.Obsolete
FROM AtlasProducts
WHERE (((AtlasProducts.Obsolete)=False))
ORDER BY AtlasProducts.ProductNo;
The bound column on the combo box is is the ProductID which is the primary
key for the AtlasProducts table.
The combo box shows to the user the ProductNo.
When I mark a product as obsolete the combo box no longer shows the product
in the listing as expected but the legacy record in the quote form does not
show the ProductNo in the combo box field as before. Obviously because it is
no longer in the record source. Hope someone can suggest how I get around
this.
Thanks
Chris
following row source
SELECT AtlasProducts.ProductNo, AtlasProducts.ProductName,
AtlasProducts.ProductID, AtlasProducts.Obsolete
FROM AtlasProducts
WHERE (((AtlasProducts.Obsolete)=False))
ORDER BY AtlasProducts.ProductNo;
The bound column on the combo box is is the ProductID which is the primary
key for the AtlasProducts table.
The combo box shows to the user the ProductNo.
When I mark a product as obsolete the combo box no longer shows the product
in the listing as expected but the legacy record in the quote form does not
show the ProductNo in the combo box field as before. Obviously because it is
no longer in the record source. Hope someone can suggest how I get around
this.
Thanks
Chris