转换.doc资源文件Word.Document对象
在我的 VB.NET 项目中,我包含了一个名为 PrintOut.doc
的 Word 文档作为资源 (My.Resources.DocumentPrintOut
)
现在的问题是如何将此资源转换为Word.Document
对象以便可以打开和修改它?
in my VB.NET project I included a word document called PrintOut.doc
as resource (My.Resources.DocumentPrintOut
)
Now the question is how can I convert this resource to a Word.Document
object so that it is possible to open and modify it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将 Word Doc 文件作为二进制 blob 存储到资源中,则应该自动在 resources.designer.vb 文件中创建一个函数,如下所示:
它将返回包含文件完整内容的字节数组。只需将该字节数组写入文件并将其命名为您的原始 DOC 文件名,然后您就可以通过 word 打开它或使用它执行任何您需要的操作。
If you store the Word Doc file into your resources as a binary blob, you should automatically have a function created in your resources.designer.vb file, something like this:
that will return a byte array containing the complete contents of the file. Just write that Byte array to a file and name it your original DOC filename, and you can then open it via word or do whatever you need to with it.