gpt4 book ai didi

Vb.net - 文件夹浏览器对话框

转载 作者:行者123 更新时间:2023-12-03 09:24:06 25 4
gpt4 key购买 nike

我在使用 FolderBrowserDialog 时遇到了一些问题我已经尝试了我能在这里找到的所有帖子,而且就我想要的而言,我几乎就在那里。以下是我的代码:

Private Sub ButtonBrowseOutput_Click(sender As Object, e As EventArgs) Handles ButtonBrowseOutput.Click
Dim dialog = New FolderBrowserDialog()
dialog.SelectedPath = Application.StartupPath
If DialogResult.OK = dialog.ShowDialog() Then
TextBoxShowOutput.Text = dialog.ToString & "/helloforum" & ".txt"
End If
End Sub

会给我这样的东西:

System.Windows.Forms.FolderBrowserDialog/helloforum.txt

我希望它给出的位置例如:

c:/users/sexyname/desktop/helloforum.txt

最佳答案

TextBoxShowOutput.Text = dialog.ToString & "/helloforum" & ".txt"

必须是:

TextBoxShowOutput.Text = dialog.SelectedPath & "/helloforum" & ".txt"

关于Vb.net - 文件夹浏览器对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25260409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com