通过FolderBrowserDialog打开文件..如何?帮助!

发布于 2024-09-06 06:42:40 字数 718 浏览 3 评论 0原文

这就是我现在得到的...

    FolderBrowserDialog1.ShowDialog()
 TextBox1.Text = FolderBrowserDialog1.SelectedPath
    If FolderBrowserDialog1.SelectedPath = Nothing = True Then MsgBox("Select your folder..")
    If FolderBrowserDialog1.SelectedPath = Nothing = True Then Button1.Enabled = False
    If FolderBrowserDialog1.SelectedPath = Nothing = False Then Button1.Enabled = True
End Sub

    FileOpen(1, ,,,,,, & "File" & ".dll", OpenMode.Output)
    PrintLine(1, TextBox2.Text)
    FileClose()

End Sub

但我希望输出文件夹(保存 File.dll 的位置)为FolderBrowserDialog1.SelectedPath...怎么样?有人吗?

尝试了 FileOpen(1,FolderBrowserDialog1.SelectedPath & File & .dll, OpenMode.Output) 但没有:(

This is what i got now...

    FolderBrowserDialog1.ShowDialog()
 TextBox1.Text = FolderBrowserDialog1.SelectedPath
    If FolderBrowserDialog1.SelectedPath = Nothing = True Then MsgBox("Select your folder..")
    If FolderBrowserDialog1.SelectedPath = Nothing = True Then Button1.Enabled = False
    If FolderBrowserDialog1.SelectedPath = Nothing = False Then Button1.Enabled = True
End Sub

    FileOpen(1, ,,,,,, & "File" & ".dll", OpenMode.Output)
    PrintLine(1, TextBox2.Text)
    FileClose()

End Sub

But i want the Output folder (The place where File.dll is saved) to be the FolderBrowserDialog1.SelectedPath... how? Anyone?

Tried FileOpen(1, FolderBrowserDialog1.SelectedPath & File & .dll, OpenMode.Output) but no :(

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

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

发布评论

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

评论(1

_畞蕅 2024-09-13 06:42:40

请注意,我确定我明白您想要做什么,但您可以尝试在调用 ShowDialog 方法之前设置 SelectedPath 属性。

Note sure I understand what you want to do, but you may try to set the SelectedPath property before calling ShowDialog method.

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