以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  可以连接word打印么  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=99637)

--  作者:yc306223636
--  发布时间:2017/4/23 12:40:00
--  可以连接word打印么
我也是听说这款软件,打算来看看,我想咨询各位大神,这个软件只能打表格么?可不可以打印word文档


--  作者:有点色
--  发布时间:2017/4/23 12:52:00
--  

 打印什么都可以

 

Dim app As New MSWord.Application
try
    Dim fileName = "d:\\test.doc"
    Dim doc = app.Documents.Open(fileName)
    app.visible = True
    doc.PrintPreview
catch ex As exception
    msgbox(ex.message)
    app.Quit
finally
   
End try