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.

36 lines
874 B

#include <iostream>
#include <conio.h>
#include "libxl.h"
using namespace libxl;
int main()
{
Book* book = xlCreateBook();
if(book)
{
Font* font = book->addFont();
font->setName("Impact");
font->setSize(36);
Format* format = book->addFormat();
format->setAlignH(ALIGNH_CENTER);
format->setBorder(BORDERSTYLE_MEDIUMDASHDOTDOT);
format->setBorderColor(COLOR_RED);
format->setFont(font);
Sheet* sheet = book->addSheet("Custom");
if(sheet)
{
sheet->writeStr(2, 1, "Format", format);
sheet->setCol(1, 1, 25);
}
if(book->save("format.xls")) std::cout << "\nFile format.xls has been created." << std::endl;
}
std::cout << "\nPress any key to exit...";
_getch();
return 0;
}