HI,
I m new here...and need some help...
i am just a beginner u can say...i dun knw abt OOP even...
but i need help in this project...
i dun knw from where to start even :/
any help would be appreciated....
how can i open .xls file in c++?
how will i manipulate it...?
i just want to delete some cells, want to change some alignments etc on a fixed pattern file....any help? :/
Edit: I have assumed you're talking about C++ rather then C++/CLI -- Microsoft's extended form of C++. That would allow you to use the .Net API instead. See PS for a different codeproject.com article about the .Net based solution.
If you're a beginner, then this is going to be hard work.
To manipulate an Excel sheet in C++ requires you to use COM objects and interfaces to do the work. So you've got COM to learn, if you don't already understand it, before getting to grips with the Excel objects and interfaces themselves.
This codeproject.com article shows how to use the COM API is a relatively simple way.