microsoft.office.interop.access

mech55

Member
Joined
Jan 26, 2005
Messages
13
Programming Experience
1-3
I'm having trouble with these, on my laptop with office 2003 installed this works fine. But when I bring a debug version of the app to another computer I get an error message [microsoft.office.interop.access or one of its dependencies was not found] when I try to auto open an access report from the app.

other computer has office 2000 pro installed (fully). Is it the case that these will only work with office 2003 or is it possible to make it work with 2000.

thanks,
 
When you use COM interop, a .NET wrapper assembly (DLL) is created for the COM object and copied to your project's output folder along with the main assembly. You need to have this extra assembly available to your app wherever it is installed. Have you copied/installed this assembly when copying/installing your application?
 
Back
Top