home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TSEARCHDLG / TSEARCHDLG.txt
Text File  |  2001-09-09  |  3KB  |  150 lines

  1. object SearchDlg: TSearchDlg
  2.   Left = 211
  3.   Top = 120
  4.   HelpContext = 11022
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Find Text'
  8.   ClientHeight = 232
  9.   ClientWidth = 346
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnActivate = FormActivate
  16.   OnClose = FormClose
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 16
  22.     Top = 21
  23.     Width = 24
  24.     Height = 13
  25.     Alignment = taRightJustify
  26.     Caption = '&Text:'
  27.   end
  28.   object gbOptions: TGroupBox
  29.     Left = 8
  30.     Top = 48
  31.     Width = 169
  32.     Height = 77
  33.     Caption = 'Options'
  34.     TabOrder = 1
  35.     object cbCase: TCheckBox
  36.       Left = 8
  37.       Top = 16
  38.       Width = 153
  39.       Height = 17
  40.       Caption = '&Case sensitive'
  41.       TabOrder = 0
  42.     end
  43.     object cbWords: TCheckBox
  44.       Left = 8
  45.       Top = 34
  46.       Width = 153
  47.       Height = 17
  48.       Caption = '&Whole words only'
  49.       TabOrder = 1
  50.     end
  51.     object cbRegExp: TCheckBox
  52.       Left = 8
  53.       Top = 52
  54.       Width = 153
  55.       Height = 17
  56.       Caption = '&Regular expressions'
  57.       TabOrder = 2
  58.       OnClick = cbRegExpClick
  59.     end
  60.   end
  61.   object rScope: TRadioGroup
  62.     Left = 8
  63.     Top = 128
  64.     Width = 169
  65.     Height = 65
  66.     Caption = 'Scope'
  67.     ItemIndex = 0
  68.     Items.Strings = (
  69.       '&Global'
  70.       '&Selected text only')
  71.     TabOrder = 2
  72.   end
  73.   object rOrigin: TRadioGroup
  74.     Left = 184
  75.     Top = 128
  76.     Width = 153
  77.     Height = 65
  78.     Caption = 'Origin'
  79.     ItemIndex = 1
  80.     Items.Strings = (
  81.       'From c&ursor'
  82.       '&Entire text')
  83.     TabOrder = 3
  84.   end
  85.   object Button1: TButton
  86.     Left = 86
  87.     Top = 200
  88.     Width = 75
  89.     Height = 25
  90.     Caption = 'OK'
  91.     Default = True
  92.     ModalResult = 1
  93.     TabOrder = 4
  94.   end
  95.   object Button2: TButton
  96.     Left = 168
  97.     Top = 200
  98.     Width = 73
  99.     Height = 25
  100.     Cancel = True
  101.     Caption = 'Cancel'
  102.     ModalResult = 2
  103.     TabOrder = 5
  104.   end
  105.   object bHelp: TButton
  106.     Left = 248
  107.     Top = 200
  108.     Width = 75
  109.     Height = 25
  110.     Caption = '&Help'
  111.     TabOrder = 6
  112.     OnClick = bHelpClick
  113.   end
  114.   object eText: TComboBox
  115.     Left = 48
  116.     Top = 16
  117.     Width = 289
  118.     Height = 21
  119.     ItemHeight = 13
  120.     TabOrder = 0
  121.     OnKeyDown = eTextKeyDown
  122.   end
  123.   object gbDirection: TGroupBox
  124.     Left = 184
  125.     Top = 48
  126.     Width = 153
  127.     Height = 77
  128.     Caption = 'Direction'
  129.     TabOrder = 7
  130.     object rbForward: TRadioButton
  131.       Left = 8
  132.       Top = 16
  133.       Width = 137
  134.       Height = 17
  135.       Caption = '&Forward'
  136.       Checked = True
  137.       TabOrder = 0
  138.       TabStop = True
  139.     end
  140.     object rbBackward: TRadioButton
  141.       Left = 8
  142.       Top = 40
  143.       Width = 137
  144.       Height = 17
  145.       Caption = '&Backward'
  146.       TabOrder = 1
  147.     end
  148.   end
  149. end
  150.