16,717
社区成员
发帖
与我相关
我的任务
分享
Dim WObj As New Word.Application
Dim WDoc As Word.Document = WObj.Documents.Open("d:\temp\c.doc")
MsgBox(WDoc.Content.Text)
WDoc.Close(False)
WDoc = Nothing
WObj.Quit()
WObj = Nothing