如何使用 Visual Studio 项目资源中的 Excel 文件

发布于 2024-09-05 02:34:23 字数 112 浏览 1 评论 0原文

我将一个 excel 文件添加到我的项目资源中,我想打开它,但方法 woorkobook.open() 仅采用路径字符串作为参数:-(

从资源中打开和使用这些 excel 文件的正确方法是什么?

I add an excel file to my project resource, and I would like to open it, but method woorkobook.open() take only path string as parameter :-(

What is the proper way to open and use those excel files from resource?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

舂唻埖巳落 2024-09-12 02:34:24

Office 应用程序出现在 .NET Streams 时代之前。这些应用程序仅适用于物理文件。您必须将资源复制到物理文件或使用第三方组件。

        Dim sPath As String = My.Computer.FileSystem.GetTempFileName
        My.Computer.FileSystem.WriteAllBytes(sPath, My.Resources.us, False)

Office applications are before the time of .NET Streams. The applications only work with physical files. You must copy the resource to a physical file or use a third-party component.

        Dim sPath As String = My.Computer.FileSystem.GetTempFileName
        My.Computer.FileSystem.WriteAllBytes(sPath, My.Resources.us, False)
醉殇 2024-09-12 02:34:24

在VS中,如果将“复制到输出目录”属性设置为“始终复制”,则在添加到项目中的excel文件上,您可以直接使用文件名作为路径值。

in VS, if you set the property "Copy to Output Directory" to "Copy always", on the excel file you've added to your project, you can then directly use the name of your file as the value of the path.

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