123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- object frmReplace: TfrmReplace
- Left = 441
- Top = 192
- BorderIcons = [biSystemMenu]
- BorderStyle = bsSingle
- Caption = 'Replace Text'
- ClientHeight = 297
- ClientWidth = 329
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- Icon.Data = {
- 0000010001001010000001001800680300001600000028000000100000002000
- 0000010018000000000040030000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000C6C6C6000000000000
- 000000000000000000000000000000C6C6C60000000000000000000000000000
- 0000000000000000000000000084848400000000000000000084848400000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000C6C6C6000000000000000000000000C6C6C600000000000000
- 0000000000000000000000000000000000000000000000C6C6C6000000000000
- 000000000000C6C6C60000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000008484840000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000B6E7
- 0000B76B000084270000B76B0000CEE70000FFFF0000C7C70000C7C70000C387
- 0000C0070000C0070000C0070000C0070000C0070000F39F0000F39F0000}
- OldCreateOrder = False
- Position = poOwnerFormCenter
- OnCreate = FormCreate
- OnShow = FormShow
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 8
- Top = 12
- Width = 49
- Height = 13
- Caption = '&Find what:'
- end
- object Label2: TLabel
- Left = 8
- Top = 41
- Width = 65
- Height = 13
- Caption = '&Replace with:'
- end
- object cboSearchText: TComboBox
- Left = 96
- Top = 8
- Width = 225
- Height = 21
- ItemHeight = 13
- TabOrder = 0
- end
- object btnOK: TButton
- Left = 90
- Top = 267
- Width = 75
- Height = 23
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 6
- OnClick = btnOKClick
- end
- object btnCancel: TButton
- Left = 249
- Top = 267
- Width = 75
- Height = 23
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 8
- OnClick = btnCancelClick
- end
- object cboReplaceText: TComboBox
- Left = 96
- Top = 37
- Width = 225
- Height = 21
- ItemHeight = 13
- TabOrder = 1
- end
- object optScope: TRadioGroup
- Left = 8
- Top = 192
- Width = 153
- Height = 65
- Caption = 'Scope'
- ItemIndex = 0
- Items.Strings = (
- '&Global'
- '&Selected Text')
- TabOrder = 4
- end
- object optOrigin: TRadioGroup
- Left = 168
- Top = 192
- Width = 153
- Height = 65
- Caption = 'Origin'
- ItemIndex = 0
- Items.Strings = (
- '&From Cursor'
- '&Entire Scope')
- TabOrder = 5
- end
- object optDirection: TRadioGroup
- Left = 170
- Top = 72
- Width = 151
- Height = 113
- Caption = 'Direction'
- ItemIndex = 0
- Items.Strings = (
- '&Forward'
- '&Backward')
- TabOrder = 3
- end
- object gbSearchOptions: TGroupBox
- Left = 8
- Top = 72
- Width = 154
- Height = 113
- Caption = 'Options'
- TabOrder = 2
- object chkSearchCaseSensitive: TCheckBox
- Left = 8
- Top = 17
- Width = 140
- Height = 17
- Caption = 'C&ase Sensitive'
- TabOrder = 0
- end
- object chkSearchWholeWords: TCheckBox
- Left = 8
- Top = 39
- Width = 140
- Height = 17
- Caption = '&Whole Words Only'
- TabOrder = 1
- end
- object chkRegularExpression: TCheckBox
- Left = 8
- Top = 62
- Width = 140
- Height = 17
- Caption = '&Regular Expression'
- TabOrder = 2
- end
- object chkPrompt: TCheckBox
- Left = 8
- Top = 85
- Width = 140
- Height = 17
- Caption = '&Prompt on Repalce'
- TabOrder = 3
- end
- end
- object btnReplaceAll: TButton
- Left = 170
- Top = 266
- Width = 75
- Height = 23
- Caption = 'Replace All'
- ModalResult = 1
- TabOrder = 7
- OnClick = btnReplaceAllClick
- end
- end
|