well now i KNOW its not something my program is doing, i made a program in vb that just has a button and the whole code for the program is just
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim p As New Process
With p.StartInfo
.FileName = "EverQuest2.exe"
.WorkingDirectory = "D:\Program Files\Sony\EverQuest II"
.WindowStyle = ProcessWindowStyle.Normal
End With
p.Start()
End Sub
and yet it still launches EQ2.exe