CyberFunk Productions Posted April 15, 2004 Posted April 15, 2004 I'm made a simple program to run internet explorer, but it won't run it, actually, the only thing i can run with the RUN command is notepad, heres my code: Run("iexplorer", "C:\Program Files\Internet Explorer", @SW_MAXIMIZE) Is there something wrong with this?
publicenemy Posted April 15, 2004 Posted April 15, 2004 Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE", "C:\Program Files\Internet Explorer", @SW_MAXIMIZE)
Guest Duc_john Posted September 22, 2004 Posted September 22, 2004 Here's an other possibility: ; Activte Webpage $Browser = "rundll32 url.dll,FileProtocolHandler" $URL = "http://www.mvnoordenveld.nl/" $Launch = "START /MIN " & $Browser & " " & $URL Run(@ComSpec & " /c " & Chr(34) & $Launch & Chr(34), "", @SW_MAXIMIZE) (Not my own invention but found it somewhere)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now