转换.doc资源文件Word.Document对象

发布于 2024-10-25 00:53:52 字数 179 浏览 4 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年 2024-11-01 00:53:52

如果将 Word Doc 文件作为二进制 blob 存储到资源中,则应该自动在 resources.designer.vb 文件中创建一个函数,如下所示:

Friend ReadOnly Property MyFile() As Byte()
    Get
        Dim obj As Object = ResourceManager.GetObject("MyFile", resourceCulture)
        Return CType(obj,Byte())
    End Get
End Property

它将返回包含文件完整内容的字节数组。只需将该字节数组写入文件并将其命名为您的原始 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:

Friend ReadOnly Property MyFile() As Byte()
    Get
        Dim obj As Object = ResourceManager.GetObject("MyFile", resourceCulture)
        Return CType(obj,Byte())
    End Get
End Property

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文