Open and Print a Word Document
下面是个Open and Print a Word Document教程,撑握了其技术要点,学起来就简单多了。赶紧跟着图老师小编一起来看看吧!
代码如下:
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open("c:scriptsinventory.doc")
objDoc.PrintOut()
objWord.Quit


