vote up 3 vote down star

My colleague has written a DLL which drives Excel.
When I reference his DLL in my .NET app, I get a warning:

The dependency 'Microsoft.Office.Interop.Excel' could not be found.

My app will compile.
However, when I get to the bit that uses my colleague's DLL to access Excel, an exception is thrown, with the message above.

We should have identical setups: Windows XP Pro SP3, VS2003, .NET 1.1, Office 2003

My problem seems similar to this question, but I don't know if it's the same.

Any help or suggestions gratefully received!

Update:

Thanks for answers so far!

I have not added an explicit reference to Microsoft.Office.Interop.Excel.
Surely I shouldn't have to?
However: When I tried to add this reference, I cannot find Microsoft.Office.Interop.Excel in the Add Reference dialog.

Presumably this means that I am missing a DLL?
... But I don't understand how that could happen?!

flag

3 Answers

vote up 1 vote down check

You may need to install the Primary Interop Assemblies for Office, which can be downloaded from Here. Depending on the order that you install Visual Studio and Office they may not be installed by default.

link|flag
Thanks. That fixed it! – AJ Nov 12 '08 at 17:05
All in a day's work ... well ... all in a day ;-} – ConcernedOfTunbridgeWells Nov 12 '08 at 17:34
vote up 1 vote down

Have you explicitly added a reference to Microsoft.Office.Interop.Excel in your project?

link|flag
Really, nothing else we can say is of much value until this question is answered. Heh. – Robert S. Nov 12 '08 at 15:47
You should not add a reference to Microsoft.Office.Interop.Excel. Instead ensure the PIA's are installed (see NXC's post) and add a COM reference to the Microsoft Excel 11.0 Type Library. – Joe Nov 12 '08 at 21:09
vote up 2 vote down

Ask your colleague to send you the Interop.Excel.dll file that he has in his bin folder. Alternatively as Jon has suggested above you can add a reference to Microsoft Excel library from the COM tab of the Add Reference dialog.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.