Databaseguy
MIS
I have Combo Boxes that are based on stored procedures in an Access Data Project.
Currently, I programatically change the next combo down the tier based on the current combos value, and pass the parameter to the next combo.
I.E.
cbo_1 After_Update()
Me!cbo_2.RowSource = "EXEC sp_ColorBox'" & Me!cbo_1 & "'"
Me!cbo_2.Requery
End Sub
How do I pass more than one parameter into the next combo/SP ?
Currently, I programatically change the next combo down the tier based on the current combos value, and pass the parameter to the next combo.
I.E.
cbo_1 After_Update()
Me!cbo_2.RowSource = "EXEC sp_ColorBox'" & Me!cbo_1 & "'"
Me!cbo_2.Requery
End Sub
How do I pass more than one parameter into the next combo/SP ?