home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / cecko / install / devcpp4920.exe / devcpp.exe / 0 / RCDATA / TFRMREPLACE / TFRMREPLACE.txt
Encoding:
Text File  |  2002-04-12  |  3.6 KB  |  195 lines

  1. object frmReplace: TfrmReplace
  2.   Left = 278
  3.   Top = 71
  4.   ActiveControl = cboFindText
  5.   BorderStyle = bsDialog
  6.   Caption = 'Replace Text'
  7.   ClientHeight = 251
  8.   ClientWidth = 343
  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 = poScreenCenter
  17.   OnClose = FormClose
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object lblFind: TLabel
  22.     Left = 8
  23.     Top = 12
  24.     Width = 56
  25.     Height = 13
  26.     Caption = 'Text to find:'
  27.     FocusControl = cboFindText
  28.   end
  29.   object lblReplace: TLabel
  30.     Left = 10
  31.     Top = 42
  32.     Width = 65
  33.     Height = 13
  34.     Caption = 'Replace with:'
  35.   end
  36.   object cboFindText: TComboBox
  37.     Left = 96
  38.     Top = 8
  39.     Width = 237
  40.     Height = 21
  41.     ItemHeight = 13
  42.     TabOrder = 0
  43.   end
  44.   object grpOptions: TGroupBox
  45.     Left = 8
  46.     Top = 64
  47.     Width = 160
  48.     Height = 80
  49.     Caption = ' Options '
  50.     TabOrder = 2
  51.     object cbMatchCase: TCheckBox
  52.       Left = 8
  53.       Top = 16
  54.       Width = 150
  55.       Height = 16
  56.       Caption = '&Case sensitive'
  57.       TabOrder = 0
  58.     end
  59.     object cbWholeWord: TCheckBox
  60.       Left = 8
  61.       Top = 36
  62.       Width = 150
  63.       Height = 16
  64.       Caption = '&Whole words only'
  65.       TabOrder = 1
  66.     end
  67.     object cbPrompt: TCheckBox
  68.       Left = 8
  69.       Top = 54
  70.       Width = 150
  71.       Height = 17
  72.       Caption = '&Prompt on Replace'
  73.       TabOrder = 2
  74.     end
  75.   end
  76.   object btnReplace: TButton
  77.     Left = 8
  78.     Top = 219
  79.     Width = 80
  80.     Height = 24
  81.     Caption = 'Ok'
  82.     Default = True
  83.     ModalResult = 1
  84.     TabOrder = 6
  85.     OnClick = btnReplaceClick
  86.   end
  87.   object btnCancel: TButton
  88.     Left = 254
  89.     Top = 219
  90.     Width = 80
  91.     Height = 24
  92.     Cancel = True
  93.     Caption = 'Cancel'
  94.     ModalResult = 2
  95.     TabOrder = 8
  96.     OnClick = btnCancelClick
  97.   end
  98.   object grpDirection: TGroupBox
  99.     Left = 175
  100.     Top = 64
  101.     Width = 160
  102.     Height = 80
  103.     Caption = ' Direction '
  104.     TabOrder = 3
  105.     object rbForward: TRadioButton
  106.       Left = 8
  107.       Top = 16
  108.       Width = 105
  109.       Height = 17
  110.       Caption = 'Forwar&d'
  111.       Checked = True
  112.       TabOrder = 0
  113.       TabStop = True
  114.     end
  115.     object rbBackward: TRadioButton
  116.       Left = 8
  117.       Top = 36
  118.       Width = 105
  119.       Height = 17
  120.       Caption = '&Backward'
  121.       TabOrder = 1
  122.     end
  123.   end
  124.   object grpScope: TGroupBox
  125.     Left = 8
  126.     Top = 150
  127.     Width = 160
  128.     Height = 60
  129.     Caption = ' Scope '
  130.     TabOrder = 4
  131.     object rbGlobal: TRadioButton
  132.       Left = 8
  133.       Top = 16
  134.       Width = 105
  135.       Height = 17
  136.       Caption = '&Global'
  137.       Checked = True
  138.       TabOrder = 0
  139.       TabStop = True
  140.     end
  141.     object rbSelectedOnly: TRadioButton
  142.       Left = 8
  143.       Top = 36
  144.       Width = 105
  145.       Height = 17
  146.       Caption = '&Selected only'
  147.       TabOrder = 1
  148.     end
  149.   end
  150.   object grpOrigin: TGroupBox
  151.     Left = 175
  152.     Top = 150
  153.     Width = 160
  154.     Height = 60
  155.     Caption = ' Origin '
  156.     TabOrder = 5
  157.     object rbFromCursor: TRadioButton
  158.       Left = 8
  159.       Top = 16
  160.       Width = 105
  161.       Height = 17
  162.       Caption = '&From cursor'
  163.       Checked = True
  164.       TabOrder = 0
  165.       TabStop = True
  166.     end
  167.     object rbEntireScope: TRadioButton
  168.       Left = 8
  169.       Top = 36
  170.       Width = 105
  171.       Height = 17
  172.       Caption = '&Entire scope'
  173.       TabOrder = 1
  174.     end
  175.   end
  176.   object cboReplaceText: TComboBox
  177.     Left = 97
  178.     Top = 38
  179.     Width = 236
  180.     Height = 21
  181.     ItemHeight = 13
  182.     TabOrder = 1
  183.   end
  184.   object btnReplaceAll: TButton
  185.     Left = 94
  186.     Top = 219
  187.     Width = 74
  188.     Height = 24
  189.     Caption = 'Replace &All'
  190.     ModalResult = 8
  191.     TabOrder = 7
  192.     OnClick = btnReplaceClick
  193.   end
  194. end
  195.