;the "Find | Replace" panel of the Control Board, the "Search options" button (the "gear" button), the "Open 'Find/Replace' Dialog..." menu command

object FindReplaceForm: TFindReplaceForm
  Caption = 'Buscar/Reemplazar'
  ClientHeight = 229
  ClientWidth = 533
  FormStyle = fsStayOnTop
  OnActivate = FormActivate
  OnDeactivate = FormDeactivate
  OnClose = FormClose
  object PageControl: TPageControl
    Left = 8
    Top = 8
    Width = 518
    Height = 212
    OnChange = PageControlChange
    object FindTabSheet: TTabSheet
      Caption = 'Buscar'
    end
    object ReplaceTabSheet: TTabSheet
      Caption = 'Reemplazar'
    end
  end
  object Panel: TPanel
    Left = 10
    Top = 34
    Width = 512
    Height = 178
    BevelOuter = bvNone
    object FindLbl: TLabel
      Left = 7
      Top = 2
      Caption = '&Buscar qué:'
      FocusControl = FindCmbBx
    end
    object ReplaceLbl: TLabel
      Left = 7
      Top = 72
      Caption = '&Reemplazar con:'
      FocusControl = ReplaceCmbBx
    end
    object FindFmtChkBx: TCheckBox
      Left = 7
      Top = 46
      Caption = 'For&mato'
      OnClick = ControlChange
    end
    object RplcFmtChkBx: TCheckBox
      Left = 7
      Top = 136
      Caption = 'Form&ato'
      OnClick = ControlChange
    end
    object FindNextBtn: TButton
      Left = 254
      Top = 19
      Width = 104
      Height = 21
      Caption = 'Buscar &Siguiente'
      Default = True
      OnClick = FindNextBtnClick
    end
    object FindAllBtn: TButton
      Left = 362
      Top = 19
      Width = 144
      Height = 21
      Caption = 'Buscar && &Seleccionar todo'
      OnClick = FindAllBtnClick
    end
    object RplcBtn: TButton
      Left = 254
      Top = 44
      Width = 104
      Height = 21
      Caption = 'Reem&plazar'
      OnClick = RplcBtnClick
    end
    object RplcAllBtn: TButton
      Left = 362
      Top = 44
      Width = 144
      Height = 21
      Caption = 'Reemplazar &todo'
      OnClick = RplcAllBtnClick
    end
    object MoreLessBtn: TSpeedButton
      Left = 254
      Top = 69
      Width = 104
      Height = 21
      OnClick = ControlChange
    end
    object CloseBtn: TButton
      Left = 362
      Top = 69
      Width = 144
      Height = 21
      Cancel = True
      Caption = 'Cerrar'
      OnClick = CloseBtnClick
    end
    object OptPanel: TPanel
      Left = 254
      Top = 95
      Width = 253
      Height = 77
      BevelOuter = bvNone
      object OptionLbl: TLabel
        Caption = 'Opciones'
      end
      object Bevel: TBevel
        Left = 43
        Top = 6
        Width = 205
        Height = 2
      end
      object WholeWordsChkBx: TCheckBox
        Top = 16
        Caption = '&Palabras completas'
        OnClick = ControlChange
      end
      object MatchChkBx: TCheckBox
        Top = 34
        Caption = '&Coincidencia exacta'
        OnClick = ControlChange
      end
      object WildcardChkBx: TCheckBox
        Top = 52
        Caption = '&Usar comodines'
        OnClick = ControlChange
      end
      object DirectionLbl: TLabel
        Left = 127
        Top = 16
        Caption = 'Dirección de &búsqueda:'
      end
      object DirectionCmbBx: TComboBox
        Left = 127
        Top = 31
        Width = 104
        Style = csDropDownList
        Items.Strings = (
          'Hacia atrás'
          'Hacia adelante')
        OnChange = ControlChange
      end
    end
  end
  object SearchScopePanel: TPanel
    Left = 178
    Top = 6
    Width = 340
    Height = 18
    BevelOuter = bvNone
    object SearchScopeLbl: TLabel
      Width = 310
      Height = 18
      Align = alClient
      Alignment = taRightJustify
      AutoSize = False
      Font.Style = [fsBold]
    end
    object SearchScopeLbl2: TLabel
      Left = 63
      Top = 1
      Caption = 'Buscar:'
      Font.Style = [fsBold]
      Visible = False
    end
    object SelRadBtn: TRadioButton
      Left = 113
      Caption = 'se&lección'
      Font.Style = [fsBold]
      Visible = False
    end
    object WholeDocRadBtn: TRadioButton
      Left = 190
      Caption = 'documento &completo'
      Font.Style = [fsBold]
      Visible = False
    end
  end
  object FindCmbBx: TComboBox
    Left = 17
    Top = 53
    Width = 205
    OnChange = ControlChange
  end
  object ReplaceCmbBx: TComboBox
    Left = 17
    Top = 122
    Width = 205
    OnChange = ControlChange
  end
end