Подскажите плиз как определить, какой файл был выбран в OpenFile.
Пытался: ,но значение strWhatFile принимает nothing
Public Class Form1
Inherits System.Windows.Forms.Form
Dim strWhatFile As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
OpenFileDialog1.ShowDialog()
strWhatFile = OpenFileDialog1.FileName
strWhatFile = TextBox1.Text
End Sub
End Class
и так пытался:
Public Class Form1
Inherits System.Windows.Forms.Form
Dim strWhatFile As String
Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk
OpenFileDialog1.ShowDialog()
strWhatFile = OpenFileDialog1.FileName
strWhatFile = TextBox1.Text
End Sub
может кто подскажет в чем проблема или подбросит рабочий код?