Yama might be having a bad day dont worry :P
@blubb, that gotta be the most stupid way of doing something tbh 
@omg i'll try to find the code for you, hang on
okay you make a timer sub or anything then you use this f.ex:
I tried to make something the way you said it.. is this what you ment:
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Process.Start("WWW.MMOWNED.COM")
ProgressBar1.Value = 100
If ProgressBar1.Value >= 100 Then
Process.Start("WWW.MMOGLIDER.COM")
End If
End Sub
This will start mmowned.com and set progressbar to full(100) in this case
and if the progressbar is 100 it will start mmoglider
ofcourse you could make an IF that would set it to 100 only once a certain process has been found and so on.. there are 100's of ways just play arround with it
you can make it more interesting like this:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
System.Diagnostics.Process.Start("WWW.MMOWNED.COM")
Dim processes() As Process
Dim instance As Process
Dim process As New Process()
processes = process.GetProcesses
For Each instance In processes
If instance.ProcessName = "MMowned - World of Warcraft Exploits, Hacks, Bots and Guides" Then
ProgressBar1.Value = 100
Else : ProgressBar1.Value = 50
End If
Next
If ProgressBar1.Value >= 100 Then
process.Start("WWW.MMOGLIDER.COM")
Else
MsgBox("Sorry, couldn't start mmowned.com")
End If
End Sub
so you tell your comp to open mmowned, then check if mmowned was opened if it was opened set the progress bar to full otherwise set it to half, if the progress bar was set to full then open mmoglider if it wasnt full (means it failed then give an error msgbox)
Keep in mind you need some kinda timer between starting mmowned and then searching for it because vb will do it almost instantly and therefore it will always say process not found
i hope i made sense.. im tired as hell