home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BCB.EXE / RCDATA / TSRCHDIALOG / TSRCHDIALOG.txt
Text File  |  1997-01-16  |  3KB  |  169 lines

  1. object SrchDialog: TSrchDialog
  2.   Left = 253
  3.   Top = 114
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Find Text'
  7.   ClientHeight = 224
  8.   ClientWidth = 360
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 8
  17.     Top = 11
  18.     Width = 90
  19.     Height = 16
  20.     AutoSize = False
  21.     Caption = '&Text to find:'
  22.     FocusControl = SearchText
  23.     WordWrap = True
  24.   end
  25.   object HelpButton: TButton
  26.     Left = 277
  27.     Top = 190
  28.     Width = 75
  29.     Height = 25
  30.     Caption = '&Help'
  31.     TabOrder = 7
  32.     OnClick = HelpButtonClick
  33.   end
  34.   object CancelButton: TButton
  35.     Left = 197
  36.     Top = 190
  37.     Width = 75
  38.     Height = 25
  39.     Cancel = True
  40.     Caption = 'Cancel'
  41.     ModalResult = 2
  42.     TabOrder = 6
  43.   end
  44.   object OKButton: TButton
  45.     Left = 117
  46.     Top = 190
  47.     Width = 75
  48.     Height = 25
  49.     Caption = 'OK'
  50.     Default = True
  51.     ModalResult = 1
  52.     TabOrder = 5
  53.   end
  54.   object GroupBox4: TGroupBox
  55.     Left = 184
  56.     Top = 120
  57.     Width = 168
  58.     Height = 60
  59.     Caption = 'Origin'
  60.     TabOrder = 4
  61.     object FromCursor: TRadioButton
  62.       Left = 8
  63.       Top = 16
  64.       Width = 153
  65.       Height = 18
  66.       Caption = '&From cursor'
  67.       TabOrder = 0
  68.     end
  69.     object EntireScope: TRadioButton
  70.       Left = 8
  71.       Top = 36
  72.       Width = 153
  73.       Height = 18
  74.       Caption = '&Entire scope'
  75.       TabOrder = 1
  76.     end
  77.   end
  78.   object GroupBox2: TGroupBox
  79.     Left = 8
  80.     Top = 120
  81.     Width = 168
  82.     Height = 60
  83.     Caption = 'Scope'
  84.     TabOrder = 2
  85.     object GlobalScope: TRadioButton
  86.       Left = 8
  87.       Top = 16
  88.       Width = 153
  89.       Height = 18
  90.       Caption = '&Global'
  91.       TabOrder = 0
  92.     end
  93.     object SelectedText: TRadioButton
  94.       Left = 8
  95.       Top = 36
  96.       Width = 153
  97.       Height = 18
  98.       Caption = '&Selected text'
  99.       TabOrder = 1
  100.     end
  101.   end
  102.   object GroupBox3: TGroupBox
  103.     Left = 184
  104.     Top = 36
  105.     Width = 168
  106.     Height = 81
  107.     Caption = 'Direction'
  108.     TabOrder = 3
  109.     object ForwardDir: TRadioButton
  110.       Left = 8
  111.       Top = 16
  112.       Width = 153
  113.       Height = 18
  114.       Caption = 'Forwar&d'
  115.       TabOrder = 0
  116.     end
  117.     object BackwardDir: TRadioButton
  118.       Left = 8
  119.       Top = 36
  120.       Width = 153
  121.       Height = 18
  122.       Caption = '&Backward'
  123.       TabOrder = 1
  124.     end
  125.   end
  126.   object GroupBox1: TGroupBox
  127.     Left = 8
  128.     Top = 36
  129.     Width = 168
  130.     Height = 80
  131.     Caption = 'Options'
  132.     TabOrder = 1
  133.     object CaseSense: TCheckBox
  134.       Left = 8
  135.       Top = 16
  136.       Width = 153
  137.       Height = 18
  138.       Caption = '&Case sensitive'
  139.       TabOrder = 0
  140.     end
  141.     object WholeWords: TCheckBox
  142.       Left = 8
  143.       Top = 36
  144.       Width = 153
  145.       Height = 18
  146.       TabStop = False
  147.       Caption = '&Whole words only'
  148.       TabOrder = 1
  149.     end
  150.     object RegExp: TCheckBox
  151.       Left = 8
  152.       Top = 56
  153.       Width = 153
  154.       Height = 18
  155.       TabStop = False
  156.       Caption = '&Regular expressions'
  157.       TabOrder = 2
  158.     end
  159.   end
  160.   object SearchText: TComboBox
  161.     Left = 100
  162.     Top = 8
  163.     Width = 252
  164.     Height = 21
  165.     ItemHeight = 13
  166.     TabOrder = 0
  167.   end
  168. end
  169.