Content Chooser problem

erfan

Member
Licensed User
Longtime User
hi Erl

Im using content chooser in my project but it doesn't work correctly

i don't understand what is the problem

pleas help

thanks
 
Last edited:

erfan

Member
Licensed User
Longtime User
when i tap on a picture to choose it i get this error :
"no such file or directory"

code :
Sub chooser_Result (Success As Boolean, dir As String, FileName As String)
If Success = True Then
File.Copy(dir,FileName,File.DirRootExternal,"Image.jpg")

StartActivity("send")
Else
ToastMessageShow("تصویری انتخاب نشده است",True)
End If
End Sub
 
Top