Page 1 of 1

C# making a button load scrip tools

Posted: Sat Sep 15, 2007 6:58 pm
by grimdoomer
im working in C# and i want to make a button load script tools. how would i make it so that when i click the buttin script tools loads?

Re: C# making a button load scrip tools

Posted: Sat Sep 15, 2007 7:23 pm
by LuxuriousMeat
grimdoomer wrote:im working in C# and i want to make a button load script tools. how would i make it so that when i click the buttin script tools loads?
Add:

Code: Select all

using System.Diagnostics;
Then use this code to open it:

Code: Select all

Process.Start(@"c:\file\path\to\file.exe");

Posted: Sun Sep 16, 2007 8:56 am
by OwnZ joO
Don't release your program if its a program opener and thats it though, you will get flamed a lot because we already have WAY too many. It's ok to make it for personal use, just don't release.