Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read/write data into excel 2007 in c++?

How to read/write data into excel 2007 in c++?

like image 701
yesraaj Avatar asked Dec 06 '22 04:12

yesraaj


1 Answers

Excel provides COM interface which you can use from your C++ application.

I have experience with Excel 2003 only but I think for excel 2007 it will also work.

This can be done e.g. with #import or in the way described in this article: http://support.microsoft.com/kb/216686

like image 142
Oleg Avatar answered Dec 07 '22 18:12

Oleg