不将 SaveFileDialog 写入 InputBox
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在
InputBox
参数中再次调用ShowDialog
。这会再次显示该对话框。 (正如您从名称中所期望的那样)
您可能正在寻找
FileName
属性。You're calling
ShowDialog
again in theInputBox
parameter.This shows the dialog again. (as you can expect from the name)
You're probably looking for the
FileName
property.您不应该调用 showdialog 方法两次,只需保存第一次调用的结果即可。请参阅此
抱歉,链接错误。尝试这个
You shouldn't call the showdialog method twice, just save the result from the first call. See this
Sorry, wrong link. Try this