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

  1. object FindForm: TFindForm
  2.   Tag = 151
  3.   Left = 322
  4.   Top = 234
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Find Text'
  8.   ClientHeight = 234
  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 = 152
  25.     Left = 7
  26.     Top = 13
  27.     Width = 53
  28.     Height = 13
  29.     Caption = 'Text to find'
  30.     Transparent = True
  31.     WordWrap = True
  32.   end
  33.   object bOK: TButton
  34.     Tag = 100
  35.     Left = 152
  36.     Top = 203
  37.     Width = 83
  38.     Height = 24
  39.     Caption = 'OK'
  40.     Default = True
  41.     Enabled = False
  42.     ModalResult = 1
  43.     TabOrder = 5
  44.   end
  45.   object bCancel: TButton
  46.     Tag = 101
  47.     Left = 240
  48.     Top = 203
  49.     Width = 83
  50.     Height = 24
  51.     Cancel = True
  52.     Caption = 'Cancel'
  53.     ModalResult = 2
  54.     TabOrder = 6
  55.   end
  56.   object SearText: TComboBox
  57.     Left = 85
  58.     Top = 9
  59.     Width = 239
  60.     Height = 21
  61.     ItemHeight = 13
  62.     TabOrder = 0
  63.     OnChange = SearTextChange
  64.   end
  65.   object gOptions: TGroupBox
  66.     Tag = 185
  67.     Left = 9
  68.     Top = 37
  69.     Width = 152
  70.     Height = 85
  71.     Caption = 'Options'
  72.     TabOrder = 1
  73.     object cCaseSensitive: TCheckBox
  74.       Left = 10
  75.       Top = 20
  76.       Width = 135
  77.       Height = 17
  78.       Caption = 'Case sensitive'
  79.       TabOrder = 0
  80.     end
  81.     object cWholeWordsOnly: TCheckBox
  82.       Left = 10
  83.       Top = 40
  84.       Width = 135
  85.       Height = 17
  86.       Caption = 'Whole words only'
  87.       TabOrder = 1
  88.     end
  89.     object cRegularExpressions: TCheckBox
  90.       Left = 10
  91.       Top = 60
  92.       Width = 135
  93.       Height = 17
  94.       Caption = 'Regular expressions'
  95.       TabOrder = 2
  96.     end
  97.   end
  98.   object gDirection: TGroupBox
  99.     Tag = 190
  100.     Left = 172
  101.     Top = 37
  102.     Width = 152
  103.     Height = 85
  104.     Caption = 'Direction'
  105.     TabOrder = 2
  106.     object rForward: TRadioButton
  107.       Left = 10
  108.       Top = 20
  109.       Width = 135
  110.       Height = 17
  111.       Caption = 'Forward'
  112.       Checked = True
  113.       TabOrder = 0
  114.       TabStop = True
  115.     end
  116.     object rBackward: TRadioButton
  117.       Left = 10
  118.       Top = 40
  119.       Width = 135
  120.       Height = 17
  121.       Caption = 'Backward'
  122.       TabOrder = 1
  123.     end
  124.   end
  125.   object gScope: TGroupBox
  126.     Tag = 193
  127.     Left = 9
  128.     Top = 129
  129.     Width = 152
  130.     Height = 65
  131.     Caption = 'Scope'
  132.     TabOrder = 3
  133.     object rGlobal: TRadioButton
  134.       Left = 10
  135.       Top = 20
  136.       Width = 135
  137.       Height = 17
  138.       Caption = 'Global'
  139.       Checked = True
  140.       TabOrder = 0
  141.       TabStop = True
  142.     end
  143.     object rSelectedText: TRadioButton
  144.       Left = 10
  145.       Top = 40
  146.       Width = 135
  147.       Height = 17
  148.       Caption = 'Selected text'
  149.       TabOrder = 1
  150.     end
  151.   end
  152.   object gOrigin: TGroupBox
  153.     Tag = 196
  154.     Left = 172
  155.     Top = 129
  156.     Width = 152
  157.     Height = 65
  158.     Caption = 'Origin'
  159.     TabOrder = 4
  160.     object rEntireScope: TRadioButton
  161.       Left = 10
  162.       Top = 40
  163.       Width = 135
  164.       Height = 17
  165.       Caption = 'Entire scope'
  166.       TabOrder = 1
  167.     end
  168.     object rFromCursor: TRadioButton
  169.       Left = 10
  170.       Top = 20
  171.       Width = 135
  172.       Height = 17
  173.       Caption = 'From cursor'
  174.       Checked = True
  175.       TabOrder = 0
  176.       TabStop = True
  177.     end
  178.   end
  179. end
  180.