Normal
Um... the my programs plugin already does this.But here's some code for you to start applications in C#:System.Diagnostics.ProcessStartInfo SI = new System.Diagnostics.ProcessStartInfo();SI.Arguments = "insert here if required";SI.FileName = "insert app filename here";SI.WorkingDirectory ="insert here if required";System.Diagnostics.Process.Start(SI);Sam
Um... the my programs plugin already does this.
But here's some code for you to start applications in C#:
System.Diagnostics.ProcessStartInfo SI = new System.Diagnostics.ProcessStartInfo();
SI.Arguments = "insert here if required";
SI.FileName = "insert app filename here";
SI.WorkingDirectory ="insert here if required";
System.Diagnostics.Process.Start(SI);
Sam