Good morning how can i improve this code to insert data in my sqlite database
what B4a libraries can i use if iam to use this kind of code
what B4a libraries can i use if iam to use this kind of code
B4X:
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