Sunday, August 2, 2009

Using C# code how can I get the all curren running applications ( not proccesses ) thanx in advance .?

using System.Diagnostics;





Process[] myProcesses = Process.GetProcesses();





for(int i=0;i%26lt;myProcesses.Length;i++)


{


Console.WriteLine ( myProcesses[i].MainWindowTitle );


}

bloom

No comments:

Post a Comment