home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / software / code / setup.exe / CodePad.exe / 0 / RCDATA / TREPLACEFORM / TREPLACEFORM.txt
Encoding:
Text File  |  2003-02-24  |  4.0 KB  |  216 lines

  1. object ReplaceForm: TReplaceForm
  2.   Tag = 182
  3.   Left = 494
  4.   Top = 31
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Replace Text'
  8.   ClientHeight = 279
  9.   ClientWidth = 332
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = True
  17.   Position = poMainFormCenter
  18.   Scaled = False
  19.   OnCreate = FormCreate
  20.   OnShow = FormShow
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object lTextToFind: TLabel
  24.     Tag = 183
  25.     Left = 7
  26.     Top = 12
  27.     Width = 53
  28.     Height = 13
  29.     Caption = 'Text to find'
  30.     Transparent = True
  31.     WordWrap = True
  32.   end
  33.   object lReplaceWith: TLabel
  34.     Tag = 184
  35.     Left = 7
  36.     Top = 42
  37.     Width = 62
  38.     Height = 13
  39.     Caption = 'Replace with'
  40.     Transparent = True
  41.   end
  42.   object gOptions: TGroupBox
  43.     Tag = 185
  44.     Left = 9
  45.     Top = 64
  46.     Width = 152
  47.     Height = 105
  48.     Caption = 'Options'
  49.     TabOrder = 2
  50.     object cCaseSensitive: TCheckBox
  51.       Left = 10
  52.       Top = 20
  53.       Width = 135
  54.       Height = 17
  55.       Caption = 'Case sensitive'
  56.       TabOrder = 0
  57.     end
  58.     object cWholeWordsOnly: TCheckBox
  59.       Left = 10
  60.       Top = 40
  61.       Width = 135
  62.       Height = 17
  63.       Caption = 'Whole words only'
  64.       TabOrder = 1
  65.     end
  66.     object cRegularExpressions: TCheckBox
  67.       Left = 10
  68.       Top = 60
  69.       Width = 135
  70.       Height = 17
  71.       Caption = 'Regular expressions'
  72.       TabOrder = 2
  73.     end
  74.     object cPromptOnReplace: TCheckBox
  75.       Left = 10
  76.       Top = 80
  77.       Width = 135
  78.       Height = 17
  79.       Caption = 'Prompt on replace'
  80.       TabOrder = 3
  81.     end
  82.   end
  83.   object gDirection: TGroupBox
  84.     Tag = 190
  85.     Left = 172
  86.     Top = 64
  87.     Width = 152
  88.     Height = 105
  89.     Caption = 'Direction'
  90.     TabOrder = 3
  91.     object rForward: TRadioButton
  92.       Left = 10
  93.       Top = 20
  94.       Width = 135
  95.       Height = 17
  96.       Caption = 'Forward'
  97.       Checked = True
  98.       TabOrder = 0
  99.       TabStop = True
  100.     end
  101.     object rBackward: TRadioButton
  102.       Left = 10
  103.       Top = 40
  104.       Width = 135
  105.       Height = 17
  106.       Caption = 'Backward'
  107.       TabOrder = 1
  108.     end
  109.   end
  110.   object gOrigin: TGroupBox
  111.     Tag = 196
  112.     Left = 172
  113.     Top = 175
  114.     Width = 152
  115.     Height = 65
  116.     Caption = 'Origin'
  117.     TabOrder = 5
  118.     object rEntireScope: TRadioButton
  119.       Left = 10
  120.       Top = 40
  121.       Width = 135
  122.       Height = 17
  123.       Caption = 'Entire scope'
  124.       TabOrder = 1
  125.     end
  126.     object rFromCursor: TRadioButton
  127.       Left = 10
  128.       Top = 20
  129.       Width = 135
  130.       Height = 17
  131.       Caption = 'From cursor'
  132.       Checked = True
  133.       TabOrder = 0
  134.       TabStop = True
  135.     end
  136.   end
  137.   object gScope: TGroupBox
  138.     Tag = 193
  139.     Left = 9
  140.     Top = 175
  141.     Width = 152
  142.     Height = 65
  143.     Caption = 'Scope'
  144.     TabOrder = 4
  145.     object rGlobal: TRadioButton
  146.       Left = 10
  147.       Top = 20
  148.       Width = 135
  149.       Height = 17
  150.       Caption = 'Global'
  151.       Checked = True
  152.       TabOrder = 0
  153.       TabStop = True
  154.     end
  155.     object rSelectedText: TRadioButton
  156.       Left = 10
  157.       Top = 40
  158.       Width = 135
  159.       Height = 17
  160.       Caption = 'Selected text'
  161.       TabOrder = 1
  162.     end
  163.   end
  164.   object bOK: TButton
  165.     Tag = 100
  166.     Left = 64
  167.     Top = 248
  168.     Width = 83
  169.     Height = 24
  170.     Caption = 'OK'
  171.     Default = True
  172.     Enabled = False
  173.     ModalResult = 1
  174.     TabOrder = 6
  175.   end
  176.   object bReplaceAll: TButton
  177.     Tag = 104
  178.     Left = 152
  179.     Top = 248
  180.     Width = 83
  181.     Height = 24
  182.     Caption = 'Replace &All'
  183.     Enabled = False
  184.     ModalResult = 8
  185.     TabOrder = 7
  186.   end
  187.   object bCancel: TButton
  188.     Tag = 101
  189.     Left = 240
  190.     Top = 248
  191.     Width = 83
  192.     Height = 24
  193.     Cancel = True
  194.     Caption = 'Cancel'
  195.     ModalResult = 2
  196.     TabOrder = 8
  197.   end
  198.   object SearText: TComboBox
  199.     Left = 85
  200.     Top = 9
  201.     Width = 239
  202.     Height = 21
  203.     ItemHeight = 13
  204.     TabOrder = 0
  205.     OnChange = SearTextChange
  206.   end
  207.   object ReplText: TComboBox
  208.     Left = 85
  209.     Top = 39
  210.     Width = 239
  211.     Height = 21
  212.     ItemHeight = 13
  213.     TabOrder = 1
  214.   end
  215. end
  216.