using Excel object in C++

  • Thread starter Thread starter 7777777.chen
  • Start date Start date
7

7777777.chen

Hi,

In C++ project, I need open excel file and write data to it. Can
someone give me some intrusction?

Thanks,
Sherry
 
one of the ways would be to use the ActiveX objects that are installed with
office.
we did that with another programming language (LabVIEW) a couple of years
ago.
first you create an internal excel instance. then you create a workbook
object. then a worksheet object.
each of those objects has methods and properties you can use. for entering
and formatting data

now it is also possible with the .NET framework, or so i've heard, but we
never tried that.

kind regards,
Bruno.
 
How to create an instance of excel object in C++ with .NET framework?
Does anyone have a clue?

Thanks
 
Back
Top