I use Access (.mdb) along with SQL Server stored procedures. In order for Access to see the sp I have to use a pass through query. This may not be necessary with an Access Data Project but it's worth a try.
The pass-through query works as follows:
Code:
EXEC {the name of the sp} {parameter1}, {parameter2}, etc.
Code:
EXEC usp_MyStoredProcedure 'John', 'Smith', 'Chicago'
This assumes your parameters are FirstName, LastName and City.
The pass-through query MUST be specifically pointed to the correct Server and Database with the connect string.
ODBC Connect String:
Code:
ODBC;DRIVER={SQL Server};SERVER=TheNameOfYourServer;Database=TheNameOfYourSQLDatabase;Trusted_Connection= Yes
Rand