Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Drive Information

0.00/5 (No votes)
8 Feb 2003 1  
A CStatic derived class to show drive information.

Sample Image - DriveInfo.jpg

Introduction

All of us know that a very simple chart or an image can transfer more valuable information than a table or text to memory. Because of this, we use charts and images when we have complex set of data and informations.

I used this rule, to create a static derived class to show drive information in a visual manner. This class shows capacity of disk, used and free space of it with a simple pie chart.

Note: Part of code to draw pie chart was taken from article "Chart and Pie for data with hole" written by Tingshao Zhu

How to use

First add DriveInfo.h and DriveInfo.cpp files to your project. Then in your dialog resource editor, add new Static control (figure 2 shows it). Rename this static control ID to your desired ID, for example IDC_DRIVE_INFO (like figure 3). Run class wizard (Ctrl+W) and add new member variable with variable type CStatic (you must choose Control in category combo box). Named it as m_Drive. Figure 4 shows you how declare a new CStatic control.

Static control
Figure 2- Add new static control to dialog resource

Properties
Figure 3- Change ID of static control from IDC_STATIC to IDC_DRIVE_INFO

Add member variable
Figure 4- Add member variable with variable type CStatic

OK. Now in your dialog header file, change this line:

CStatic m_Drive;
to
CDriveInfo m_Drive;
Don't forget to include DriveInfo.h header file on top of your dialog class definition. Now your dialog definition looks like this:
// DriveInfoDlg.h : header file

//


#if !defined(AFX_DRIVEINFODLG_H__505181DF_1106_4370_8526_77AED93D4F5E__INCLUDED_)
#define AFX_DRIVEINFODLG_H__505181DF_1106_4370_8526_77AED93D4F5E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#include "DriveInfo.h"

/////////////////////////////////////////////////////////////////////////////

// CDriveInfoDlg dialog


class CDriveInfoDlg : public CDialog
{
// Construction

public:
    CDriveInfoDlg(CWnd* pParent = NULL);    // standard constructor


// Dialog Data

    //{{AFX_DATA(CDriveInfoDlg)

    enum { IDD = IDD_DRIVEINFO_DIALOG };
    CDriveInfo    m_Drive;    //Changed from CStatic

    //}}AFX_DATA


    // ClassWizard generated virtual function overrides

    //{{AFX_VIRTUAL(CDriveInfoDlg)

    protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

    //}}AFX_VIRTUAL


// Implementation

protected:
    HICON m_hIcon;

    // Generated message map functions

    //{{AFX_MSG(CDriveInfoDlg)

    virtual BOOL OnInitDialog();
    afx_msg void OnPaint();
    afx_msg HCURSOR OnQueryDragIcon();
    //}}AFX_MSG

    DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

// Microsoft Visual C++ will insert additional declarations immediately before the previous line.


#endif // !defined(AFX_DRIVEINFODLG_H__505181DF_1106_4370_8526_77AED93D4F5E__INCLUDED_)

CDriveInfo class

CDriveInfo class has only two member function. Each of these member functions used to displayed information of desired drive.

void SetDriveLetter(LPCSTR szDriveLetter);
SetDriveLetter takes only one parameter, drive letter. For showing information of your desired drive, only pass drive letter of it. For example:

m_Drive.SetDriveLetter("c:\\");

will show statistics of drive C.

void SetDriveNumber(UINT iDriveNum);
If you don't know drive letter of specified disk, use this function. Just pass drive number and CDriveInfo will show drive information. For example:

m_Drive.SetDriveNumber(0);

will show informatoin of drive A.

Enjoy!

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