アプリケーションでは、ユーザーがファイルを選択できるように「OpenFileDialog」を使用する必要があります。以下の例を参照してください:
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
ofd.FileName
の結果を保存します。 あなたのテーブルで。これが、選択したファイルのフル パスと名前になります。