Hello. I have been developing in Access (Jet) for years and am trying to make the leap into sql server. In Jet, I have often used an unbound form that users can select various criteria to generate a report. The queries reference those form fields. I would like to use a similar process in an ADP. I have a series of stored procedures that i want to append data to another table based on criteria selected (or left null) in a form. In the stored procedures i have set up these parameters, each one is nvarchar and can contain a value or be null:
@city
@country
@investortype
@fundcategory
Now, i am not clear on how to send these parameters to the query from the form code or how to reference them and indicate that
@city = Forms!fldgRunCustomReport!cboCity
@country = Forms!fldgRunCustomReport!cboCountry
and so on. Any help would be greatly appreciated!!!
Thanks.
@city
@country
@investortype
@fundcategory
Now, i am not clear on how to send these parameters to the query from the form code or how to reference them and indicate that
@city = Forms!fldgRunCustomReport!cboCity
@country = Forms!fldgRunCustomReport!cboCountry
and so on. Any help would be greatly appreciated!!!
Thanks.