A Promise To My Self
Ive been selfish lately… selfish aint a bad word… its the perception of selfishness that draws between the good and the bad.
I have been selfish running behind my daily chores so much that I has almost been selfish to my inner self… starving it away from what I really like to do.
I have made a [...]
Invoking .exe from an application
Here is how you invoke and .exe from your C#.net application
System.Diagnostics.Process P = new System.Diagnostics.Process();
P.StartInfo.FileName = “Path_To_The_EXE”;
System.Threading.Thread.Sleep(5000);
try
{
P.Start();
}
catch (Exception E)
{
//Handle The Exception
}
