作者在 2015-04-09 01:04:09 发布以下内容
来源:http://bbs.bccn.net/viewthread.php?tid=432056&extra=&highlight=word&page=3
oWord = CREATEOBJECT('Word.Application') && 建立 WORD 对象
oWord.Documents.Open('d:\file.doc') && 打开 d:\file.doc
oWord.PrintOut(,,4,,,,,1,"1-3,5") && 打印第1-3,5页,其中:4 表示打印指定页范围,1 表示打印1份,1-3,5 表示打印范围
oWord.Quit