Launcher Code

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 13, 2007
Messages
53
Reaction score
0
Well im making my launcher in VB, how would i make it launch my server when u press Command1?

I know there was something to do with the I.P in it but i forget it =/
 
Well im making my launcher in VB, how would i make it launch my server when u press Command1?

I know there was something to do with the I.P in it but i forget it =/

Code:
 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Shell("Trose.exe @TRIGGER_SOFT@ _server your.server.ip.here")
        Me.Close()
    End Sub

is the the part you are looking for ?
 
Status
Not open for further replies.
Back