首页 > 开发 > JS > 正文

Open and Print a Word Document

2024-09-06 12:42:08
字体:
来源:转载
供稿:网友
Demonstration script that opens and prints and existing Microsoft Word document. 
代码如下:
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open("c:/scripts/inventory.doc")

objDoc.PrintOut()
objWord.Quit

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表