經常看到有網友發帖子詢問如何將ListView中的內容導出到Excel或Word文檔中,其實在BCB中用OLE技術來操作,並不復雜,大概是有的人懶的寫吧,於是ccrun(老妖)花了點時間寫了以下兩個函數,實現了將本程序中ListView中內容導出到Excel文檔和Word文檔。看在寫代碼很辛苦的份上,請在轉載時留下出處和原作者信息。Thank了。:D
如果您有好的想法,歡迎來信討論: [email protected]
2005.10.13 v0.2
+ 導出表格增加了標題一欄
2005.10.12 v0.1
初版發布
//---------------------------------------------------------------------------
// 將ListView中的內容導出到Word文檔
// v0.2 by ccrun(老妖) 2005.10.13
//---------------------------------------------------------------------------
void __fastcall ListView2Word(TListView *lv, String strDocFile)
{
Variant vWordApp, vTable, vCell;
try
{
vWordApp = Variant::CreateObject("Word.Application");
}
catch(...)
{
MessageBox(0, "啟動 Word 出錯, 可能是沒有安裝Word.",
"ListView2Doc", MB_OK | MB_ICONERROR);
vWordApp = Unassigned;
return;
}
// 隱藏Word界面
vWordApp.OlePropertySet("Visible", false);
// 新建一個文檔
vWordApp.OlePropertyGet("Documents").OleFunction("Add");
//
Variant vSelect = vWordApp.OlePropertyGet("Selection");
// 設置一下字體,大小
vSelect.OlePropertyGet("Font").OlePropertySet("Size", lv->Font->Size);
vSelect.OlePropertyGet("Font").OlePropertySet("Name", lv->Font->Name.c_str());
// 要插入表格的行數
int nRowCount(lv->Items->Count + 1);
nRowCount = nRowCount < 2? 2: nRowCount;
// 要插入表格的列數
int nColCount(lv->Columns->Count);
nColCount = nColCount < 1? 1: nColCount;
// 在Word文檔中插入與ListView行數列數相同的一個表格
vWordApp.OlePropertyGet("ActiveDocument").OlePropertyGet("Tables")
.OleProcedure("Add",
vSelect.OlePropertyGet("Range"),
nRowCount, // 行數
nColCount, // 列數
1, // DefaultTableBehavior:=wdWord9TableBehavior
0); // AutoFitBehavior:=wdAutoFitFixed
// 操作這個表格
vTable = vWordApp.OlePropertyGet("ActiveDocument").
OleFunction("Range").OlePropertyGet("Tables").OleFunction("Item", 1);
// 設置單元格的寬度
for(int i=0; i<nColCount; i++)
{
int nColWidth;
if(lv->Columns->Count > i)
nColWidth = lv->Columns->Items[i]->Width;
else
nColWidth = 100; // 如果沒有設置列,就隨便設置個默認值
vTable.OlePropertyGet("Columns").OleFunction("Item", i + 1)
.OlePropertySet("PreferredWidthType", 3); // wdPreferredWidthPoints
vTable.OlePropertyGet("Columns").OleFunction("Item", i + 1)
.OlePropertySet("PreferredWidth", nColWidth * 2);
}
//----------------------------------------------------------------------------
// 抱歉,這個提示又來了,為了防止不負責任的轉載者,只好在此留些信息。
// 作者:ccrun(老妖) [email protected]
// 本文轉自 C++Builder 研究 - http://www.ccrun.com/article/go.asp?i=633&d=vytvc6
//----------------------------------------------------------------------------
// 將列名寫入Word表格先
for(int i=0; i<lv->Columns->Count; i++)
{
vCell = vTable.OleFunction("Cell", 1, i + 1);
vCell.OlePropertySet("Range", lv->Columns->Items[i]->Caption.c_str());
// 列名單元格背景顏色 // wdColorGray125
vCell.OlePropertyGet("Shading")
.OlePropertySet("BackgroundPatternColor", 14737632);
}
// 將ListView中的數據寫入Word表格
for(int i=0; i<nRowCount - 1; i++)
{
// 63 63 72 75 6E 2E 63 6F 6D
vCell = vTable.OleFunction("Cell", i + 2, 1);
vCell.OlePropertySet("Range", lv->Items->Item[i]->Caption.c_str());
for(int j=0; j<lv->Items->Item[i]->SubItems->Count; j++)
{
if(lv->Columns->Count > j)
{
vCell = vTable.OleFunction("Cell", i + 2, j + 2);
vCell.OlePropertySet("Range",
lv->Items->Item[i]->SubItems->Strings[j].c_str());
}
}
}
// 保存Word文檔並退出
vWordApp.OlePropertyGet("ActiveDocument")
.OleProcedure("SaveAs", strDocFile.c_str());
vWordApp.OlePropertyGet("ActiveDocument").OleProcedure("Close");
Application->ProcessMessages();
vWordApp.OleProcedure("Quit");
Application->ProcessMessages();
vWordApp = Unassigned;
// 工作結束
MessageBox(0, "ListView2Doc 轉換結束!",
"ListView2Doc", MB_OK | MB_ICONINFORMATION);
}
//---------------------------------------------------------------------------
// 將ListView中的內容導出到Excel文檔
// v0.2 by ccrun(老妖) 2005.10.13
//---------------------------------------------------------------------------
void __fastcall ListView2Excel(TListView *lv, String strXlsFile)
{
Variant vExcelApp, vSheet;
try
{
vExcelApp = Variant::CreateObject("Excel.Application");
}
catch(...)
{
MessageBox(0, "啟動 Excel 出錯, 可能是沒有安裝Excel.",
"ListView2Excel", MB_OK | MB_ICONERROR);
vExcelApp = Unassigned;
return;
}
// 隱藏Excel界面
vExcelApp.OlePropertySet("Visible", true);
// 新建一個工作表
vExcelApp.OlePropertyGet("Workbooks").OleFunction("Add", 1); // 工作表
// 操作這個工作表
vSheet = vExcelApp.OlePropertyGet("ActiveWorkbook")
.OlePropertyGet("Sheets", 1);
// 設置Excel文檔的字體
vSheet.OleProcedure("Select");
vSheet.OlePropertyGet("Cells").OleProcedure("Select");
vExcelApp.OlePropertyGet("Selection").OlePropertyGet("Font")
.OlePropertySet("Size", lv->Font->Size);
vExcelApp.OlePropertyGet("Selection").OlePropertyGet("Font")
.OlePropertySet("Name", lv->Font->Name.c_str());
vExcelApp.OlePropertyGet("Selection").OlePropertyGet("Font")
.OlePropertySet("FontStyle", "常規");
vSheet.OlePropertyGet("Cells", 1, 1).OleProcedure("Select");
// 表格的行數
int nRowCount(lv->Items->Count + 1);
nRowCount = nRowCount < 2? 2: nRowCount;
// 表格的列數
int nColCount(lv->Columns->Count);
nColCount = nColCount < 1? 1: nColCount;
// 設置單元格的寬度
for(int i=0; i<nColCount; i++)
{
int nColWidth;
if(lv->Columns->Count > i)
nColWidth = lv->Columns->Items[i]->Width;
else
nColWidth = 100; // 如果沒有設置列,就隨便設置個默認值
vExcelApp.OlePropertyGet("Columns", i + 1)
.OlePropertySet("ColumnWidth", nColWidth / 2.6);
}
// 先將列名寫入Excel表格
for(int j=0; j<lv->Columns->Count; j++)
{
// 標題行的行高
vExcelApp.OlePropertyGet("Rows", 1).OlePropertySet("RowHeight", 20);
// 寫入標題
vSheet.OlePropertyGet("Cells", 1, j + 1)
.OlePropertySet("Value",
lv->Columns->Items[j]->Caption.c_str());
// 設置列名單元格的背景色
Variant vInter = vSheet.OlePropertyGet(
"Cells", 1, j + 1).OlePropertyGet("Interior");
vInter.OlePropertySet("ColorIndex", 15); // 灰色
vInter.OlePropertySet("Pattern", 1); // xlSolid
vInter.OlePropertySet("PatternColorIndex", -4105); // xlAutomatic
}
//----------------------------------------------------------------------------
// 抱歉,這個提示又來了,為了防止不負責任的轉載者,只好在此留些信息。
// 作者:ccrun(老妖) [email protected]
// 本文轉自 C++Builder 研究 - http://www.ccrun.com/article/go.asp?i=633&d=vytvc6
//----------------------------------------------------------------------------
// 將ListView中的數據寫入Excel表格
for(int i=0; i<nRowCount - 1; i++)
{
// 63 63 72 75 6E 2E 63 6F 6D
// 普通數據行的行高16
vExcelApp.OlePropertyGet("Rows", i + 2).OlePropertySet("RowHeight", 16);
//
vSheet.OlePropertyGet("Cells", i + 2, 1)
.OlePropertySet("Value", lv->Items->Item[i]->Caption.c_str());
for(int j=0; j<lv->Items->Item[i]->SubItems->Count; j++)
{
vSheet.OlePropertyGet("Cells", i + 2, j + 2)
.OlePropertySet("Value",
lv->Items->Item[i]->SubItems->Strings[j].c_str());
}
}
// 保存Excel文檔並退出
vExcelApp.OlePropertyGet("ActiveWorkbook")
.OleFunction("SaveAs", strXlsFile.c_str());
vExcelApp.OleFunction("Quit");
vSheet = Unassigned;
vExcelApp = Unassigned;
// 工作結束
MessageBox(0, "ListView2Excel 轉換結束!",
"ListView2Excel", MB_OK | MB_ICONINFORMATION);
}
// 測試代碼
ListView2Word(ListView1, "C:\\ccrun\\234.doc");
ListView2Excel(ListView1, "C:\\ccrun\\234.xls");