आपके आवेदन में, आप "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
. का रिजल्ट सेव कर लें आपकी टेबल में। यह उनके द्वारा चुनी गई फ़ाइल का पूरा पथ और नाम होगा।