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 [...]

Posted at 2pm on 8/31/10 | no comments; | Filed Under: Thoughts | read on

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
}

Posted at 1pm on 5/8/10 | no comments; | Filed Under: Thoughts | Tagged: , | read on

Pages

Categories