04-21-2012, 10:44 PM
Since i started to Learn C# i got some problems to create a Launcher.
The Problem is:
I Can run the "nksp" on my Computer with "C:\...."
but how i can run it on other Computers?
Thats at the moment the only problem, hope you can help me ^^
string currentDir = Environment.CurrentDirectory;
Process.Start(currentDir@"\bin\nksp.exe");
System.Media.SoundPlayer sp = new System.Media.SoundPlayer(@"C:\Users\BOSS\Music\LC Musik\test.wav");
Look the Process.Start line, what i must edit there?^^

