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) 但没有:(

4

1 回答 1

0

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

于 2010-07-02T06:02:15.987 回答