Click here to Skip to main content
15,896,153 members
Articles / Desktop Programming / MFC

Process viewer

Rate me:
Please Sign up or sign in to vote.
4.94/5 (104 votes)
9 Mar 2008CPOL9 min read 457.7K   22K   294  
Lists out the details of running processes in a system, loaded drivers, loaded dlls, version of each dll and process, process times, command line, owner, priority, GDI resource usage, privileges, loaded symbols, window heirarchy, autostart app finding and more.
// HeaderCtrlEx.cpp : implementation file
//

#include "stdafx.h"
#include "processviewer.h"
#include "HeaderCtrlEx.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CHeaderCtrlEx

CHeaderCtrlEx::CHeaderCtrlEx() : m_bAscending( true ), m_nSortItem( 0 )
{
    // Load descending order bitmap
    VERIFY( m_DescBitmap.LoadBitmap( IDB_BITMAP_SORTDESC ));

    // Load ascending order bitmap
    VERIFY( m_AscBitmap.LoadBitmap( IDB_BITMAP_SORTASC ));

    // Create image list
    VERIFY( m_ImageList.Create( GetSystemMetrics( SM_CXSMICON ), 
                                GetSystemMetrics( SM_CYSMICON ), 
                                ILC_COLOR32 | ILC_MASK, 
                                0, 
                                2 ));

    VERIFY( m_ImageList.Add( &m_DescBitmap, RGB( 255, 255, 255 )) != -1 );
    VERIFY( m_ImageList.Add( &m_AscBitmap, RGB( 255, 255, 255 )) != -1 );
}

CHeaderCtrlEx::~CHeaderCtrlEx()
{
}


BEGIN_MESSAGE_MAP(CHeaderCtrlEx, CHeaderCtrl)
	//{{AFX_MSG_MAP(CHeaderCtrlEx)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

void CHeaderCtrlEx::SetSortArrow()
{
    HDITEM sthdItem = { 0 };
    sthdItem.mask = HDI_IMAGE | HDI_FORMAT;
    sthdItem.fmt = HDF_IMAGE | HDF_STRING;
    sthdItem.iImage = GetSortOrder() ? 1 : 0;
    VERIFY( SetItem( GetSortItem(), &sthdItem ));
}// End SetSortArrow

void CHeaderCtrlEx::RemoveSortArrow()
{
    HDITEM sthdItem = { 0 };
    sthdItem.mask = HDI_FORMAT;
    sthdItem.fmt = HDF_STRING;
    VERIFY( SetItem( GetSortItem(), &sthdItem ));
}

void CHeaderCtrlEx::ToString( CString& csHeader_o, LPCTSTR lpctszSeparator_i )
{
    const int nCount = GetItemCount();

    // Text item
    TCHAR szText[50] = { 0 };
    for( int nIndex = 0; nIndex < nCount; ++nIndex )
    {
        HDITEM hdItem = { 0 };
        hdItem.mask = HDI_TEXT;
        hdItem.cchTextMax = 50;
        hdItem.pszText = szText;
        GetItem( nIndex, &hdItem );

        csHeader_o += hdItem.pszText;
        if( nIndex != nCount - 1 )
        {
            csHeader_o += lpctszSeparator_i;
        }
    }// End for
}// End ToString

LRESULT CHeaderCtrlEx::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
{
	if( message == HDM_SETIMAGELIST )
    {
        if((( HIMAGELIST ) lParam ) != m_ImageList.GetSafeHandle() )
            return 0;
    }
	return CHeaderCtrl::WindowProc(message, wParam, lParam);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Microsoft
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions