Click here to Skip to main content
15,880,956 members
Articles / Desktop Programming / MFC
Article

Dll Profiler in C#

Rate me:
Please Sign up or sign in to vote.
4.48/5 (19 votes)
29 Apr 20032 min read 209.6K   3.4K   57   40
A debugging tool for applications using multiple DLLs.

All Process and their loaded DLLs informations

Picture 1.All Process and its loaded DLLs information.

Filter against process name

Picture 2. Filter against process name.

Start a new application

Picture 3. Start a new application.

Stop a running application

Picture 4. Stop a running application.

Overview

In your computer, there may be thousands of versions of a DLL. Which version are you using? Which DLL has effectively been loaded by your effectively been loaded by your application? You must check the path, version and the current working directory of your process, etc. If you want to answer quickly, use DLL Profiler.

DLL profiler is used list all the DLLs that are currently loaded in your machine, including where they are loaded and their version number, size, modification date, product name and product version. It's an application used to find the multiple DLLs error if you start an application.

Moreover, you can start and stop an application directly here and watch it's loaded DLLs and their errors.

You can search loaded DLLs against one process only. DLL Profiler is having filter facility to look at a particular process' DLLs only.

This class demonstrates the use of following namespaces.

  • System.IO
  • System.Net
  • System.Diagnostics
  • System.Threading
  • System.Drawing.Drawing2D
  • Logger

Installation step

Just download and click an exe to run the application.

Source code

Have you ever experienced an error while loading a DLL when you start an application? Invalid DLL version? or ???

If so, It's for you.

If you want to monitor your application after you open it. You can use this.

The main idea is get all the processes running in local machine. And get all modules and appropriate details like module path, file version, file size, file modification date, file description, product name and product version.

C#
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Collections;
using System.ComponentModel;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
using Logger;

The above namespaces are must for DLL Profiler. Here, I have placed the code to reveal to you how to get running process' name and process ID.

C#
//Get all processes

Process[] procList =  Process.GetProcesses(); 

for ( int i=0; i<procList.Length; i++) 
{ 

     MessgeBox.Show("Process Id=" +  procList[i].Id + 
           "\t" + " Process Name=" + procList[i].ProcessName); 

}

The following code will explain how to get modules/DLLs for appropriate process.

//Get all modules inside the process
Process[] ObjModulesList = Process.GetProcessesByName("devenv");

// Populate the module collection.
ProcessModuleCollection ObjModules = ObjModulesList[0].Modules;

// Iterate through the module collection.
foreach (ProcessModule objModule in ObjModules)
{
//Get valid module path
strModulePath =GetValidString(objModule.FileName.ToString());
//If the module exists
if (File.Exists(objModule.FileName.ToString()))
  {
    //Get version
    string strFileVersion = GetValidString(objModule.
                  FileVersionInfo.FileVersion.ToString()); 
    //Get File size
    string strFileSize    = GetValidString
                (objModule.ModuleMemorySize.ToString());
    //Get Modification date
    FileInfo objFileInfo = new 
                FileInfo(objModule.FileName.ToString());
    string strFileModificationDate = GetValidString
         (objFileInfo.LastWriteTime.ToShortDateString());  
    //Get File description
    string strFileDescription  = GetValidString
                  (objModule.FileVersionInfo.
                  FileDescription.ToString()); 
    //Get Product Name
    string strProductName  = GetValidString
           (objModule.FileVersionInfo.ProductName.ToString());
    //Get Product Version
    string strProductVersion  = GetValidString
          (objModule.FileVersionInfo.ProductVersion.ToString());
  }
}

Start and stop an application

START an Application

//Create a new process
Process myProcess = new Process();

//Process name notepad
myProcess.StartInfo.FileName = "Notepad";

//Set it's window style maximized
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;

//Start an exe
myProcess.Start();

STOP an Application

// Returns array containing all instances of Notepad.
Process[] myProcesses = Process.GetProcessesByName("Notepad");

foreach(Process myProcess in myProcesses){
    myProcess.CloseMainWindow();
}

To use this class, Just add a reference to your project and follow the steps and just import the Logger reference into you project

Logging

I have used Logger here. You can use on/off logging remove as you like. People who don't know about Logger Please visit Logger in C# - An easy way for monitoring .NET applications

Moreover, If you look at this project you can get the following ideas:

  1. Splash screen
  2. Toolbar
  3. Coloring particular row depends on value in DataGrid.
  4. Run and stop an application through program.

That's all.

I would like to hear your opinion. Thanks in advance.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I am a system analyst and have been with Microsoft & Sun Technologies for more than 7 years. I have always been fascinated by java and .NET. I take lot of technical articles and writing them.

I am a Sun Certified Java Programmer for Java 2 Platform 1.4 , Web component developer Java 2 Platform - Enterprise Edition 1.4 and Microsoft certified developer using C#.NET in Web Development ASP.NET.

Visit my web site www.mohamedashraf.tk

Comments and Discussions

 
QuestionI removed Logger and all lines with ErrorLog, but program won't start Pin
ancich26-Nov-14 3:01
ancich26-Nov-14 3:01 
Question.Net Framework 3.5 test Pin
charlyatx31-Oct-13 9:27
charlyatx31-Oct-13 9:27 
QuestionRemote Hosts Pin
ewnolen18-Mar-09 7:45
ewnolen18-Mar-09 7:45 
Questionhelp needed Pin
ummer2615-Feb-09 7:05
ummer2615-Feb-09 7:05 
AnswerRe: help needed Pin
Ashraf Mohamed15-Feb-09 18:11
Ashraf Mohamed15-Feb-09 18:11 
GeneralRe: help needed Pin
ummer2616-Feb-09 1:25
ummer2616-Feb-09 1:25 
GeneralRe: help needed Pin
Ashraf Mohamed16-Feb-09 5:00
Ashraf Mohamed16-Feb-09 5:00 
GeneralRe: help needed Pin
ummer2616-Feb-09 6:22
ummer2616-Feb-09 6:22 
GeneralRe: help needed Pin
ummer2617-Feb-09 20:02
ummer2617-Feb-09 20:02 
GeneralNOT Working Pin
Sachin Dubey13-Aug-08 3:11
Sachin Dubey13-Aug-08 3:11 
Suppose there are many exel applications open
and i want to kill a particular one which i have created by my own c# code.....

then how to kill that...

bcoz when i m closing ma application the process is not closing
GeneralRe: NOT Working Pin
Ashraf Mohamed13-Aug-08 17:55
Ashraf Mohamed13-Aug-08 17:55 
Questionenumeration is slow Pin
Harkamal Singh22-Jun-07 19:05
Harkamal Singh22-Jun-07 19:05 
AnswerRe: enumeration is slow Pin
Ashraf Mohamed25-Jun-07 19:41
Ashraf Mohamed25-Jun-07 19:41 
GeneralReference Pin
nclauder30-Jan-07 19:53
nclauder30-Jan-07 19:53 
GeneralRe: Reference Pin
Ashraf Mohamed12-Feb-07 23:18
Ashraf Mohamed12-Feb-07 23:18 
GeneralRe: Reference Pin
nclauder13-Feb-07 18:16
nclauder13-Feb-07 18:16 
General, Pin
nclauder30-Jan-07 19:44
nclauder30-Jan-07 19:44 
GeneralException Pin
Ihor Bobak20-Jan-06 9:14
Ihor Bobak20-Jan-06 9:14 
GeneralDetecting Hidden Processes Pin
ducspam19-Oct-05 8:55
ducspam19-Oct-05 8:55 
GeneralError msg when opening dllprofiler Pin
easy57818-Feb-05 6:13
easy57818-Feb-05 6:13 
GeneralRe: Error msg when opening dllprofiler Pin
Anonymous20-Feb-05 19:32
Anonymous20-Feb-05 19:32 
GeneralRe: Error msg when opening dllprofiler Pin
tracernet_v212-Apr-07 19:21
tracernet_v212-Apr-07 19:21 
GeneralC Pin
luc@vasco27-Sep-04 21:23
luc@vasco27-Sep-04 21:23 
GeneralExtensible Performance Counters Pin
Anonymous13-Dec-03 23:50
Anonymous13-Dec-03 23:50 
GeneralRe: Extensible Performance Counters Pin
Ashraf Mohamed31-Aug-04 22:32
Ashraf Mohamed31-Aug-04 22:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.