如何使 Excel 加载项调试器以特定文件启动?

发布于 2024-11-08 19:45:17 字数 53 浏览 0 评论 0原文

我有 Excel 加载项项目,我需要在运行调试时使其打开特定的 Excel 文件。有想法吗?

I have Excel add-in project, and I need to make it open specific Excel file when I run debug. Ideas?

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

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

发布评论

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

评论(1

旧城烟雨 2024-11-15 19:45:17

我还没有测试过它,但将以下代码添加到启动事件应该可以做到:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
    #if DEBUG
        this.Application.Workbooks.Open(@"C:\file.xlsx");
    #endif
}

I haven't tested it but adding the following code to Startup event should do it:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
    #if DEBUG
        this.Application.Workbooks.Open(@"C:\file.xlsx");
    #endif
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文