G
graeme34 via AccessMonster.com
This is probably a oversight on my part but can anybody tell me why my
subform, goods received details is not accepting input. The control source of
the subform is based on a select query, There are six controls on the subform,
yet only one is required for data entry, I have locked the other five as
these are for information purposes only. the control for data entry,
(quantity received) is not locked and enabled. The subform data entry
property is set to true. yet it is not letting me enter data.
Here is the control source query if this helps...
SELECT qrySumQuantityReceived.PurchaseOrderNumber, qrySumQuantityReceived.
ProductCode, qrySumQuantityReceived.Description, qrySumQuantityReceived.
[Quantity Order], qrySumQuantityReceived.Price, qrySumQuantityReceived.
SumOfQuantityReceived, [Quantity Order]-[SumOfQuantityReceived] AS
Outstanding, tblGoodsReceivedDetail.QuantityReceived
FROM qrySumQuantityReceived INNER JOIN tblGoodsReceivedDetail ON
qrySumQuantityReceived.ProductCode=tblGoodsReceivedDetail.ProductCode
ORDER BY qrySumQuantityReceived.PurchaseOrderNumber;
Any ideas where I'm going wrong ??
subform, goods received details is not accepting input. The control source of
the subform is based on a select query, There are six controls on the subform,
yet only one is required for data entry, I have locked the other five as
these are for information purposes only. the control for data entry,
(quantity received) is not locked and enabled. The subform data entry
property is set to true. yet it is not letting me enter data.
Here is the control source query if this helps...
SELECT qrySumQuantityReceived.PurchaseOrderNumber, qrySumQuantityReceived.
ProductCode, qrySumQuantityReceived.Description, qrySumQuantityReceived.
[Quantity Order], qrySumQuantityReceived.Price, qrySumQuantityReceived.
SumOfQuantityReceived, [Quantity Order]-[SumOfQuantityReceived] AS
Outstanding, tblGoodsReceivedDetail.QuantityReceived
FROM qrySumQuantityReceived INNER JOIN tblGoodsReceivedDetail ON
qrySumQuantityReceived.ProductCode=tblGoodsReceivedDetail.ProductCode
ORDER BY qrySumQuantityReceived.PurchaseOrderNumber;
Any ideas where I'm going wrong ??