;used by multiples features
;for instance, the "Tools | AutoCorrect Options..." menu command, the "Exceptions..." button

object StrLstEditForm: TStrLstEditForm
  ClientHeight = 222
  ClientWidth = 294
  object MainLbl: TLabel
    Left = 10
    Top = 10
  end
  object StrEdt: TEdit
    Left = 10
    Top = 25
    Width = 170
    OnChange = ControlChange
  end
  object PredefCmbBx: TAdvComboBox
    Left = 10
    Top = 25
    Width = 170
    Style = csDropDownList
    OnChange = ControlChange
  end
  object StrLstBx: TListBox
    Left = 10
    Top = 47
    Width = 170
    Height = 144
    OnClick = StrLstBxClick
  end
  object AddBtn: TButton
    Left = 190
    Top = 47
    Width = 95
    Caption = '&Añadir'
    OnClick = AddBtnClick
  end
  object DelBtn: TButton
    Left = 190
    Top = 72
    Width = 95
    Caption = '&Eliminar'
    OnClick = DelBtnClick
  end
  object DelAllBtn: TButton
    Left = 190
    Top = 97
    Width = 95
    Caption = 'Eliminar &todo'
    OnClick = DelAllBtnClick
  end
  object LoadBtn: TButton
    Left = 190
    Top = 132
    Width = 95
    Caption = 'Importar...'
    OnClick = LoadBtnClick
  end
  object SaveBtn: TButton
    Left = 190
    Top = 157
    Width = 95
    Caption = 'Exportar...'
    OnClick = SaveBtnClick
  end
  object OpenDlg: TOpenDialog
    Filter = 'Texto plano (*.txt)|*.txt|Todos los archivos (*.*)|*.*'
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Cargar desde archivo'
  end
  object SaveDlg: TSaveDialog
    Filter = 'Texto plano (*.txt)|*.txt'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Guardar en archivo'
  end
end