Is there a way to execute SQL Server Stored Procedures from within MS Access
97?
TIA,
Pamela
Dim cmd as new ADODB.Command
Dim rs as recordset
cmd.ActiveConnect = "DNS=yourDNSname"
cmd.CommandText = "yourStoredProcedureName"
cmd.commandType = adCmdStoredProc
set rs = cmd.execute
Ding Gung Bawm
Pamela <parkerp> wrote in message
news:#4KD$XoZ#GA....@uppssnewspub04.moswest.msn.net...
Pamela wrote in message <#4KD$XoZ#GA....@uppssnewspub04.moswest.msn.net>...