Logo New book: Delphi 2007 Handbook
My blog in online
Delphi tech support service: support.marcocantu.com
Google
  Web www.marcocantu.com

Menu for Development

Site Menu
Delphi 2007 Handbook
Mastering Borland Delphi 2005
Essential Pascal
Essential Delphi
Buy Books Online
Code Repository
Newsgroups
White Papers
Tools
Conferences
Training
Delphi Links
Contact Marco

My Other Sites
Italian Site (www.marcocantu.it)
Developers Newsgroups Browser (dev.newswhat.com)
My town (www.piazzacavalli.net)
the delphi search
Wintech Italia (my company)

Breaking News
Buy Mastering Borland Delphi 2005 from Amazon
Free ebook: Mastering Delphi Update for Delphi 2006

Advertising
Home My Blog Books My Bookstore Development Links Marco


Home: Code Repository: Mastering Delphi 6

Chapter 18 - Project DirDemo

Project Structure

DirDemo.dpr
program dirdemo;

uses
  Forms,
  DirDemoForm in 'DirDemoForm.pas' {Form1};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
DirDemoForm.pas
unit DirDemoForm;

interface

{$WARN UNIT_PLATFORM OFF}

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Db, Grids, DBGrids, StdCtrls, MdDsDir, ComCtrls, MdDsCustom,
  MdDsList, ShellCtrls;

type
  TForm1 = class(TForm)
    DBGrid1: TDBGrid;
    DataSource1: TDataSource;
    ShellTreeView1: TShellTreeView;
    MdDirDataset1: TMdDirDataset;
    MdDirDataset1FileName: TStringField;
    MdDirDataset1TimeStamp: TDateTimeField;
    MdDirDataset1Size: TIntegerField;
    MdDirDataset1Attributes: TStringField;
    MdDirDataset1Folder: TBooleanField;
    procedure ShellTreeView1Change(Sender: TObject; Node: TTreeNode);
  private
    { Private declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.ShellTreeView1Change(Sender: TObject; Node: TTreeNode);
begin
  MdDirDataset1.Close;
  MdDirDataset1.Directory := ShellTreeView1.Path + '\*.*';
  MdDirDataset1.Open;
end;

end.
DirDemoForm.dfm
object Form1: TForm1
  Left = 212
  Top = 295
  Width = 735
  Height = 243
  Caption = 'DirDataSet Demo'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object DBGrid1: TDBGrid
    Left = 185
    Top = 0
    Width = 542
    Height = 216
    Align = alClient
    DataSource = DataSource1
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Courier New'
    Font.Style = []
    ParentFont = False
    TabOrder = 0
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
    Columns = <
      item
        Expanded = False
        FieldName = 'FileName'
        Width = 160
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'TimeStamp'
        Width = 160
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'Size'
        Width = 90
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'Attributes'
        Visible = True
      end
      item
        Expanded = False
        FieldName = 'Folder'
        Visible = True
      end>
  end
  object ShellTreeView1: TShellTreeView
    Left = 0
    Top = 0
    Width = 185
    Height = 216
    ObjectTypes = [otFolders]
    Root = 'c:\'
    UseShellImages = True
    Align = alLeft
    AutoRefresh = False
    Indent = 19
    ParentColor = False
    RightClickSelect = True
    ShowRoot = False
    TabOrder = 1
    OnChange = ShellTreeView1Change
  end
  object DataSource1: TDataSource
    AutoEdit = False
    DataSet = MdDirDataset1
    Left = 224
    Top = 40
  end
  object MdDirDataset1: TMdDirDataset
    Active = True
    Directory = 'c:\*.*'
    Left = 224
    Top = 80
    object MdDirDataset1FileName: TStringField
      FieldName = 'FileName'
      Required = True
      Size = 40
    end
    object MdDirDataset1TimeStamp: TDateTimeField
      FieldName = 'TimeStamp'
    end
    object MdDirDataset1Size: TIntegerField
      FieldName = 'Size'
      DisplayFormat = '#,###'
    end
    object MdDirDataset1Attributes: TStringField
      FieldName = 'Attributes'
      Size = 3
    end
    object MdDirDataset1Folder: TBooleanField
      FieldName = 'Folder'
    end
  end
end