Opening url, exe, and folder.

BlitzMax Forums/BlitzMax Programming/Opening url, exe, and folder.

Curtastic(Posted 2007) [#1]
I want to make a program that:
1. opens a url in IE.
2. opens a EXE.
3. opens a folder.
4. then the program finishes executing immediately.

I want it to open them all at the same time.

Gimme da codez, thanks.


Gabriel(Posted 2007) [#2]
Won't _System() do all three?


Dreamora(Posted 2007) [#3]
No, all at the same time means pub.freeprocess -> createprocess

And if you want to get code, offer a payed bounty or get used to read documentations if you want to call yourself coder.

Board Search is your friend btw


Curtastic(Posted 2007) [#4]
I assumed some people would know this off the top of their head and then feel satisfied with their ability to help


Well I figured it out, here's what I did:
TProcess.Create("explorer C:\...", 0)
OpenURL("C:\....exe")
OpenURL("http://...")
Delay 6000

Seems easy now but it took me a while to get the right combination.