这就是我现在得到的...
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) 但没有:(