Trong ứng dụng của bạn, bạn sẽ muốn sử dụng "OpenFileDialog" để người dùng có thể chọn tệp. Xem ví dụ bên dưới:
Dim ofd As New OpenFileDialog
ofd.Filter = "*.png|PNG|*.jpg|JPEG" 'Add other exensions you except here
ofd.Title = "Choose your folder"
'ofd.InitialDirectory = "c:\SomeFolder..." 'If you want an initial folder that is shown, otherwise it will use the last folder used by this appliaction in an OFD.
If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
'Something = ofd.FileName 'Do something with the result
End If
Sau đó lưu kết quả của ofd.FileName
trong bảng của bạn. Đây sẽ là đường dẫn đầy đủ và tên của tệp họ đã chọn.