A
Altemir
I have an Access Data Project (ADP) in which:
1) I want to run a stored procedure (that returns no records)
triggered by the AfterUpdate event of a form control
2) The value contained in the form control (after being updated) needs
to be passed to the stored procedure as a parameter.
What code do I need to put in the AfterUpdate form control event to
trigger the stored procedure? Whatelse do I need to do in order to
ensure that the form control value gets passed to the stored procedure
as a parameter?
Me.RecordSource "Exec strMyStoredProcedure" doesn't work because the
stored procedure is not intended to return any records that would act
as a record source.
Any ideas?
1) I want to run a stored procedure (that returns no records)
triggered by the AfterUpdate event of a form control
2) The value contained in the form control (after being updated) needs
to be passed to the stored procedure as a parameter.
What code do I need to put in the AfterUpdate form control event to
trigger the stored procedure? Whatelse do I need to do in order to
ensure that the form control value gets passed to the stored procedure
as a parameter?
Me.RecordSource "Exec strMyStoredProcedure" doesn't work because the
stored procedure is not intended to return any records that would act
as a record source.
Any ideas?