calling excel from c++

I have a program in c++ and i was trying to display my results (all numeric data) in excel and use some functinalities in excel like plot.Is there any simple way to explore excel functionality from with in c++, i am using visuall studio express 2010.

Thanks for your time

Abu
Excel can be automated via OLE Automation only, meaning you have to use all-IDispatch interfaces. See if the #import keyword generates wrapper calls for easy calling of functions, but if not, you'll have to do something like this: http://support.microsoft.com/kb/216686
Thanks! I will try this.
Last edited on
Topic archived. No new replies allowed.