home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / zkuste / delphi / kompon / d13456 / FINDFILE.ZIP / Demo32 / Main32.dfm / Main32.txt
Text File  |  2001-12-26  |  10KB  |  465 lines

  1. object MainForm: TMainForm
  2.   Left = 207
  3.   Top = 74
  4.   AutoScroll = False
  5.   Caption = 'TFindFile Component Demo'
  6.   ClientHeight = 392
  7.   ClientWidth = 423
  8.   Color = clBtnFace
  9.   Constraints.MinHeight = 220
  10.   Constraints.MinWidth = 420
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = False
  17.   Position = poDesktopCenter
  18.   OnCreate = FormCreate
  19.   DesignSize = (
  20.     423
  21.     392)
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object PageControl: TPageControl
  25.     Left = 8
  26.     Top = 8
  27.     Width = 289
  28.     Height = 201
  29.     ActivePage = TabSheet1
  30.     Anchors = [akLeft, akTop, akRight]
  31.     MultiLine = True
  32.     TabIndex = 0
  33.     TabOrder = 2
  34.     TabStop = False
  35.     object TabSheet1: TTabSheet
  36.       Caption = 'Name && Location'
  37.       DesignSize = (
  38.         281
  39.         173)
  40.       object Label1: TLabel
  41.         Left = 13
  42.         Top = 6
  43.         Width = 45
  44.         Height = 13
  45.         Caption = 'File&name:'
  46.         FocusControl = Filename
  47.       end
  48.       object Label2: TLabel
  49.         Left = 13
  50.         Top = 102
  51.         Width = 44
  52.         Height = 13
  53.         Caption = '&Location:'
  54.         FocusControl = Location
  55.       end
  56.       object Label3: TLabel
  57.         Left = 13
  58.         Top = 54
  59.         Width = 77
  60.         Height = 13
  61.         Caption = '&Containing Text:'
  62.         FocusControl = Containing
  63.       end
  64.       object Filename: TEdit
  65.         Left = 13
  66.         Top = 22
  67.         Width = 254
  68.         Height = 21
  69.         Anchors = [akLeft, akTop, akRight]
  70.         TabOrder = 0
  71.         Text = '*.txt'
  72.       end
  73.       object Location: TEdit
  74.         Left = 13
  75.         Top = 118
  76.         Width = 254
  77.         Height = 21
  78.         Anchors = [akLeft, akTop, akRight]
  79.         TabOrder = 3
  80.         Text = 'C:\'
  81.       end
  82.       object Subfolders: TCheckBox
  83.         Left = 13
  84.         Top = 145
  85.         Width = 129
  86.         Height = 17
  87.         Caption = '&Include subfolders'
  88.         Checked = True
  89.         State = cbChecked
  90.         TabOrder = 4
  91.       end
  92.       object BrowseButton: TButton
  93.         Left = 192
  94.         Top = 141
  95.         Width = 75
  96.         Height = 25
  97.         Anchors = [akTop, akRight]
  98.         Caption = '&Browse...'
  99.         TabOrder = 5
  100.         OnClick = BrowseButtonClick
  101.       end
  102.       object Containing: TEdit
  103.         Left = 13
  104.         Top = 70
  105.         Width = 254
  106.         Height = 21
  107.         Anchors = [akLeft, akTop, akRight]
  108.         TabOrder = 1
  109.       end
  110.       object IgnoreCase: TCheckBox
  111.         Left = 169
  112.         Top = 91
  113.         Width = 97
  114.         Height = 17
  115.         Anchors = [akTop, akRight]
  116.         Caption = 'C&ase Insensitive'
  117.         Checked = True
  118.         State = cbChecked
  119.         TabOrder = 2
  120.       end
  121.     end
  122.     object TabSheet3: TTabSheet
  123.       Caption = 'Date'
  124.       ImageIndex = 2
  125.       DesignSize = (
  126.         281
  127.         173)
  128.       object BeforeDate: TDateTimePicker
  129.         Left = 15
  130.         Top = 141
  131.         Width = 130
  132.         Height = 21
  133.         CalAlignment = dtaLeft
  134.         Date = 36578.000000000000000000
  135.         Time = 36578.000000000000000000
  136.         DateFormat = dfShort
  137.         DateMode = dmComboBox
  138.         Enabled = False
  139.         Kind = dtkDate
  140.         ParseInput = False
  141.         TabOrder = 6
  142.       end
  143.       object DateRangeChoice: TRadioGroup
  144.         Left = 16
  145.         Top = 15
  146.         Width = 249
  147.         Height = 53
  148.         Anchors = [akLeft, akTop, akRight]
  149.         Caption = ' Find files '
  150.         Columns = 3
  151.         ItemIndex = 0
  152.         Items.Strings = (
  153.           '&Created'
  154.           '&Modified'
  155.           '&Accessed')
  156.         TabOrder = 0
  157.       end
  158.       object AfterDate: TDateTimePicker
  159.         Left = 15
  160.         Top = 95
  161.         Width = 130
  162.         Height = 21
  163.         CalAlignment = dtaLeft
  164.         Date = 36578.000000000000000000
  165.         Time = 36578.000000000000000000
  166.         DateFormat = dfShort
  167.         DateMode = dmComboBox
  168.         Enabled = False
  169.         Kind = dtkDate
  170.         ParseInput = False
  171.         TabOrder = 2
  172.       end
  173.       object BeforeTime: TDateTimePicker
  174.         Left = 160
  175.         Top = 141
  176.         Width = 105
  177.         Height = 21
  178.         CalAlignment = dtaLeft
  179.         Date = 36579.998521296290000000
  180.         Time = 36579.998521296290000000
  181.         DateFormat = dfShort
  182.         DateMode = dmComboBox
  183.         Enabled = False
  184.         Kind = dtkTime
  185.         ParseInput = False
  186.         TabOrder = 8
  187.       end
  188.       object AfterTime: TDateTimePicker
  189.         Left = 160
  190.         Top = 95
  191.         Width = 105
  192.         Height = 21
  193.         CalAlignment = dtaLeft
  194.         Date = 36579.998521296290000000
  195.         Time = 36579.998521296290000000
  196.         DateFormat = dfShort
  197.         DateMode = dmComboBox
  198.         Enabled = False
  199.         Kind = dtkTime
  200.         ParseInput = False
  201.         TabOrder = 4
  202.       end
  203.       object BD: TCheckBox
  204.         Left = 15
  205.         Top = 124
  206.         Width = 82
  207.         Height = 17
  208.         Caption = 'Before Date:'
  209.         TabOrder = 5
  210.         OnClick = BDClick
  211.       end
  212.       object BT: TCheckBox
  213.         Left = 160
  214.         Top = 124
  215.         Width = 82
  216.         Height = 17
  217.         Caption = 'Before Time:'
  218.         TabOrder = 7
  219.         OnClick = BTClick
  220.       end
  221.       object AD: TCheckBox
  222.         Left = 15
  223.         Top = 78
  224.         Width = 74
  225.         Height = 17
  226.         Caption = 'After Date:'
  227.         TabOrder = 1
  228.         OnClick = ADClick
  229.       end
  230.       object AT: TCheckBox
  231.         Left = 160
  232.         Top = 78
  233.         Width = 82
  234.         Height = 17
  235.         Caption = 'After Time:'
  236.         TabOrder = 3
  237.         OnClick = ATClick
  238.       end
  239.     end
  240.     object TabSheet2: TTabSheet
  241.       Caption = 'Advanced'
  242.       ImageIndex = 1
  243.       DesignSize = (
  244.         281
  245.         173)
  246.       object Attributes: TGroupBox
  247.         Left = 14
  248.         Top = 7
  249.         Width = 253
  250.         Height = 66
  251.         Anchors = [akLeft, akTop, akRight]
  252.         Caption = ' Attributes '
  253.         TabOrder = 0
  254.         object System: TCheckBox
  255.           Left = 91
  256.           Top = 19
  257.           Width = 67
  258.           Height = 17
  259.           Caption = 'Sys&tem'
  260.           Checked = True
  261.           State = cbChecked
  262.           TabOrder = 2
  263.         end
  264.         object Hidden: TCheckBox
  265.           Left = 91
  266.           Top = 39
  267.           Width = 67
  268.           Height = 17
  269.           Caption = '&Hidden'
  270.           Checked = True
  271.           State = cbChecked
  272.           TabOrder = 3
  273.         end
  274.         object Readonly: TCheckBox
  275.           Left = 10
  276.           Top = 39
  277.           Width = 67
  278.           Height = 17
  279.           Caption = '&Readonly'
  280.           Checked = True
  281.           State = cbChecked
  282.           TabOrder = 1
  283.         end
  284.         object Archive: TCheckBox
  285.           Left = 10
  286.           Top = 19
  287.           Width = 67
  288.           Height = 17
  289.           Caption = '&Archive'
  290.           Checked = True
  291.           State = cbChecked
  292.           TabOrder = 0
  293.         end
  294.         object Directory: TCheckBox
  295.           Left = 172
  296.           Top = 39
  297.           Width = 67
  298.           Height = 17
  299.           Caption = '&Directory'
  300.           TabOrder = 4
  301.         end
  302.       end
  303.       object ExactAttr: TCheckBox
  304.         Left = 14
  305.         Top = 76
  306.         Width = 227
  307.         Height = 17
  308.         Caption = 'Select files only if attribute &exactly matched '
  309.         TabOrder = 1
  310.       end
  311.       object FileSize: TGroupBox
  312.         Left = 14
  313.         Top = 100
  314.         Width = 253
  315.         Height = 65
  316.         Anchors = [akLeft, akTop, akRight]
  317.         Caption = ' Size '
  318.         TabOrder = 2
  319.         object Label8: TLabel
  320.           Left = 223
  321.           Top = 38
  322.           Width = 14
  323.           Height = 13
  324.           Caption = 'KB'
  325.         end
  326.         object Label9: TLabel
  327.           Left = 98
  328.           Top = 38
  329.           Width = 14
  330.           Height = 13
  331.           Caption = 'KB'
  332.         end
  333.         object Label10: TLabel
  334.           Left = 136
  335.           Top = 20
  336.           Width = 39
  337.           Height = 13
  338.           Caption = 'At &Most:'
  339.           FocusControl = SizeMax
  340.         end
  341.         object Label11: TLabel
  342.           Left = 10
  343.           Top = 20
  344.           Width = 42
  345.           Height = 13
  346.           Caption = 'At &Least:'
  347.           FocusControl = SizeMin
  348.         end
  349.         object SizeMax: TSpinEdit
  350.           Left = 135
  351.           Top = 33
  352.           Width = 86
  353.           Height = 22
  354.           MaxValue = 0
  355.           MinValue = 0
  356.           TabOrder = 1
  357.           Value = 0
  358.         end
  359.         object SizeMin: TSpinEdit
  360.           Left = 10
  361.           Top = 33
  362.           Width = 86
  363.           Height = 22
  364.           MaxValue = 0
  365.           MinValue = 0
  366.           TabOrder = 0
  367.           Value = 0
  368.         end
  369.       end
  370.     end
  371.   end
  372.   object FindButton: TButton
  373.     Left = 311
  374.     Top = 28
  375.     Width = 97
  376.     Height = 25
  377.     Anchors = [akTop, akRight]
  378.     Caption = '&Find'
  379.     Default = True
  380.     TabOrder = 0
  381.     OnClick = FindButtonClick
  382.   end
  383.   object StopButton: TButton
  384.     Left = 311
  385.     Top = 62
  386.     Width = 97
  387.     Height = 25
  388.     Anchors = [akTop, akRight]
  389.     Cancel = True
  390.     Caption = '&Stop'
  391.     Enabled = False
  392.     TabOrder = 1
  393.     OnClick = StopButtonClick
  394.   end
  395.   object Animate: TAnimate
  396.     Left = 335
  397.     Top = 116
  398.     Width = 48
  399.     Height = 50
  400.     Active = False
  401.     Anchors = [akTop, akRight]
  402.     CommonAVI = aviFindFile
  403.     StopFrame = 23
  404.   end
  405.   object FoundFiles: TListView
  406.     Left = 8
  407.     Top = 219
  408.     Width = 408
  409.     Height = 148
  410.     Anchors = [akLeft, akTop, akRight, akBottom]
  411.     Columns = <
  412.       item
  413.         Caption = 'Name'
  414.         Width = 100
  415.       end
  416.       item
  417.         Caption = 'Location'
  418.         Width = 303
  419.       end
  420.       item
  421.         Caption = 'Size'
  422.         Width = 60
  423.       end
  424.       item
  425.         Caption = 'Modified'
  426.         Width = 120
  427.       end>
  428.     FullDrag = True
  429.     ReadOnly = True
  430.     RowSelect = True
  431.     TabOrder = 4
  432.     ViewStyle = vsReport
  433.     OnColumnClick = FoundFilesColumnClick
  434.     OnCompare = FoundFilesCompare
  435.     OnDblClick = FoundFilesDblClick
  436.   end
  437.   object StatusBar: TStatusBar
  438.     Left = 0
  439.     Top = 373
  440.     Width = 423
  441.     Height = 19
  442.     Panels = <>
  443.     SimplePanel = True
  444.   end
  445.   object Threaded: TCheckBox
  446.     Left = 311
  447.     Top = 193
  448.     Width = 104
  449.     Height = 17
  450.     Anchors = [akTop, akRight]
  451.     Caption = '&Threaded Search'
  452.     Checked = True
  453.     State = cbChecked
  454.     TabOrder = 3
  455.   end
  456.   object FindFile: TFindFile
  457.     Filename = '*.*'
  458.     OnFound = FindFileFound
  459.     OnNewFolder = FindFileNewFolder
  460.     OnComplete = FindFileComplete
  461.     Left = 17
  462.     Top = 247
  463.   end
  464. end
  465.