View Single Post
  #6  
Unread 06-04-2005, 10:41 AM
taco-man's Avatar
taco-man taco-man is offline
EQ2MAP Updater Author
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Nov 2004
Server: Antonia Bayle
Posts: 1,349
Default

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
__________________
EQ2MAP Updater Download
EQ2MAP Website
How to Install a custom interface
Reply With Quote