home *** CD-ROM | disk | FTP | other *** search
/ Techno Guide - Aspettando Windows 98 / TechnoGuide.iso / applicaz / snotetab / notetab.exe / 0 / RCDATA / TFRMSEARCHFILES / TFRMSEARCHFILES.txt
Text File  |  1998-01-25  |  8KB  |  324 lines

  1. object frmSearchFiles: TfrmSearchFiles
  2.   Left = 200
  3.   Top = 108
  4.   Hint = '|Search files...'
  5.   ActiveControl = cmbFind
  6.   BorderIcons = [biSystemMenu]
  7.   BorderStyle = bsDialog
  8.   Caption = 'Search Text'
  9.   ClientHeight = 269
  10.   ClientWidth = 393
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   FormStyle = fsStayOnTop
  17.   Position = poScreenCenter
  18.   Scaled = False
  19.   OnClose = FormClose
  20.   OnCreate = FormCreate
  21.   OnDestroy = FormDestroy
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object lbxFilesFound: TCheckListBox
  25.     Left = 0
  26.     Top = 0
  27.     Width = 393
  28.     Height = 269
  29.     Hint = '|Select or unselect listed files'
  30.     Align = alClient
  31.     ItemHeight = 13
  32.     PopupMenu = pmnFilesFound
  33.     TabOrder = 1
  34.   end
  35.   object pnlButtons: TPanel
  36.     Left = 0
  37.     Top = 228
  38.     Width = 393
  39.     Height = 41
  40.     Hint = '|Found in files...'
  41.     BevelOuter = bvNone
  42.     TabOrder = 2
  43.     object btnReplace: TButton
  44.       Left = 112
  45.       Top = 8
  46.       Width = 97
  47.       Height = 25
  48.       Hint = '|Replace searched criteria in selected files'
  49.       Caption = '&Replace'
  50.       Enabled = False
  51.       TabOrder = 1
  52.       Visible = False
  53.       OnClick = btnReplaceClick
  54.     end
  55.     object btnOpen: TButton
  56.       Left = 8
  57.       Top = 8
  58.       Width = 97
  59.       Height = 25
  60.       Hint = '|Open selected files in editor'
  61.       Caption = '&Open'
  62.       Enabled = False
  63.       TabOrder = 0
  64.       OnClick = btnOpenClick
  65.     end
  66.     object btnCancel2: TButton
  67.       Left = 288
  68.       Top = 8
  69.       Width = 97
  70.       Height = 25
  71.       Hint = '|Stop searching in chosen directories'
  72.       Cancel = True
  73.       Caption = 'Stop'
  74.       TabOrder = 2
  75.       OnClick = btnCancelClick
  76.     end
  77.   end
  78.   object tabSearch: TTabControl
  79.     Left = 0
  80.     Top = 0
  81.     Width = 393
  82.     Height = 269
  83.     Align = alClient
  84.     TabIndex = 0
  85.     TabOrder = 0
  86.     Tabs.Strings = (
  87.       'Find in Files'
  88.       'Replace in Files')
  89.     OnChange = tabSearchChange
  90.     object lbl_cmbFind: TEnhLabel
  91.       Left = 18
  92.       Top = 43
  93.       Width = 49
  94.       Height = 13
  95.       Caption = '&Find what:'
  96.       FocusControl = cmbFind
  97.     end
  98.     object lbl_cmbReplace: TEnhLabel
  99.       Left = 18
  100.       Top = 71
  101.       Width = 65
  102.       Height = 13
  103.       Caption = '&Replace with:'
  104.       FocusControl = cmbReplace
  105.       Visible = False
  106.     end
  107.     object cmbFind: TLblComboBox
  108.       Left = 109
  109.       Top = 40
  110.       Width = 268
  111.       Height = 21
  112.       Hint = 
  113.         '|Text to search (tokens: ^T = tab; ^P = paragraph; ^C = carriage' +
  114.         '-return; ^L = line-feed)'
  115.       ItemHeight = 13
  116.       TabOrder = 0
  117.       OnChange = cmbFindChange
  118.       AddNewToStart = True
  119.       AddNewToList = True
  120.       AutoExpand = False
  121.       CaseSensitive = True
  122.       DestroyObjects = False
  123.       DispatchInsMode = False
  124.       LimitToList = False
  125.       OverwriteMode = False
  126.       ReadOnly = False
  127.       UndoWhenEsc = True
  128.       OnEdited = CheckUserInput
  129.       OnListPick = CheckUserInput
  130.       OnPaste = PasteCriteria
  131.       LabelPos = lpCustom
  132.       LabelMargin = 4
  133.       LabelComponent = lbl_cmbFind
  134.       LabelRelLeft = -91
  135.       LabelRelTop = 3
  136.     end
  137.     object cmbReplace: TLblComboBox
  138.       Left = 109
  139.       Top = 68
  140.       Width = 268
  141.       Height = 21
  142.       Hint = 
  143.         '|New text (tokens: ^T = tab; ^P = paragraph; ^C = carriage-retur' +
  144.         'n; ^L = line-feed)'
  145.       ItemHeight = 13
  146.       TabOrder = 1
  147.       Visible = False
  148.       AddNewToStart = True
  149.       AddNewToList = True
  150.       AutoExpand = False
  151.       CaseSensitive = True
  152.       DestroyObjects = False
  153.       DispatchInsMode = False
  154.       LimitToList = False
  155.       OverwriteMode = False
  156.       ReadOnly = False
  157.       UndoWhenEsc = False
  158.       OnListPick = cmbReplaceListPick
  159.       OnPaste = PasteCriteria
  160.       LabelPos = lpCustom
  161.       LabelMargin = 4
  162.       LabelComponent = lbl_cmbReplace
  163.       LabelRelLeft = -91
  164.       LabelRelTop = 3
  165.     end
  166.     object gbxCriteria: TGroupBox
  167.       Left = 16
  168.       Top = 184
  169.       Width = 161
  170.       Height = 73
  171.       Caption = 'Criteria'
  172.       TabOrder = 3
  173.       object cbxWholeWord: TCheckBox
  174.         Left = 8
  175.         Top = 20
  176.         Width = 129
  177.         Height = 17
  178.         Hint = '|Search only whole words'
  179.         Caption = '&Whole words only'
  180.         TabOrder = 0
  181.       end
  182.       object cbxMatchCase: TCheckBox
  183.         Left = 8
  184.         Top = 46
  185.         Width = 129
  186.         Height = 17
  187.         Hint = '|Search is case sensitive'
  188.         Caption = '&Case sensitive'
  189.         TabOrder = 1
  190.       end
  191.     end
  192.     object btnStart: TButton
  193.       Left = 280
  194.       Top = 232
  195.       Width = 97
  196.       Height = 25
  197.       Hint = '|Start searching in chosen directories'
  198.       Caption = 'Start...'
  199.       Default = True
  200.       Enabled = False
  201.       TabOrder = 8
  202.       OnClick = btnStartClick
  203.     end
  204.     object gbxSearchDirectories: TGroupBox
  205.       Left = 16
  206.       Top = 96
  207.       Width = 361
  208.       Height = 81
  209.       Caption = 'Search Directory Options'
  210.       TabOrder = 2
  211.       object lbl_cmbFileMasks: TEnhLabel
  212.         Left = 9
  213.         Top = 23
  214.         Width = 53
  215.         Height = 13
  216.         Caption = 'File &Masks:'
  217.         FocusControl = cmbFileMasks
  218.       end
  219.       object cmbFileMasks: TLblComboBox
  220.         Left = 80
  221.         Top = 20
  222.         Width = 273
  223.         Height = 21
  224.         Hint = '|Directory containing files to search'
  225.         ItemHeight = 13
  226.         TabOrder = 0
  227.         AddNewToStart = True
  228.         AddNewToList = True
  229.         AutoExpand = False
  230.         CaseSensitive = True
  231.         DestroyObjects = False
  232.         DispatchInsMode = False
  233.         LimitToList = False
  234.         OverwriteMode = False
  235.         ReadOnly = False
  236.         UndoWhenEsc = True
  237.         OnEdited = CheckUserInput
  238.         OnListPick = CheckUserInput
  239.         LabelPos = lpCustom
  240.         LabelMargin = 2
  241.         LabelComponent = lbl_cmbFileMasks
  242.         LabelRelLeft = -71
  243.         LabelRelTop = 3
  244.       end
  245.       object btnBrowse: TButton
  246.         Left = 280
  247.         Top = 48
  248.         Width = 75
  249.         Height = 25
  250.         Hint = '|Browse disk for directory name'
  251.         Caption = '&Browse...'
  252.         TabOrder = 1
  253.         OnClick = btnBrowseClick
  254.       end
  255.       object cbxSubdirectories: TCheckBox
  256.         Left = 80
  257.         Top = 52
  258.         Width = 185
  259.         Height = 17
  260.         Caption = 'Include &Subdirectories'
  261.         TabOrder = 2
  262.       end
  263.     end
  264.     object cbxConfirm: TCheckBox
  265.       Left = 192
  266.       Top = 240
  267.       Width = 81
  268.       Height = 17
  269.       Hint = 
  270.         '|Show list of files matching criteria (lets you select which one' +
  271.         's are processed)'
  272.       Caption = 'C&onfirm'
  273.       State = cbChecked
  274.       TabOrder = 6
  275.     end
  276.     object cbxBackup: TCheckBox
  277.       Left = 192
  278.       Top = 216
  279.       Width = 81
  280.       Height = 17
  281.       Hint = '|Make a backup copy of files being modified'
  282.       Caption = 'Bac&kup'
  283.       State = cbChecked
  284.       TabOrder = 4
  285.       Visible = False
  286.     end
  287.     object cbxFindFirst: TCheckBox
  288.       Left = 192
  289.       Top = 216
  290.       Width = 89
  291.       Height = 17
  292.       Hint = 'Stop searching after first match is found'
  293.       Caption = 'Fin&d First'
  294.       TabOrder = 5
  295.     end
  296.     object btnCancel: TButton
  297.       Left = 280
  298.       Top = 200
  299.       Width = 97
  300.       Height = 25
  301.       Hint = '|Close dialog box'
  302.       Cancel = True
  303.       Caption = 'Cancel'
  304.       ModalResult = 2
  305.       TabOrder = 7
  306.       OnClick = btnCancelClick
  307.     end
  308.   end
  309.   object pmnFilesFound: TPopupMenu
  310.     Left = 136
  311.     Top = 224
  312.     object smnCheckAll: TMenuItem
  313.       Caption = '&Check All'
  314.       Hint = 'Adds a check mark to all items'
  315.       OnClick = smnCheckAllClick
  316.     end
  317.     object smnUncheckAll: TMenuItem
  318.       Caption = '&Uncheck All'
  319.       Hint = 'Unchecks all selected items'
  320.       OnClick = smnUncheckAllClick
  321.     end
  322.   end
  323. end
  324.