- Joined
- Sep 7, 2008
- Messages
- 972
- Reaction score
- 81
Hello, im creating my own launcher but i have 1 problem. If i do the normal way of starting a exe like this:
OR
But it doesn't start when serialkey is enabled. I can make the serialkey disabled but thats not save becasue people can start without running launcher. Does some on have a way to start it when serialkey is enabled?
Code:
Process theduel = new Process();
theduel.StartInfo.FileName = "theduel.exe";
theduel.Start();
OR
Code:
System.Diagnostics.Process.Start("notepad");
But it doesn't start when serialkey is enabled. I can make the serialkey disabled but thats not save becasue people can start without running launcher. Does some on have a way to start it when serialkey is enabled?