如果启用了多选功能,我将在打开的文件对话框中放入什么代码。 我目前有这个代码,但它只在文本框中显示已选择的最后一个文件。
Dim strm As System.IO.Stream
strm = OpenFileDialog3.OpenFile()
TextBox3.Text = OpenFileDialog3.FileName.ToString()
If Not (strm Is Nothing) Then
//insert code to read the file data
strm.Close()
MessageBox.Show("Done!")
End If
答案 0 :(得分:1)
使用FileNames属性。它返回一个包含所有选定文件的字符串数组。
TextBox3.Text = String.Join(Environment.NewLine, OpenFileDialog3.FileNames)
' Displays each filename on a separate line