VC6使用word2003生成报表的示例

时间:2010-12-10 06:12:34
【文件属性】:

文件名称:VC6使用word2003生成报表的示例

文件大小:492KB

文件格式:RAR

更新时间:2010-12-10 06:12:34

vc6 word 报表

摘要:当用户需要对报表需要重新编辑的时候,用Excel或者Word生成报表就会比XML或者HTML的方式更加合理。但是由于Word的组件在使用时候要导入很多类,如果直接加在工程中会使其看上去很乱,所以封装到DLL中是个不错的主意。本文在前人经验指导下对一些常用的操作做了简单的封装,功能由从DLL中导出类CWordOperate提供。



关键字:Word2003,MFC扩展DLL,报表,CWordOperate



一、 鉴于www.vckbase.com中已经有文章对vc使用word生成报表方式做详细的论述,这里不准备对此赘述。仅仅介绍封装类CWordOperate中的函数和DLL的使用。


#include "msword.h"

class AFX_EXT_CLASS CWordOperate
{
public:
CWordOperate();
virtual ~CWordOperate();

BOOL CreateWordApp(BOOL bShow); // 创建一个word应用程序
void DeleteApp(); // 用后,删除
void ShowApp(BOOL bShow); // 显示,或者隐藏
void QuitApp(); // 关闭外部打开的word应用程序

BOOL NewDoc(CString tpName); // 根据模板创建文档
void SaveDoc(CString Filename); // 保存文档到文件路径

void TypeText(CString Text); // 在当前位置输入文字
void SetTextAlign(int val); // 设置文字对齐方式
void SetTextColor(COLORREF cr); // 设置文本颜色

void AddPic(CString FileName); // 在当前位置插入图片文件
void RunMacro(CString macroName); // 运行一个宏

void AddTable(int nRow, int nCol); // 加一个几行几列的表格
void AddTable(int nRow, int nCol, int autoFit); // 加一个几行几列的表格,列宽度自动
void SelectTable(int i); // 选择当前文档中的第i个表格
void MoveToTableNext(int iTable); // 把选择区指向表格后面
void SetCellText(int iTable, int iRow, int iCol, CString text); // 设置第i个表格中的某行某列的文字

void SetTableTextVAlign(int iTable, int val); // 置第i个表格中文字对齐方式
void SetColWidth(int iTable, int iCol, float width); // 设置列宽度
void SetRowHeight(int iTable, int iRow, float height); // 设置行高度

// 合并两个单元格之间的区域
void MergeCell(int iTable, int cell1Row, int cell1Col, int cell2Row, int cell2Col, CString text);
// 设置单元格文本颜色
void SetCellTextColor(int iTable, int iRow, int iCol, COLORREF cr);
// 设置单元格背景颜色
void SetCellColor(int iTable, int iRow, int iCol, COLORREF crCell);

// 设置单元格边框的四周风格,
void SetCellBorderStyle(int iTale, int iRow, int iCol, int sTop, int sLeft, int sBottom, int sRight);

// 设置两个单元格之间的区域,边框的四周风格,
void SetCellsBorderStyle(int iTable, int iRow1, int iCol1, int iRow2, int iCol2,int sTop,
int sLeft, int sBottom, int sRight);

// 设置两个单元格之间的区域,背景颜色
void SetCellsColor(int iTable, int iRow1, int iCol1, int iRow2, int iCol2, COLORREF crCell);

CString ToString();

protected:
_Application app; // 应用程序
Selection sel; // 用来存放获得的选择范围
_Document saveDoc; // 当前活动文档
COleVariant vTrue; // 常量TRUE
COleVariant vFalse;
COleVariant vOpt;
};






二、使用DLL中导出类的方法:


#include "WordOperate.h"
#pragma comment(lib, "wordDll.lib")

在类中定义成员:
CWordOperate wordFile;


使用示例:

// 创建文件
CString str;
COLORREF crCell = RGB(240, 240, 240);
char buffer[255];
wordFile.CreateWordApp(TRUE);
GetCurrentDirectory(254, buffer);
strcat(buffer, "\\tp.doc");
wordFile.NewDoc(buffer);

// 表格使用
wordFile.AddTable(8, 11);
wordFile.SelectTable(1);
wordFile.MergeCell(iTable, 1, 6, 1, 8, "频域数据");
crCell = RGB(255, 0, 0);
wordFile.SetCellColor(iTable, 3, 2, crCell);
wordFile.MoveToTableNext(1);

// 写文字
wordFile.TypeText("二. 分析图:\r\n");

// 插入图片
GetCurrentDirectory(254, buffer);
strcat(buffer, "\\chart.jpg");
wordFile.AddPic(buffer);

// 保存文件,删除对象
GetCurrentDirectory(254, buffer);
strcat(buffer, "\\测试报表.doc");
wordFile.SaveDoc(buffer);
wordFile.DeleteApp();

// 也可以在删除对象前先关闭程序
wordFile.QuitApp();





三、使用压缩包的测试程序,按钮二能提供的效果如下图:


图一 Word报表效果屏幕截图



四、说明:
开发环境为:vc6 + sp6 + xp_sdk
Word版本:2003企业版

压缩包说明:wordDll为库的代码,TestDll为使用示例,宏.txt是格式化段落的宏

附加:如果想知道函数中使用的值应该为多少,可以在Word操作的时候录制宏,然后使用单步调试的方式得到想要的值。
注:本着开源的精神,把这个使用过的类和大家分享,希望大家有用,如果有错误的地方,希望指正,谢谢


【文件预览】:
wordDll 07-04-19
----宏.txt(2KB)
----wordDll()
--------wordDll.aps(18KB)
--------wordDll.ncb(1.09MB)
--------StdAfx.cpp(209B)
--------wordDll.def(187B)
--------wordDll.cpp(2KB)
--------msword.cpp(268KB)
--------wordDll.plg(3KB)
--------wordDll.odl(353B)
--------wordDll.rc(3KB)
--------wordDll.clw(156B)
--------wordDll.dsw(537B)
--------msword.h(69KB)
--------wordDll.dsp(4KB)
--------ReadMe.txt(3KB)
--------StdAfx.h(1KB)
--------WordOperate.h(2KB)
--------Resource.h(379B)
--------WordOperate.cpp(12KB)
--------res()
--------wordDll.opt(130KB)
----dllTest()
--------dllTest.ncb(121KB)
--------StdAfx.cpp(209B)
--------wordDll.lib(11KB)
--------dllTest.aps(35KB)
--------dllTest.plg(1KB)
--------dllTest.opt(48KB)
--------tp.doc(36KB)
--------dllTestDlg.h(2KB)
--------wordDll.dll(328KB)
--------dllTest.cpp(2KB)
--------Debug()
--------ReadMe.txt(4KB)
--------dllTest.dsp(4KB)
--------StdAfx.h(1KB)
--------dllTestDlg.cpp(12KB)
--------dllTest.rc(5KB)
--------Resource.h(777B)
--------dllTest.h(1KB)
--------dllTest.dsw(537B)
--------res()
--------dllTest.exe(112KB)
--------测试报表.doc(167KB)
--------chart.jpg(71KB)
--------dllTest.clw(1KB)

网友评论

  • 可以使用哈,谢谢呢
  • 解决了我的问题,希望能对大家有帮助
  • 不错,能用!
  • 很多的一个东西,解决了我的大问题
  • 可编译调试,只是对表格操作,如果能对图表操作就更好了,谢谢分享。
  • 代码写的不错,很好用
  • 这个很不错,很有用!基本上包括所有对word的操作了。
  • 具有较高的参考价值和示范作用。
  • 完全符合我的要求 自己稍微改改就可以用了
  • 这个必须赞了,google了半天 觉得最好最实用的的。五星推荐!!!
  • 不错的源程序,值得推荐!
  • 确实不错,代码都提供出来了的
  • 代码实现的功能全面,基本上对WORD的操作都实现了,很有用!
  • 很好的东西,代码很详细
  • 分装dll的思路很好,就是缺少设置字体的函数
  • 功能很强大,学习了
  • 好东西,代码很详细,很容易就改成适合我程序的代码了。
  • 不错的产品,能直接生成就好了
  • 唯一想说的就是,太好了!怎么没有早一点找到呢! 感谢提供者,更感谢csdn
  • 做的很好,就是在程序运行时会直接打开word,最好能把报表结果能放在程序中某个界面