PDA

View Full Version : Open URL



nrodes
13-02-2009, 03:25
I've done some searching and I can't find anything... Is there a way to open a URL in the default browser?

ErosOlmi
13-02-2009, 08:07
See OS_shellexecute function.

Example:


uses "OS"

OS_shellexecute("open", "iexplore", "http://community.thinbasic.com/", "", 1)


Ciao
Eros

Michael Hartlef
13-02-2009, 08:15
Or even a more short version, browser independant I guess.




uses "os"

os_shellexecute ("open","http://www.thinbasic.com","","",1)

ErosOlmi
13-02-2009, 08:24
Correct Mike.
Browser independant, so yours is a preferable solution.