精彩推荐
本类推荐下载
本类下载排行
DBGridEh多表头输出到Excel模块
- 软件评价:

- 软件语言:简体中文
- 授权方式:免费软件
- 运行环境:Delphi
- 软件大小:16KB
- 是否推荐:否 相关评论
- 收录/更新:2008-01-16/2008-01-16
- 下载次数:
- 演示地址:
- 作者主页:
- 联系作者:
- 软件简介:
双线服务器租用仅599元 点击网络-
最近有用到DBGridEh,但是多表头的输出一直是个问题,于是根据DisplayLabel自己写了个模块
有两个BUG
第一个bug,在删除多余变量是误删除了
//合并当前行
procedure UionCurrRowCell(CR:Integer);
var
i,SC:integer;//这里 i 误删除了
第二个bug,
//合并当前行
procedure UionCurrRowCell(CR:Integer);
var
i,SC:integer;
function GetNextCUCell(SC:Integer):Integer;
var
i:Integer;
begin
Result:=-1;
i:=SC+1;
while (Result=-1) and (ibegin
if MyCells[CR,i].Used then //修改这里
if (MyCells[CR,i].Text<>‘) then Result:=i;
