Page 1 of 1
I need an app to open IE and display webpage.
Posted: Sun Mar 14, 2004 4:20 pm
by Mr Tickle
I've tried making a bootable cd to open an html webpage for the disk contents but just having autorun run the .htm page won't work.
Can any1 help me out?
Thanks in advance

Posted: Sun Mar 14, 2004 4:39 pm
by srod
Could you not use the RunProgram command?
E.g.
Code: Select all
RunProgram("c:\Program Files\Internet Explorer\IEXPLORE.EXE", "www.purebasic.com","c:\")
Posted: Sun Mar 14, 2004 5:08 pm
by Mr Tickle
Thanks srod for the quick reply
I simply used:-
Now I can get autorun to run my exe which loads my webpage.
Posted: Tue Mar 16, 2004 4:06 pm
by Beeps
You should be able to
Code: Select all
RunProgram("http://www.mysite.com")
and it'll open the page in your default browser.
Posted: Thu Mar 18, 2004 10:25 pm
by Joey
you could use the Webgadget() command, look it up in your help files. Thats what I use.