Feb 3, 2006 #1 dBjason Programmer Mar 25, 2005 355 US I have an Access front-end which needs to execute a SQL Server stored procedure when a user clicks a button. Any ideas on how to do this?
I have an Access front-end which needs to execute a SQL Server stored procedure when a user clicks a button. Any ideas on how to do this?
Feb 3, 2006 #2 PHV MIS Nov 8, 2002 53,708 FR Have a look at the ADODB.Command object. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Have a look at the ADODB.Command object. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Feb 4, 2006 #3 jsteph Technical User Oct 24, 2002 2,562 US If you just want a quick & dirty way, and you don't already have the ado reference set up, you can just use a pass-thru query. You won't be able to recive return-parameters directly, but you can return values and recordsets. --Jim Upvote 0 Downvote
If you just want a quick & dirty way, and you don't already have the ado reference set up, you can just use a pass-thru query. You won't be able to recive return-parameters directly, but you can return values and recordsets. --Jim