In uw toepassing wilt u een "OpenFileDialog" gebruiken, zodat de gebruiker het bestand kan kiezen. Zie voorbeeld hieronder:
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
Sla vervolgens het resultaat op van ofd.FileName
in je tafel. Dit is het volledige pad en de naam van het bestand dat ze hebben geselecteerd.