Creating Simple EO Launcher Using VB2008 or VB2010[video]
Author
Message
SpiritZ New User
Posts : 4 Points : 10 Terima Kasih : 1 Join date : 01/11/2011 Age : 26 Location : Kota Bharu , Kelantan
Subject: Creating Simple EO Launcher Using VB2008 or VB2010[video] Thu Dec 27, 2012 10:48 am
In case you missed the code for button here it is..
launch autopatch:: Code:
Try ''this start the process/file named autopatch.exe Process.Start(My.Computer.FileSystem.CurrentDirect ory & "/Autopatch.exe") Catch ex As Exception ''this handle the error if the file autopatch.exe is not exist in the current directory MsgBox(ex.Message) End Try
launch soul:: Code:
Try Process.Start(My.Computer.FileSystem.CurrentDirect ory & "/soul.exe", "blacknull") Catch ex As Exception MsgBox(ex.Message) End Try exit:: Code: