VBScript:向 MS“Word”添加一个单词2003年文件
这是打开我的“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过在 Word 中记录宏,然后进行通常很小的更改以使代码在 VBScript 中运行,您可以学到很多东西。
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.