In C#, I’m using the Microsoft.Office.Interop.Excel reference v12.0.0.0, which (I think) corresponds to Office 2007.
I guess that my program won’t run on computers without Office 2007 or above ? What should I do ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use late binding and write your code to only use features available in the lowest version that you want to support.
If you don’t know the difference between late and early binding, this article should be useful: Binding for Office automation servers with Visual C# .NET