Im working in Access 2007 using two Combo boxes to select a category then product type. I am trying to get a couple fields to be displayed based on what the values are in the combo boxes. I have the boxes properly synchronized and working fine. Is there like a submit button I can input or a an after update I can create? I have been searching online and I cannot find anything. here is the code i have for the boxes. there are a couple different forms I would like to do this with, but I just cannot get it to work
Code:
Me.cboProducts.RowSource = "SELECT ProductName FROM" & _
" Products WHERE CategoryID = " & Me.cbocategories & _
" ORDER BY ProductName"
Me.cboProducts = Me.cboProducts.ItemData(0)
Comment