不将 SaveFileDialog 写入 InputBox

发布于 2024-11-09 05:18:08 字数 255 浏览 0 评论 0原文

Sub StoreUserData2()
    If SaveFileDialog1.ShowDialog() Then InputBox(MessageStor, TitleStor, SaveFileDialog1.ShowDialog)
    WriteUserFile()
End Sub

它允许我浏览和/或创建文件,但是当我单击“保存”按钮时,它将新文件目录传输到另一个“保存文件”对话框。我无法让它关闭搜索并将路径放入输入框中。

Sub StoreUserData2()
    If SaveFileDialog1.ShowDialog() Then InputBox(MessageStor, TitleStor, SaveFileDialog1.ShowDialog)
    WriteUserFile()
End Sub

It allows me to browse and/or create a file, but when I click the save button it transfers the new files directory to anothe savefiledialog box. I cant get it to close the search and place the path in the InputBox.

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

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

发布评论

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

评论(2

筱果果 2024-11-16 05:18:08

您在 InputBox 参数中再次调用 ShowDialog
这会再次显示该对话框。 (正如您从名称中所期望的那样)

您可能正在寻找 FileName 属性。

You're calling ShowDialog again in the InputBox parameter.
This shows the dialog again. (as you can expect from the name)

You're probably looking for the FileName property.

寻找我们的幸福 2024-11-16 05:18:08

您不应该调用 showdialog 方法两次,只需保存第一次调用的结果即可。请参阅


抱歉,链接错误。尝试这个

You shouldn't call the showdialog method twice, just save the result from the first call. See this


Sorry, wrong link. Try this

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