VBScript:向 MS“Word”添加一个单词2003年文件

发布于 2024-10-18 11:27:28 字数 222 浏览 2 评论 0原文

这是打开我的“fox.doc”的简短代码:

Set wd = CreateObject("Word.Application")
wd.Visible = True
Set doc = wd.Documents.Open("c:\fox.doc")

我只需要在该文档的末尾添加一个单词“bottle”(在打开之后)。为此,我应该在我的小 vbs 脚本中添加哪些行?

Here is a short code that opens my "fox.doc" :

Set wd = CreateObject("Word.Application")
wd.Visible = True
Set doc = wd.Documents.Open("c:\fox.doc")

I need to add only one word "bottle" in the end of this document (after it has been opened). Which lines should I add to my small vbs script for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青朷 2024-10-25 11:27:28

通过在 Word 中记录宏,然后进行通常很小的更改以使代码在 VBScript 中运行,您可以学到很多东西。

Set r = doc.Words.Last
r.InsertAfter (" bottle")

You can learn a lot by recording macros in Word and then making the, usually small, changes that will make the code work in VBScript.

Set r = doc.Words.Last
r.InsertAfter (" bottle")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文