C# WriteLine ASCII Artwork ThisProcessIsAlreadyRunning Task manager System.Diagnostics SetFocusToPreviousInstance SetCompatibleTextRenderingDefault ProcessName Process Name PHP POST Method PdfWriter PDF Generation PDF Creation PDF Mutex Mozala kmail ImageColorAt How to exit application Force Single Instance FileStream Create PDF

SYSTEM DIAGNOSTICS.ZIP

How to get process id in C# like windows task manager ?   (created at Oct 15, 2009)   105  

Following is simple example to get process name and add process name to listbox control.As you can see below, you can get working process by Process control. But most of the properties are supported on windows platform. If you want to access the similar pr...

Finding process name on OS   (created at Sep 22, 2008)   64  

Following function is very useful when checking currently working process based on name.using System.Diagnostics;...public bool IsProcessOpen(string name){    foreach (Process clsProcess in Process.GetProcesses) {        if (c...

How to restrict a program to a single instance   (created at Sep 25, 2007)   75  

In the program's Main method, call ProcessUtils.ThisProcessIsAlreadyRunning() to determine if another instance of the program is already running. ThisProcessIsAlreadyRunning attempts to create a Mutex object with the same name as the program (Application.P...

Create PDF Files On the Fly In C Sharp   (created at Aug 26, 2007)   51  

Creation of PDF Document in 5 easy stepsStep 1: First create an instance of document objectDocument myDocument= new Document(PageSize.A4.Rotate());Step 2: Now create a writer that listens to this doucment and writes the document to desired Stream.PdfWriter...