G
Guest
I have an order detail table....when you select the catagory combo box the product combo box should update with the relevant products in that catagory.I have used the following code in the afterupdate even
Private Sub cbocatagory_AfterUpdate(
Me!cboProduct.RowSource = "SELECT [productID],[product] FROM [products] WHERE [CatagoryID]=" & Me!cboCatagory & " ORDER BY [product];
End Su
Seems to work fine however as I move through the form filling it in some of the items from the product combo box disappear from view................any ideas for this novice in access
Private Sub cbocatagory_AfterUpdate(
Me!cboProduct.RowSource = "SELECT [productID],[product] FROM [products] WHERE [CatagoryID]=" & Me!cboCatagory & " ORDER BY [product];
End Su
Seems to work fine however as I move through the form filling it in some of the items from the product combo box disappear from view................any ideas for this novice in access