IonicWind Software

IWBasic => General Questions => Topic started by: Brian on August 01, 2011, 10:07:10 AM

Title: Accessing the internet
Post by: Brian on August 01, 2011, 10:07:10 AM
Hi,

I have a bitmap button, and with one click I want to load a certain URL
using whichever browser is the default

I don't want to particularly use the in-built browser commands, just
access this one page, without all the coding hassle

Any ideas?

Brian
Title: Re: Accessing the internet
Post by: LarryMc on August 01, 2011, 11:21:34 AM
CASE @IDCONTROL
SELECT @CONTROLID
case mybutton
System "http://www.ionicwind.com/"


Can't get much simpler ;)

LarryMc
Title: Re: Accessing the internet
Post by: Brian on August 01, 2011, 01:05:04 PM
Larry, you're right!

I never thought of using the System command - Duh!

Brian