博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从VBA到Delphi
阅读量:6267 次
发布时间:2019-06-22

本文共 1316 字,大约阅读时间需要 4 分钟。

 

我一般用OLE方式处理office系列的数据。

一、定义

WordApp: variant;

CurrDoc: variant;
Selection: variant;

二、初始化

WordApp.Visible := true;

CurrDoc := WordApp.documents.Open(AFullFileName, Revert := true, Visible := true);
Selection := CurrDoc.ActiveWindow.Selection;//好处在于不用怕打开关闭其它word文档而出错

三、释放处理

if not VarIsEmpty(CurrDoc) then

begin
try
CurrDoc.save;
CurrDoc.close;
except

end;

end;

CurrDoc := Unassigned;
if not VarIsEmpty(WordApp) then
begin
try
WordApp.quit;
except

end;

end;

WordApp := Unassigned;
Selection := Unassigned;

以上是基本处理。

五、VBA到delphi的处理方法

首先请先下载我的另一博文的,方便参考。

下面仅举几个例子如何从vba代码中转为delphi代码。

这一部分为VBA代码

//Debug.Print Selection.Information(wdEndOfRangeColumnNumber) '17结束列

//Debug.Print Selection.Information(wdEndOfRangeRowNumber) '14结束行
//Debug.Print Selection.Information(wdStartOfRangeColumnNumber) '16开始列
//Debug.Print Selection.Information(wdStartOfRangeRowNumber) '13开始行
Delphi代码:

bCol := Selection.Information[16];//其中Selection是有定义的,看前面才可以有和VBa类似

eCol := Selection.Information[17];//information这是selection的属性。VBA中是用()但是在delphi是用[]
bRow := Selection.Information[13];//调用属性有参数时delphi是[],VBA是()函数或事件都是()
eRow := Selection.Information[14];

VBA转成delphi很多部分可以抄,但是有细微的差别。这个要注意。

六、我的应用中要读取当前光标的是在表格那个位置,但是word的表格数据读取,很麻烦。

我用了这个来处理

Selection.paragraphs.item(1).range.text := '';

转载于:https://www.cnblogs.com/CatDo/p/4502855.html

你可能感兴趣的文章
Linux 格式化扩展分区(Extended)
查看>>
linux echo命令
查看>>
nginx 内置变量大全(转)
查看>>
lakala反欺诈建模实际应用代码GBDT监督学习
查看>>
java 解析excel工具类
查看>>
Google FireBase - fcm 推送 (Cloud Messaging)
查看>>
BBS论坛(二十七)
查看>>
html DOM 的继承关系
查看>>
装饰器的邪门歪道
查看>>
Dubbo常用配置解析
查看>>
【转】C#解析Json Newtonsoft.Json
查看>>
macports的安装及常用命令
查看>>
(转)使用C#开发ActiveX控件
查看>>
spring mvc 基于注解 配置默认 handlermapping
查看>>
半小时学会上传本地项目到github
查看>>
Android学Jni/Ndk 开发记录(一)
查看>>
Linux Tcl和Expect的安装
查看>>
WPF中的依赖项属性(转)
查看>>
linux防火墙相关 iptables
查看>>
最简单的单例模式
查看>>