I'm fairly new at Visual basics and have not really played much with C+ or C++ class Any how I made a launcher for a friend"s server, I am working with Microsoft Visual Studio 2010 Ultimate, Anyway the Launcher does what it is intended to do . Start the client and auto patch . the Forms declarations are as fallows:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Shell("soul.exe")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Shell("AutoPatch.exe")
End Sub
End Class
My problem is that it will not auto close the launcher when the client starts , Do i need to insert a finalize insert to have it exit when the client is initialized ? Can anyone help me out with this please? and thank you
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Shell("soul.exe")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Shell("AutoPatch.exe")
End Sub
End Class
My problem is that it will not auto close the launcher when the client starts , Do i need to insert a finalize insert to have it exit when the client is initialized ? Can anyone help me out with this please? and thank you