Run Url with default browser

pdabasic

Active Member
Licensed User
Hello!

I would like to run one url with my browser, now it looks like this:
Shell("c:\LiberKey\Apps\Firefox\FirefoxLKL.exe",url)

But an other pc not sure there is the browser place.

Thank You
 

specci48

Well-Known Member
Licensed User
Longtime User
Hi pdabasic,

you can do it like this:
B4X:
url = "http://www.b4x.com"
Shell("cmd.exe", "/c start " & url)

specci48
 
Top