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.

33 lines
853 B

#include <stdio.h>
#include <conio.h>
#include "libxl.h"
int main()
{
BookHandle book = xlCreateBook();
if(book)
{
SheetHandle sheet = xlBookAddSheet(book, "Sheet1", 0);
if(sheet)
{
FormatHandle dateFormat;
xlSheetWriteStr(sheet, 2, 1, "Hello, World !", 0);
xlSheetWriteNum(sheet, 3, 1, 1000, 0);
dateFormat = xlBookAddFormat(book, 0);
xlFormatSetNumFormat(dateFormat, NUMFORMAT_DATE);
xlSheetWriteNum(sheet, 4, 1, xlBookDatePack(book, 2008, 4, 29, 0, 0, 0, 0), dateFormat);
xlSheetSetCol(sheet, 1, 1, 12, 0, 0);
}
if(xlBookSave(book, "example.xls")) printf("\nFile example.xls has been created.\n");
xlBookRelease(book);
}
printf("\nPress any key to exit...");
_getch();
return 0;
}