trouble with intent

slydog43

Member
Licensed User
Longtime User
I have a dialing/sms app which uses this code

opens a panel with some buttons. One button has the code

Dim myIntent As Intent

myIntent.Initialize(myIntent.ACTION_VIEW, "sms:")
myIntent.PutExtra("address", "123-123-1234")
StartActivity(myIntent)
ExitApplication


which works fine by opening up the messaging app and exits my app. I think my app is exited since advanced task killer does NOT show it. But if I press the HOME button in the messaging app and I run this program again, it runs the messaging app instead of my menu. Very strange any ideas.
 
Top