[Help] .exe code

08/24/2012 08:14 San-Goku#1
Hi guys .. i need some help .. well it is like this .. im going to make a Eudemon Online pserver launcher .. but i dont know the code for VB .. i mean the code to open .exe when people click "launch game" .. tq
08/24/2012 15:39 kissein#2
In C# it would be like this:
Code:
if(File.Exists("path/to/assembly"))
{
    System.Diagnostics.Process.Start(@"path/to/assembly");
}
see also MSDN for more infos
[Only registered and activated users can see links. Click Here To Register...]
08/24/2012 15:57 Andrew™#3
Code:
btn_click
shell(application.startuppath & "\position\appname.xe")
Or
Code:
btn_click
shell("application.exe")