doco
Power User
- Local time
- Today, 03:10
- Joined
- Feb 14, 2007
- Messages
- 482
I have an Access project using Access 2007 utilizing a form with a ComboBox that is populated by a user defined view from the backend SQL Server 2000 db. The list box contains a list of stored procedures that are in the backend. The user selects a proc and the change event of the List reads the user selection and instances
Code:
DoCmd.OpenStoredProcedure szProcName, acViewNormal, acReadOnly
[\code]
The process works well with the exception of one stored procedure that works as expected from SQL Server Management Studio but does not work from Access. The params are entered via access prompts and the following error results:
[quote]
The stored procedure executed successfully but did not return records.
[\quote]
All other procs in the list run as expected except this one. There would be a return recordset for any possible param entry but no records return.
Any Ideas?
TIA