Programming excel in C#

  • Thread starter Thread starter bg_ie
  • Start date Start date
B

bg_ie

Hi,

I wish to develop some features for an excel document. The version of
excel is 2002 SP3. I'm using Visual Studio 2005. Is it possible for me
to program in C# instead of VBA?

Thanks,

Barry.
 
Hi,

I wish to develop some features for an excel document. The version of
excel is 2002 SP3. I'm using Visual Studio 2005. Is it possible for me
to program in C# instead of VBA?

Thanks,

Barry.

You can use VSTO.

Using namespaces:

Microsoft.Office.Interop.Excel;
Microsoft.Office.Core;

Developer reference:http://msdn2.microsoft.com/en-us/library/
bb187365.aspx
 
Hi,

I wish to develop some features for an excel document. The version of
excel is 2002 SP3. I'm using Visual Studio 2005. Is it possible for me
to program in C# instead of VBA?

Thanks,

Barry.

Yes you can download VSTO 2005 (though not the SE version as I believe
that only allows you to target 2003 and 2007)

HTH,
Gary
http://www.garyshort.org/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top