Excel and c++
-
Hi I have a simple application and, I have the data in some arrays. If I want to write these data to an Excel file what should I do. I can easily write them to a text file....but is it possible to write it to an Excel file without using MFC?
-
Hi I have a simple application and, I have the data in some arrays. If I want to write these data to an Excel file what should I do. I can easily write them to a text file....but is it possible to write it to an Excel file without using MFC?
-
you can make the output go into a *.csv file, a comma seperated value file, which can easily be imported into excell. *.* cin >> knowledge;
ok thanks I tried to make a .CSV file and it opens in Excel format the only problem is that the file does not look good. All of the output in in One Cell. if I want to have something in A1 and the next thing in B1 what should I do. right not it does not undrestand that Tab means going to the next column!
-
you can make the output go into a *.csv file, a comma seperated value file, which can easily be imported into excell. *.* cin >> knowledge;
One more thing I forgot to ask. How can I create a Sheet within the .cvs file from inside my c++ code?
-
you can make the output go into a *.csv file, a comma seperated value file, which can easily be imported into excell. *.* cin >> knowledge;
dont worry about my first question. I used *.xls file directly and it works but i am still wondering about generating that extra sheet in the file.
-
Hi I have a simple application and, I have the data in some arrays. If I want to write these data to an Excel file what should I do. I can easily write them to a text file....but is it possible to write it to an Excel file without using MFC?
maryami wrote: ...is it possible to write it to an Excel file without using MFC? Yes, just use Excel's COM interface.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
-
maryami wrote: ...is it possible to write it to an Excel file without using MFC? Yes, just use Excel's COM interface.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
Can you give me a link that can help me to get to know excel's COM interface? I have not work with that before!.is it a class? library ?
-
Can you give me a link that can help me to get to know excel's COM interface? I have not work with that before!.is it a class? library ?
maryami wrote: Can you give me a link that can help me to get to know excel's COM interface? Try this one.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?