本文介绍了在VB2010服务中打开Word文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
我尝试在VB2010服务中打开Word文档.在装有WXP/Word2007的PC上可以正常工作,但是不能在装有W7/Word2010的PC上运行.
这段代码返回"_document=nothing":
Hi there,
I try to open a Word document in a VB2010 service. This works fine on a PC with WXP/Word2007, however it will not run on a PC with W7/Word2010.
This code returns "_document=nothing":
_document = _word.Documents.Open(FileName:=CType(psTemplate, Object), _
ConfirmConversions:=False, _
ReadOnly:=True, _
AddToRecentFiles:=False, _
PasswordDocument:=String.Empty, _
PasswordTemplate:=String.Empty, _
Revert:=False, _
WritePasswordDocument:=String.Empty, _
WritePasswordTemplate:=String.Empty, _
Format:=0)
非常感谢,
Gerard
Many thanks,
Gerard
推荐答案
这篇关于在VB2010服务中打开Word文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!