I am trying to send a file by email or bluetooth or something like that. This code was correct but now doesnt work.
I attach a pic with the error message.
Could you help me please?
Thank you very much indeed in advance.
Intent:
Sub Envio_Click
Dim u As Uri
u.Parse("file://" & File.Combine(File.DirDefaultExternal,"l4pro.sql"))
Dim i As Intent
i.Initialize(i.ACTION_SEND, "")
i.SetType("*/*")
i.PutExtra("android.intent.extra.STREAM",u)
StartActivity(i)
End Sub
I attach a pic with the error message.
Could you help me please?
Thank you very much indeed in advance.