angelone Member Licensed User Longtime User Apr 5, 2012 #1 Dear all, i have a simple question: is possible to click on button and open an url in default web browser? thank's a lot, Angelo
Dear all, i have a simple question: is possible to click on button and open an url in default web browser? thank's a lot, Angelo
NJDude Expert Licensed User Longtime User Apr 5, 2012 #2 Like this: B4X: Sub Button1_Click Dim i As Intent i.Initialize(i.ACTION_VIEW, "http:") StartActivity(i) End Sub Upvote 0
Like this: B4X: Sub Button1_Click Dim i As Intent i.Initialize(i.ACTION_VIEW, "http:") StartActivity(i) End Sub
angelone Member Licensed User Longtime User Apr 5, 2012 #3 woww... thank's a lot, i do not belive it was so simple! :sign0013: Upvote 0