Generates XML files for DeltaPro from Amazon invoices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
689 B

7 years ago
#include <iostream>
#include <conio.h>
#include "libxl.h"
using namespace libxl;
int main()
{
Book* book = xlCreateBook();
if(book)
{
if(book->load("example.xls"))
{
Sheet* sheet = book->getSheet(0);
if(sheet)
{
double d = sheet->readNum(3, 1);
sheet->writeNum(3, 1, d * 2);
sheet->writeStr(4, 1, "new string");
}
if(book->save("example.xls")) std::cout << "\nFile example.xls has been modified." << std::endl;
}
book->release();
}
std::cout << "\nPress any key to exit...";
_getch();
return 0;
}