Nella tua applicazione, vorrai utilizzare un "OpenFileDialog" in modo che l'utente possa scegliere il file. Vedi esempio sotto:
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
Quindi salva il risultato di ofd.FileName
nella tua tavola Questo sarà il percorso completo e il nome del file che hanno selezionato.