HI All.
I am converting and MDB to ADP.
I have a stored procedure that I created with 2 fields.
PropID needs to have the value of a form field passed on to the criteria box.
My Stored procedure is as follows(Qry_Append_Requisitions_Remove):
ALTER PROCEDURE [RIOCANMAIN\jfeintuch].Qry_Append_Requisitions_Remove
AS SELECT PropID, Del_Flg
FROM dbo.Tbl_Doc_Requisition
WHERE (Del_Flg = 1)
I will actually change this to a delete query once I understand how to pass the form field.
In my access form, I have the following:
Dim stDocName As String
stDocName = "Qry_Append_Requisitions_Remove"
DoCmd.OpenStoredProcedure stDocName, acViewNormal, acEdit
how do I go about doing this?
I am very new to adp and frustrated.
Thanks,
Toptech
Top Tech Systems
If you help 3 people and each one of those help 3 other people and so on, imagine all the people being helped.
I am converting and MDB to ADP.
I have a stored procedure that I created with 2 fields.
PropID needs to have the value of a form field passed on to the criteria box.
My Stored procedure is as follows(Qry_Append_Requisitions_Remove):
ALTER PROCEDURE [RIOCANMAIN\jfeintuch].Qry_Append_Requisitions_Remove
AS SELECT PropID, Del_Flg
FROM dbo.Tbl_Doc_Requisition
WHERE (Del_Flg = 1)
I will actually change this to a delete query once I understand how to pass the form field.
In my access form, I have the following:
Dim stDocName As String
stDocName = "Qry_Append_Requisitions_Remove"
DoCmd.OpenStoredProcedure stDocName, acViewNormal, acEdit
how do I go about doing this?
I am very new to adp and frustrated.
Thanks,
Toptech
Top Tech Systems
If you help 3 people and each one of those help 3 other people and so on, imagine all the people being helped.