• 大小: 16.47MB
    文件类型: .zip
    金币: 2
    下载: 2 次
    发布日期: 2024-03-04
  • 语言: 其他
  • 标签: LibXL  Excel库  

资源简介

LibXL for Windows 3.8.3 最新版Excel操作库(带注册码), 注册码在VS2010下亲测有效。所有资源收集于网络,仅供学习使用。如果喜欢此软件,请支持正版。

资源截图

代码片段和文件信息

#include 
#include 
#include “libxl.h“

int main()
{
    BookHandle book = xlCreateBook();
    if(book) 
    {
        int i f[6];
        FormatHandle format[6];
        SheetHandle sheet;

        f[0] = xlBookAddCustomNumFormat(book “0.0“);
        f[1] = xlBookAddCustomNumFormat(book “0.00“);
        f[2] = xlBookAddCustomNumFormat(book “0.000“);
        f[3] = xlBookAddCustomNumFormat(book “0.0000“);
        f[4] = xlBookAddCustomNumFormat(book “####.00 $“);
        f[5] = xlBookAddCustomNumFormat(book “####.00 $[Black][<1000];####.00 $[Red][>=1000]“);

        for(i = 0; i < 6; ++i) {
            format[i] = xlBookAddFormat(book 0);
            xlFormatSetNumFormat(format[i] f[i]);
        }

        sheet = xlBookAddSheet(book “Custom formats“ 0);
        if(sheet) 
        {
            xlSheetSetCol(sheet 0 0 20 0 0);
            xlSheetWriteNum(sheet 2 0 25.718 format[0]);
            xlSheetWriteNum(sheet 3 0 25.718 format[1]);
            xlSheetWriteNum(sheet 4 0 25.718 format[2]);
            xlSheetWriteNum(sheet 5 0 25.718 format[3]);

            xlSheetWriteNum(sheet 7 0 1800.5 format[4]);

            xlSheetWriteNum(sheet 9 0 500 format[5]);
            xlSheetWriteNum(sheet 10 0 1600 format[5]);            
        }

        if(xlBookSave(book “custom.xls“)) printf(“\nFile custom.xls has been created.\n“);
        xlBookRelease(book);
    }

    printf(“\nPress any key to exit...“);
    _getch();

    return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         143  2018-09-20 18:20  LibXL for Windows 3.8.3注册码.txt
     目录           0  2018-09-03 22:49  libxl-3.8.3.0\
     目录           0  2018-09-03 22:48  libxl-3.8.3.0\bin\
     目录           0  2018-09-03 22:48  libxl-3.8.3.0\bin64\
     文件     9429720  2018-09-03 22:48  libxl-3.8.3.0\bin64\libxl.dll
     文件     6595288  2018-09-03 22:48  libxl-3.8.3.0\bin\libxl.dll
     文件       39740  2018-09-03 20:05  libxl-3.8.3.0\changelog.txt
     目录           0  2018-09-03 22:49  libxl-3.8.3.0\doc\
     文件        4645  2018-09-03 20:03  libxl-3.8.3.0\doc\autoFilter.html
     文件        6653  2018-09-03 20:03  libxl-3.8.3.0\doc\colors.html
     文件       10129  2018-09-03 20:03  libxl-3.8.3.0\doc\custom-format.html
     文件        7023  2018-09-03 20:03  libxl-3.8.3.0\doc\filterColumn.html
     文件        7270  2018-09-03 20:03  libxl-3.8.3.0\doc\font.html
     文件       32216  2018-09-03 20:03  libxl-3.8.3.0\doc\format.html
     目录           0  2018-09-03 22:49  libxl-3.8.3.0\doc\images\
     文件        1099  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_center.png
     文件        1739  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_distributed.png
     文件         980  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_fill.png
     文件        1093  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_general.png
     文件        1567  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_justify.png
     文件         959  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_left.png
     文件        1586  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_merge.png
     文件        1021  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignh_right.png
     文件        1131  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignv_bottom.png
     文件        1116  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignv_center.png
     文件        1790  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignv_distributed.png
     文件        1583  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignv_justify.png
     文件        1112  2018-03-28 03:52  libxl-3.8.3.0\doc\images\alignv_top.png
     文件         923  2018-03-28 03:52  libxl-3.8.3.0\doc\images\borderdiagonal_both.png
     文件         837  2018-03-28 03:52  libxl-3.8.3.0\doc\images\borderdiagonal_down.png
     文件         801  2018-03-28 03:52  libxl-3.8.3.0\doc\images\borderdiagonal_none.png
............此处省略675个文件信息

评论

共有 条评论