阅读单词文档。使用 c#
我已经创建了一个应用程序。富文本框中的文本存储在word doc中。使用Word互操作DLL。现在我想将单词 doc 读回到我的 Richtextbox 中。
我使用oDoc.Content.Text
来阅读。它可以工作,但对齐不存在。我需要在单词文档中加载相同的配置。
我还使用了这段代码
oDoc.Activate();
oDoc.ActiveWindow.Selection.WholeStory();
oDoc.ActiveWindow.Selection.Copy()
IDataObject data = Clipboard.GetDataObject();
txtdocument.Text = Clipboard.GetDataObject()
.GetData(DataFormats.Text).ToString();
但它抛出了这个错误:
未将对象引用设置为对象的实例。
I have created an application. The text in the rich textbox is stored in word doc. using word interop dll. Now i want to read the word doc back to my richtextbox.
I used oDoc.Content.Text
to read. Its working but the alignment is not there. I need to load with the same alingment in the word doc.
And also i used this code
oDoc.Activate();
oDoc.ActiveWindow.Selection.WholeStory();
oDoc.ActiveWindow.Selection.Copy()
IDataObject data = Clipboard.GetDataObject();
txtdocument.Text = Clipboard.GetDataObject()
.GetData(DataFormats.Text).ToString();
But it throws this error:
Object reference not set to an instance of an object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的程序是单线程公寓吗?如果不是,
Clipboard
类将无法工作。参考
Is your program single threaded apartment? If not the
Clipboard
class will not work.Reference
Clipboard.GetDataObject();
可能会返回一个空引用,然后在最后一行中您尝试访问其成员替换最后一行
无论如何,只是作为一个建议,为什么您不用此 :
编辑:检查变量 oDoc、txtDocument 或 data 之一是否为空。
新编辑:
It may be possible that
Clipboard.GetDataObject();
returns a null reference and then in the very last line you try to access its memberAnyway just as a suggestion, why you dont replace the last line
with this:
EDIT: check if either one of your variables oDoc, txtDocument, or data is null..
NEW EDIT :