outputing images from C++ to Excel
-
In a Visual C++ application I am doing, I must populate an Excel spreadsheet with some parsed data. I would like to place some images in a header prior to the parsed data. I use FPUTS to output the parsed data to the spreadsheet but is there a way to put images to the spreadsheet from my C++ program?
-
In a Visual C++ application I am doing, I must populate an Excel spreadsheet with some parsed data. I would like to place some images in a header prior to the parsed data. I use FPUTS to output the parsed data to the spreadsheet but is there a way to put images to the spreadsheet from my C++ program?
why aren't you using Excel objects? some restrictions on design? Jaime
-
why aren't you using Excel objects? some restrictions on design? Jaime
No restrictions, I don't use excel that much and am not too familiar with what it can do. I just need to put tons of parsed data from a binary file into a spreadsheet. I just wanted to put some special symbols in the heading. I tried to create a template with the symbols and then append the parsed data, but it seems that excel won't allow this. I then was wondering if the symbols which are in gif formats could be written to the spreadsheet from my C++ program. Thanks!