Link to home
Start Free TrialLog in
Avatar of rgn2121
rgn2121Flag for United States of America

asked on

Issue with adding Excel COM reference in VS 2005 using Office 2003

I have an application that was created using office 2003 and the Microsoft.Office.Interop.Excel.dll.  Everything has worked great for a year or so with the portion of the app that writes to Excel.  My pc was recently upgraded to Office 2010...so I had to remove the old and add the new references for Excel...again...no issues.  The problem was though, the app runs from Citrix, and since it has Office 2003, I needed to change them back...fine...no worries right?

Well, I made the changes on a pc with Office 2003, ran the app locally...everything worked.  Placed the app on the server and the Excel portion blows up.  It appears that when I added the Office 2K3 reference back in, it is now using Interop.Excel.dll...a different dll then what it was using before.

Now, I can just replace that other dll with the one it is currently using, but I want to know why it is using Interop.Excel.dll as opposed to Microsoft.Office.Interop.Excel.  I have tried this on a few pc's with Office 2K3 and I get the same result.
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

because you are targeting a different version, you have 2 options here:
-switch to late binding (do not add a reference and use GetObject to create your instance)
-use a 3rd party application like http://www.aspose.com/categories/.net-components/aspose.cells-for-.net/default.aspx
Avatar of rgn2121

ASKER

I am targeting Office 2003...only Office 2003.  The last time I add the reference it used Microsoft.Office.Interop.Excel.dll.  Now it uses Interop.Excel.dll...both for Office 2K3 (Office 11)
you are targeting Office 2003 but you have something different installed on your PC!
Avatar of rgn2121

ASKER

I have 2K3 on the PC's that I am developing on today...I have tried 2 office 2k3 pc's as stated above...
ASKER CERTIFIED SOLUTION
Avatar of Hairbrush
Hairbrush
Flag of Jersey image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rgn2121

ASKER

Thanks Hairbrush...I was adding my references the way link 3 described, but it kept choosing the Interop.Excel.dll.  One pc had the Office 2003 PIA's installed the other did not.  I installed them on the pc that needed them and it selected the correct dll.  I found out that from another developer in my dept that he has to do this almost every time there is an office update...I just didn't know it since it had been so long since I have been in this application.

Thanks for the links...