TGC Codebase Backup



website launch snippet by artanon15

11th Jan 2004 20:00
Summary

launches a website from within dark basic



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    rem this code can be shortened, but it was made longer to aid explanation.

rem specify Internet Browser filename
browser$="IEXPLORE.exe"

rem specify URL to open (note that you can't link to HTML files on the harddrive)
url$="www.darkbasic.com"

rem specify file folder the browser is in (leave blank if browser is in the same folder
rem as the program
brwdir$="C:\Program Files\Internet Explorer\"

rem specify wether or not the program should wait until user is done browsing (0/1)
progwait=1

rem execute browser
execute file browser$,url$,brwdir$,progwait