home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / komunik / webedit / data.z / WebEdit.exe / 0 / RCDATA / TFRMFIND / TFRMFIND.txt
Text File  |  1996-10-14  |  3KB  |  142 lines

  1. object frmFind: TfrmFind
  2.   Left = 678
  3.   Top = 244
  4.   HelpContext = 1
  5.   BorderStyle = bsDialog
  6.   Caption = 'Find'
  7.   ClientHeight = 215
  8.   ClientWidth = 368
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnActivate = FormActivate
  15.   OnCreate = FormCreate
  16.   OnHide = FormHide
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object lblTextToFind: TLabel
  20.     Left = 8
  21.     Top = 10
  22.     Width = 56
  23.     Height = 13
  24.     Caption = '&Text to find:'
  25.     FocusControl = cmbText
  26.   end
  27.   object rgOrigin: TRadioGroup
  28.     Left = 200
  29.     Top = 108
  30.     Width = 161
  31.     Height = 70
  32.     Caption = 'Origin'
  33.     Items.Strings = (
  34.       'From C&ursor'
  35.       '&Entire Scope')
  36.     TabOrder = 5
  37.     OnClick = rgOriginClick
  38.   end
  39.   object rgDirection: TRadioGroup
  40.     Left = 200
  41.     Top = 40
  42.     Width = 161
  43.     Height = 65
  44.     Caption = 'Direction'
  45.     Items.Strings = (
  46.       '&Forward'
  47.       '&Backward')
  48.     TabOrder = 3
  49.     OnClick = rgDirectionClick
  50.   end
  51.   object gbOptions: TGroupBox
  52.     Left = 8
  53.     Top = 40
  54.     Width = 185
  55.     Height = 65
  56.     Caption = 'Options'
  57.     TabOrder = 2
  58.     object chkCase: TCheckBox
  59.       Left = 9
  60.       Top = 16
  61.       Width = 168
  62.       Height = 17
  63.       Caption = '&Case Sensitive'
  64.       TabOrder = 0
  65.     end
  66.     object chkWholeWords: TCheckBox
  67.       Left = 9
  68.       Top = 40
  69.       Width = 168
  70.       Height = 17
  71.       Caption = '&Whole words only'
  72.       TabOrder = 1
  73.     end
  74.   end
  75.   object cmbText: TComboBox
  76.     Left = 96
  77.     Top = 8
  78.     Width = 265
  79.     Height = 21
  80.     ItemHeight = 13
  81.     TabOrder = 0
  82.     OnChange = cmbTextChange
  83.     OnKeyDown = cmbTextKeyDown
  84.   end
  85.   object btnFindNext: TButton
  86.     Left = 184
  87.     Top = 184
  88.     Width = 97
  89.     Height = 25
  90.     Caption = '&Find Next'
  91.     Default = True
  92.     TabOrder = 1
  93.     OnClick = btnFindNextClick
  94.   end
  95.   object btnCancel: TButton
  96.     Left = 286
  97.     Top = 184
  98.     Width = 75
  99.     Height = 25
  100.     Cancel = True
  101.     Caption = 'Cancel'
  102.     ModalResult = 2
  103.     TabOrder = 6
  104.     OnClick = btnCancelClick
  105.   end
  106.   object gbScope: TGroupBox
  107.     Left = 8
  108.     Top = 108
  109.     Width = 185
  110.     Height = 70
  111.     Caption = 'Scope'
  112.     TabOrder = 4
  113.     object rbGlobal: TRadioButton
  114.       Left = 8
  115.       Top = 16
  116.       Width = 169
  117.       Height = 17
  118.       Caption = '&Global'
  119.       TabOrder = 0
  120.       OnClick = rbGlobalClick
  121.     end
  122.     object rbSelectedText: TRadioButton
  123.       Left = 8
  124.       Top = 32
  125.       Width = 169
  126.       Height = 17
  127.       Caption = '&Selected Text'
  128.       TabOrder = 1
  129.       OnClick = rbSelectedTextClick
  130.     end
  131.     object rbAllOpenDocs: TRadioButton
  132.       Left = 8
  133.       Top = 48
  134.       Width = 169
  135.       Height = 17
  136.       Caption = 'All Open &Documents'
  137.       TabOrder = 2
  138.       OnClick = rbAllOpenDocsClick
  139.     end
  140.   end
  141. end
  142.