SP:
Depending on the values of the parms the recordsource of the form has to be set. Using one inputparm is no problem. But how to use more then one?
The inputparms are entered by the user.
Any input welcome, thanks
Hans
Code:
ALTER PROCEDURE ysp_Test
(@Param1 int, @Param2 int)
AS
SET NOCOUNT ON
Select * From tblTest
Where fldA Between @Param1 And @Param2
RETURN
The inputparms are entered by the user.
Any input welcome, thanks
Hans