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

  1. object FindHexForm: TFindHexForm
  2.   Left = 250
  3.   Top = 27
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Find Data'
  7.   ClientHeight = 192
  8.   ClientWidth = 332
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poMainFormCenter
  17.   Scaled = False
  18.   OnCreate = FormCreate
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object lDataToFind: TLabel
  23.     Tag = 152
  24.     Left = 7
  25.     Top = 13
  26.     Width = 55
  27.     Height = 13
  28.     Caption = 'Data to find'
  29.     Transparent = True
  30.     WordWrap = True
  31.   end
  32.   object bOK: TButton
  33.     Tag = 100
  34.     Left = 152
  35.     Top = 161
  36.     Width = 83
  37.     Height = 24
  38.     Caption = 'OK'
  39.     Default = True
  40.     Enabled = False
  41.     ModalResult = 1
  42.     TabOrder = 4
  43.   end
  44.   object bCancel: TButton
  45.     Tag = 101
  46.     Left = 240
  47.     Top = 161
  48.     Width = 83
  49.     Height = 24
  50.     Cancel = True
  51.     Caption = 'Cancel'
  52.     ModalResult = 2
  53.     TabOrder = 5
  54.   end
  55.   object SearText: TComboBox
  56.     Left = 85
  57.     Top = 9
  58.     Width = 239
  59.     Height = 21
  60.     ItemHeight = 13
  61.     TabOrder = 0
  62.     OnChange = SearTextChange
  63.     OnKeyPress = SearTextKeyPress
  64.   end
  65.   object gOptions: TGroupBox
  66.     Tag = 185
  67.     Left = 9
  68.     Top = 37
  69.     Width = 315
  70.     Height = 43
  71.     Caption = 'Options'
  72.     TabOrder = 1
  73.     object cCaseSensitive: TCheckBox
  74.       Left = 170
  75.       Top = 17
  76.       Width = 135
  77.       Height = 17
  78.       Caption = 'Case sensitive'
  79.       Enabled = False
  80.       TabOrder = 1
  81.     end
  82.     object cDataAsText: TCheckBox
  83.       Left = 10
  84.       Top = 17
  85.       Width = 151
  86.       Height = 17
  87.       Caption = 'Find data as text value'
  88.       TabOrder = 0
  89.       OnClick = cDataAsTextClick
  90.     end
  91.   end
  92.   object gScope: TGroupBox
  93.     Tag = 193
  94.     Left = 9
  95.     Top = 87
  96.     Width = 152
  97.     Height = 65
  98.     Caption = 'Scope'
  99.     TabOrder = 2
  100.     object rGlobal: TRadioButton
  101.       Left = 10
  102.       Top = 20
  103.       Width = 135
  104.       Height = 17
  105.       Caption = 'Global'
  106.       Checked = True
  107.       TabOrder = 0
  108.       TabStop = True
  109.     end
  110.     object rSelectedText: TRadioButton
  111.       Left = 10
  112.       Top = 40
  113.       Width = 135
  114.       Height = 17
  115.       Caption = 'Selected text'
  116.       TabOrder = 1
  117.     end
  118.   end
  119.   object gOrigin: TGroupBox
  120.     Tag = 196
  121.     Left = 172
  122.     Top = 87
  123.     Width = 152
  124.     Height = 65
  125.     Caption = 'Origin'
  126.     TabOrder = 3
  127.     object rEntireScope: TRadioButton
  128.       Left = 10
  129.       Top = 40
  130.       Width = 135
  131.       Height = 17
  132.       Caption = 'Entire scope'
  133.       TabOrder = 1
  134.     end
  135.     object rFromCursor: TRadioButton
  136.       Left = 10
  137.       Top = 20
  138.       Width = 135
  139.       Height = 17
  140.       Caption = 'From cursor'
  141.       Checked = True
  142.       TabOrder = 0
  143.       TabStop = True
  144.     end
  145.   end
  146. end
  147.