VBA 到 VB.NET Excel 文件保存问题

发布于 2024-12-10 09:35:39 字数 295 浏览 0 评论 0原文

我需要将 VBA 应用程序移植到 VB.NET,只有一个问题 excel 无法保存我的模板。

Excel 打开正确的文件,它向我显示保存文件对话框,只有一个问题,它不会保存任何文件,但是它不会给我错误,但不会返回文件路径,因为它不保存随处归档。

Filepath = Xl.GetSaveAsFilename("", "Excel file (*.xls), *.xls", , "titel")
    GeluidschermUserform.Excelfilenaam.Text = Filepath

I need to port a VBA app to VB.NET, there is only one problem excel won't save my template.

Excel opens the right file and it shows me the save file dialog, only one problem it won't save any file, however it won't give me an error but won't return me the file path because it doesn't save the file anywhere.

Filepath = Xl.GetSaveAsFilename("", "Excel file (*.xls), *.xls", , "titel")
    GeluidschermUserform.Excelfilenaam.Text = Filepath

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

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

发布评论

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

评论(1

北陌 2024-12-17 09:35:39
Application.DisplayAlerts = False
Xl.SaveAs Filepath
Application.DisplayAlerts = True
Application.DisplayAlerts = False
Xl.SaveAs Filepath
Application.DisplayAlerts = True
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文