Hi Erel,
I'm trying to use the following piece of code to send an email message when clicked on an item in a ListView. The item clicked holds an email address as String and, when clicked, copies the email address into the TO field of the email messenger. The problem is that it won't... It won't copy the email address and paste it into the TO field. Here is the code:
Dim Message As Email
Message.To.Add("[email protected]")
Message.Attachments.Add(File.Combine(File.DirRootExternal, "Somefile.txt "))
StartActivity(Message.GetIntent)
Please share if you have a solution for this, or if you think that I'm doing something wrong.
Thank you,
Brogrammer.
I'm trying to use the following piece of code to send an email message when clicked on an item in a ListView. The item clicked holds an email address as String and, when clicked, copies the email address into the TO field of the email messenger. The problem is that it won't... It won't copy the email address and paste it into the TO field. Here is the code:
Dim Message As Email
Message.To.Add("[email protected]")
Message.Attachments.Add(File.Combine(File.DirRootExternal, "Somefile.txt "))
StartActivity(Message.GetIntent)
Please share if you have a solution for this, or if you think that I'm doing something wrong.
Thank you,
Brogrammer.