Hello,
Below is the code which i use to browse the images from gallery. Here when i press the button browse, it is listing the filenames of the images.
But instod of displaying the filenames i want to show the images.
When i select and click on any image then i should get that particular filename of the image that i clicked.
How can i do this...?
Sub btnFile_Click
Dim fd As FileDialog
Dim fileList As List
fd.FastScroll = True
fd.FilePath = File.DirRootExternal&"/DCIM"
ret = fd.Show("B4A File Dialog", "Yes", "No", "Maybe", Bmp)
If fd.ChosenName <> "" Then
File.MakeDir(File.DirRootExternal , "images")
File.Copy(fd.FilePath,fd.ChosenName,File.DirRootExternal & "/images",fd.ChosenName)
Else
Msgbox("You have not selected any file","Select file")
End If
End Sub