En su aplicación, querrá usar un "OpenFileDialog" para que el usuario pueda elegir el archivo. Vea el ejemplo a continuación:
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
Luego guarde el resultado de ofd.FileName
en tu mesa Esta será la ruta completa y el nombre del archivo que seleccionaron.