Microsoft
Software
Hardware
Network
Question : Access DoCmd.runSQL running a SQLServer stored procedure
I am using an Access front end to a SQLServer database. Some VBA uses DoCmd.runSQL to run stored procedures in the database. What is the best way to capture the return from the stored procedure?
Answer : Access DoCmd.runSQL running a SQLServer stored procedure
What is returned from the Stored Procedure? If it's a Recordset, you can just do this:
Dim rst As DAO.Recordset
Set rst = Currentdb.OpenRecordset(Yo
urQueryNam
e)
If it's an Output param, you're probably better off using an ADODB.Command object.
Random Solutions
Get width and height of JPG-image from database
Excel - Find if a value is in the top 25 %, 50% or 75% of the total value
"pci system error on bus device function 007ah" and others on HP NetServeer E800
Pivot Data
Need Pros/Cons of various methods used to ensure vbscripts execute with cscript or wscript
Exchange 2010 - Error synchronizing folder
pages moving from virtual to physical is high
problems with html embedded content in xml files
Implementing optional parameters in a function - C#
Running FTP command from a batch file