Dans votre application, vous allez vouloir utiliser un "OpenFileDialog" pour que l'utilisateur puisse choisir le fichier. Voir exemple ci-dessous :
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
Enregistrez ensuite le résultat de ofd.FileName
dans votre tableau. Ce sera le chemin complet et le nom du fichier qu'ils ont sélectionné.