K
Ken
I have a combo box that I want to change the query based on inputs to the form.
I have no problem setting the record source of the combo box but I want to
use a query that has a parameter.
How do I pass the parameter to the query in my combo box?
Select Case Me.TabEscorts.Value
Case 0: strSQL = "qryType_03"
Case 1: strSQL = "qryType_04"
Case 2: strSQL = "qryType_03B"
End Select
Each of the queries have a parameter, so how to I pass the parm to the query?
Thanks.
I have no problem setting the record source of the combo box but I want to
use a query that has a parameter.
How do I pass the parameter to the query in my combo box?
Select Case Me.TabEscorts.Value
Case 0: strSQL = "qryType_03"
Case 1: strSQL = "qryType_04"
Case 2: strSQL = "qryType_03B"
End Select
Each of the queries have a parameter, so how to I pass the parm to the query?
Thanks.