C++操作EXCEL 要在应⽤程序中控制Excel的运⾏,⾸先必须在编制⾃动化客户程序时包含Comobj.hpp
#include "Comobj.hpp"
C++ Builder把Excel⾃动化对象的功能包装在下⾯的四个Ole Object Class函数中,应⽤⼈员可
以很⽅便地进⾏调⽤。
设置对象属性:void OlePropertySet(属性名,参数……);
获得对象属性:Variant OlePropertyGet(属性名,参数……);
调⽤对象⽅法:1) Variant OleFunction(函数名,参数……);
2) void OleProcedure(过程名,参数……);
在程序中可以⽤宏定义来节省时间:
#define PG OlePropertyGet
#define PS OlePropertySet
#define FN OleFunction
#define PR OleProcedure
举例:
ExcelApp.OlePropertyGet("workbooks").OleFunction("Add");
可写为
ExcelApp.PG("workbooks").FN("Add");
C++ Builder中使⽤OLE控制Excel2000,必须掌握Excel2000的⾃动化对象及Microsoft Word Visual Basic帮助⽂件中的关于Excel的对象、⽅法和属性。对象是⼀个Excel元素,属性是对象的
⼀个特性或操作的⼀个⽅⾯,⽅法是对象可以进⾏的动作。
⾸先定义以下⼏个变量:
Variant ExcelApp,Workbook1,Sheet1,Range1;
1、Excel中常⽤的对象是:Application,Workbooks,Worksheets等。
★创建应⽤对象★
Variant ExcelApp;
ExcelApp = Variant::CreateObject ("Excel.Application");
或者
ExcelApp = CreateOleObject ("Excel.Application");
★创建⼯作簿对象★
Variant WorkBook1;
WorkBook1 = ExcelApp.PG("ActiveWorkBook");
★创建⼯作表对象★
Variant Sheet1;
Sheet1 = WorkBook1.PG("ActiveSheet");
★创建区域对象★
Variant Range;
Range = Sheet1.PG("Range","A1:A10");
或者使⽤
Excel.Exec(PropertyGet("Range")<<"A1:C1").Exec(Procedure("Select"));
2、常⽤的属性操作:
★使Excel程序不可见★
ExcelApp.PS("Visible", (Variant)false);
★新建EXCEL⽂件★
◎ 新建系统模板的⼯作簿
ExcelApp.PG("workbooks").FN("Add") //默认⼯作簿
ExcelApp.PG("workbooks").FN("Add", 1) //单⼯作表
ExcelApp.PG("workbooks").FN("Add", 2) //图表
ExcelApp.PG("workbooks").FN("Add", 3) //宏表
ExcelApp.PG("workbooks").FN("Add", 4) //国际通⽤宏表
ExcelApp.PG("workbooks").FN("Add", 5) //与默认的相同
ExcelApp.PG("workbooks").FN("Add", 6) //⼯作簿且只有⼀个表
或者使⽤ExcelApp的Exec⽅法
Excel.Exec(PropertyGet("Workbooks")).Exec(Procedure("Add")); ◎ 新建⾃⼰创建的模板的⼯作簿
rotate属性ExcelApp.PG("workbooks").FN("Add", "C:\\Temp\\result.xlt");
回答⼈的补充 2011-04-08 12:33
★打开⼯作簿★
ExcelApp.PG("workbooks").FN("open", "路径名.xls")
★保存⼯作簿★
WorkBook1.FN("Save"); //保存⼯作簿
WorkBook1.FN("SaveAs", "⽂件名");//⼯作簿保存为,路径注意⽤"\\"
★退出EXCEL★
ExcelApp.FN ("Quit");
ExcelApp = Unassigned;
或者
ExcelApp.Exec(Procedure("Quit"));
★ 作表★
◎ 选择选择⼯作表中第⼀个⼯作表
Workbook1.PG("Sheets", 1).PR("Select");
Sheet1 = Workbook1.PG("ActiveSheet");
◎ 重命名⼯作表
Sheet1.PS("Name", "Sheet的新名字");
◎ 当前⼯作簿中的⼯作表总数
int nSheetCount=Workbook1.PG("Sheets").PG("Count"); ★操作⾏和列★
◎ 获取当前⼯作表中有多少⾏和多少列:
Sheet1.PG("UsedRange").PG("Columns").PG("Count"); //列数
Sheet1.PG("UsedRange").PG("Rows").PG("Count"); //⾏数
◎ 设置列宽
ExcelApp.PG("Columns", 1).PS("ColumnWidth", 22);
或者
Range = ExcelApp.PG("Cells", 1, 3);
Range.PS("ColumnWidth", 22);
◎ 设置⾏⾼
ExcelApp.PG("Rows", 2).PS("RowHeight", 25);
或者
Range = ExcelApp.PG("Cells", 2, 1);
Range.PS("RowHeight", 25);
◎ 在⼯作表最前⾯插⼊⼀⾏
Sheet1.PG("Rows", 1).PR("Insert");
◎ 删除⼀⾏
ExcelApp.PG("Rows", 2).PR("Delete"); //将第2⾏删除
// 本⽂作者:ccrun ,如转载请保证本⽂档的完整性,并注明出处。 // C++ Builder 研究
// 摘⾃:
★操作单元格★
◎ 设置单元格字体
Sheet1.PG("Cells", 1, 1).PG("Font").PS("Name", "⾪书"); //字体
Sheet1.PG("Cells", 2, 3).PG("Font").PS("size", 28); //⼤⼩
◎ 设置所选区域字体
Range.PG("Cells").PG("Font").PS("Size", 28);
Range.PG("Cells").PG("Font").PS("Color", RGB(0, 0, 255));
其中参数的设置:
Font Name : "⾪书" //字体名称
Size : 12 //字体⼤⼩
Color : RGB(*,*,*) //颜⾊
Underline : true/false //
Italic: true/false //斜体
◎ 设置单元格格式为⼩数百分⽐
Sheet1.PG("Cells", 1, 1).PS("NumberFormatLocal", "0.00%");
◎ 设定单元格的垂直对齐⽅式
Range = ExcelApp.PG("Cells", 3, 4);
// 1=靠上 2=居中 3=靠下对齐 4=两端对齐 5=分散对齐
Range.PS("VerticalAlignment", 2);
◎ 设定单元格的⽂本为⾃动换⾏
Range = ExcelApp.PG("Cells", 3, 4);
Range.PS("WrapText", true);
★单元格的合并★
◎ Range = Sheet1.PG("Range", "A1:A2"); //A1和A2单元格合并
String strRange = "A" + IntToStr(j) + ":" + "C" + IntToStr(j); //⽐如:A1:C5 Range1=Sheet1.PG("Range", strRange.c_str()); //可以⽤变量控制单元格合并 Range1.FN("Merge", false);
★读写单元格★
◎ 指定单元格赋值
String strValue = "abcdefg";
Sheet1.PG("Cells", 3, 6).PS("Value", strValue.c_str());
Sheet1.PG("Cells", j, 1).PS("Value", "总记录:" + String(j-6));
或者使⽤
Excel.Exec(PropertyGet("Cells")<<1<<3).Exec(PropertySet("Value")<<15);
◎ 所选区域单元格赋值
Range.PG("Cells").PS("Value", 10);
◎ 所选区域⾏赋值
Range.PG("Rows",1).PS("Value", 1234);
◎ ⼯作表列赋值
Sheet1.PG("Columns",1).PS("Value", 1234);
◎ 读取取值语句:
String strValue = Sheet1.PG("Cells", 3, 5).PG("Value");
★窗⼝属性★
◎ 显⽰属性
ExcelApp.PS("Windowstate", 3); //最⼤化显⽰
1---------xlNormal //正常显⽰
2---------xlMinimized //最⼩化显⽰
3---------xlMaximized //最⼤化显⽰
◎ 状态栏属性
ExcelApp.PS("StatusBar", "您好,请您稍等。正在查询!");
ExcelApp.PS("StatusBar", false); //还原成默认值
◎ 标题属性:
ExcelApp.PS("Caption", " ");
回答⼈的补充 2011-04-08 12:34
3、操作图表
★添加图表
Variant Chart;
Chart = ExcelApp.Exec(PropertyGet("Charts")).Exec(Function("Add"));
ExcelApp.Exec(PropertySet("Visible") << true);
Chart.Exec(PropertySet("Type") << -4100);
★滚动图表
for(int nRotate=5; nRotate <= 180; nRotate += 5)
{
Chart.Exec(PropertySet("Rotation") << nRotate);
}
for (int nRotate = 175; nRotate >= 0; nRotate -= 5)
{
Chart.Exec(PropertySet("Rotation") << nRotate);
}
另外,为保证程序能正常运⾏,需要在程序中判断⽬标机器是否安装了Office;
try
{
ExcelApp = Variant::CreateObject ("Excel.Application");
}
catch(...)
{
ShowMessage("运⾏Excel出错,请确认安装了Office");
return;
}
#include "comobj.hpp"
//---------------------------------------------------------------------------
// 对指定Excel⽂件中的指定列进⾏排序
// strExcelFileName : 名
// nCol : 指定的列号
// nSortStyle : 1:升序,2:降序
void SortExcelColumn(String strExcelFileName, int nCol, int nSortStyle)
{
Variant vExcelApp, vWorkbook, vRange;
vExcelApp = Variant::CreateObject("Excel.Application");
vExcelApp.OlePropertySet("Visible", false);
vExcelApp.OlePropertyGet("WorkBooks").OleProcedure("Open",
strExcelFileName.c_str());
vWorkbook = vExcelApp.OlePropertyGet("ActiveWorkbook");
vExcelApp.OlePropertyGet("Columns", nCol).OleProcedure("Select");
vExcelApp.OlePropertyGet("ActiveSheet").OlePropertyGet("Cells", 1,
nCol).OleProcedure("Select");
vRange = vExcelApp.OlePropertyGet("Selection");
vRange.Exec(Function("Sort")<<vExcelApp.OlePropertyGet("Selection")<<nSortStyle); vWorkbook.OleProcedure("Save");
vWorkbook.OleProcedure("Close");
vExcelApp.OleFunction("Quit");
vWorkbook = Unassigned;
vExcelApp = Unassigned;
ShowMessage("ok");
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
// 对C:\123\123.xls⽂件中第⼀个Sheet的第四列进⾏升序排序
SortExcelColumn("C:\\123\\123.xls", 4, 1);
}
//---------------------------------------------------------------------------
在C++ Builder中⽤Ole控制Excel表
原⽂:在C++ Builder中⽤Ole控制Excel表
笔者在实际⼯作中经常⽤Excel表做数据报表,⼤多数表格的数据都要从数据库中读取,这样我就⽤C++Builder做了⼀个报表程序,⽅便了很多,现在把它共享给C++Builder爱好者们,就算为丰富C++Builder的⽂档资料做点事情吧。
⾸先把Excel报表⽂件保存到⼀个指定⽬录下,最好放在可执⾏程序的⼦⽬录下,作为模板⽂件。可以把报表标题、表头等设置好。这⾥是保存在trpt⼦⽬录下。
然后建⼀个report⽬录,作为报表⽬标⽂件夹,存放填好数据的报表,可以由⽤户直接操作。
⾸先确定在你的机器中装有Office。这⾥⼀Office2000为例。
在C++Builder中新建⼀个⼯程,在窗体Form1上⾯放⼀个两个按钮SaveButton和ReadButton,分别⽤来保存数据到Excel表和显⽰刚刚保存的Excel表。
在SaveButton按钮的单击事件中把从数据库中取到的数据放⼊到指定的Excel表中并将改⽂件拷贝到report⽬录下。在ReadButto按钮的单击事件中显⽰report⽬录下的报表⽂件,⽅便⽤户修改和另外保存。
在Form1.h 中定义⼏个变量:
private:
Variant Ex,Wb,Sheet,ERange,EBorders;
并在 中包含如下语句:
#include "Excel_2K_SRVR.h"
#include
在Form1.cpp的⽂件头中加⼊
#pragma link "Excel_2K_SRVR"
主要代码如下:
void __fastcall TForm1:: SaveButtonClick(TObject *Sender)
{
try
{
SaveButton->Enabled = false;
ReadButton->Enabled = false;//使两个按钮⽆效
file://取报表⽂件CardSend.xls的完整⽬录名
AnsiString ExcelFileName = GetCurrentDir()+"\\trpt\\table.xls";
if(!FileExists(ExcelFileName))
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论