home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 1996 Counselor / COMPUSERVE.ISO / internet / we2std32 / data.z / WebEdit.exe / 0 / RCDATA / TFRMREPLACE / TFRMREPLACE.txt
Encoding:
Text File  |  1996-06-14  |  3.4 KB  |  179 lines

  1. object frmReplace: TfrmReplace
  2.   Left = 267
  3.   Top = 261
  4.   HelpContext = 1
  5.   BorderStyle = bsDialog
  6.   Caption = 'Replace'
  7.   ClientHeight = 246
  8.   ClientWidth = 362
  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.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object lblTextToFind: TLabel
  21.     Left = 8
  22.     Top = 10
  23.     Width = 56
  24.     Height = 13
  25.     Caption = '&Text to find:'
  26.     FocusControl = cmbText
  27.   end
  28.   object lblReplace: TLabel
  29.     Left = 8
  30.     Top = 38
  31.     Width = 68
  32.     Height = 13
  33.     Caption = 'Replace &With:'
  34.     FocusControl = cmbReplace
  35.   end
  36.   object rgOrigin: TRadioGroup
  37.     Left = 200
  38.     Top = 140
  39.     Width = 153
  40.     Height = 70
  41.     Caption = 'Origin'
  42.     Items.Strings = (
  43.       'From C&ursor'
  44.       '&Entire Scope')
  45.     TabOrder = 7
  46.     OnClick = rgOriginClick
  47.   end
  48.   object rgDirection: TRadioGroup
  49.     Left = 200
  50.     Top = 64
  51.     Width = 153
  52.     Height = 73
  53.     Caption = 'Direction'
  54.     Items.Strings = (
  55.       '&Forward'
  56.       '&Backward')
  57.     TabOrder = 5
  58.     OnClick = rgDirectionClick
  59.   end
  60.   object gbOptions: TGroupBox
  61.     Left = 8
  62.     Top = 64
  63.     Width = 185
  64.     Height = 73
  65.     Caption = 'Options'
  66.     TabOrder = 4
  67.     object chkCase: TCheckBox
  68.       Left = 9
  69.       Top = 16
  70.       Width = 168
  71.       Height = 17
  72.       Caption = '&Case sensitive'
  73.       TabOrder = 0
  74.     end
  75.     object chkWholeWords: TCheckBox
  76.       Left = 9
  77.       Top = 32
  78.       Width = 168
  79.       Height = 17
  80.       Caption = '&Whole words only'
  81.       TabOrder = 1
  82.     end
  83.     object chkPromptOnReplace: TCheckBox
  84.       Left = 9
  85.       Top = 48
  86.       Width = 161
  87.       Height = 17
  88.       Caption = '&Prompt on replace'
  89.       State = cbChecked
  90.       TabOrder = 2
  91.     end
  92.   end
  93.   object cmbText: TComboBox
  94.     Left = 80
  95.     Top = 8
  96.     Width = 273
  97.     Height = 21
  98.     ItemHeight = 13
  99.     TabOrder = 0
  100.     OnChange = cmbTextChange
  101.     OnKeyDown = cmbTextKeyDown
  102.   end
  103.   object btnReplace: TButton
  104.     Left = 118
  105.     Top = 216
  106.     Width = 75
  107.     Height = 25
  108.     Caption = '&Replace'
  109.     Default = True
  110.     TabOrder = 2
  111.     OnClick = btnReplaceClick
  112.   end
  113.   object btnCancel: TButton
  114.     Left = 278
  115.     Top = 216
  116.     Width = 75
  117.     Height = 25
  118.     Cancel = True
  119.     Caption = 'Cancel'
  120.     ModalResult = 2
  121.     TabOrder = 8
  122.     OnClick = btnCancelClick
  123.   end
  124.   object gbScope: TGroupBox
  125.     Left = 8
  126.     Top = 140
  127.     Width = 185
  128.     Height = 70
  129.     Caption = 'Scope'
  130.     TabOrder = 6
  131.     object rbGlobal: TRadioButton
  132.       Left = 8
  133.       Top = 16
  134.       Width = 169
  135.       Height = 17
  136.       Caption = '&Global'
  137.       TabOrder = 0
  138.       OnClick = rbGlobalClick
  139.     end
  140.     object rbSelectedText: TRadioButton
  141.       Left = 8
  142.       Top = 32
  143.       Width = 169
  144.       Height = 17
  145.       Caption = '&Selected Text'
  146.       TabOrder = 1
  147.       OnClick = rbSelectedTextClick
  148.     end
  149.     object rbAllOpenDocs: TRadioButton
  150.       Left = 8
  151.       Top = 48
  152.       Width = 169
  153.       Height = 17
  154.       Caption = 'All Open &Documents'
  155.       TabOrder = 2
  156.       OnClick = rbAllOpenDocsClick
  157.     end
  158.   end
  159.   object cmbReplace: TComboBox
  160.     Left = 80
  161.     Top = 36
  162.     Width = 273
  163.     Height = 21
  164.     ItemHeight = 13
  165.     TabOrder = 1
  166.     OnChange = cmbReplaceChange
  167.     OnKeyDown = cmbReplaceKeyDown
  168.   end
  169.   object btnReplaceAll: TButton
  170.     Left = 198
  171.     Top = 216
  172.     Width = 75
  173.     Height = 25
  174.     Caption = 'Replace &All'
  175.     TabOrder = 3
  176.     OnClick = btnReplaceAllClick
  177.   end
  178. end
  179.