1.The user presses an button.
2.The buttons sends him to his regular mobile browser and opens an link that I have defined previously.
3.He is now at the webpage in the same mode as if he would have been going there manually.
Sub Globals
Dim TheLink As String
End Sub
...
TheLink = "http://www.b4x.com"
Sub Button1_Click
Dim i As Intent
i.Initialize(i.ACTION_VIEW, TheLink)
StartActivity(i)
End Sub
Sub Globals
Dim TheLink As String
End Sub
...
TheLink = "http://www.b4x.com"
Sub Button1_Click
Dim i As Intent
i.Initialize(i.ACTION_VIEW, TheLink)
StartActivity(i)
End Sub