;the "Tools | Options..." menu command, the "General" tab, the "Address Books..." button, the "Edit..." button
;and
;the "Tools | Options..." menu command, the "General" tab, the "Address Books..." button, the "Edit..." button, the "Import Addresses..." button, the "From another Atlantis address book..." menu command

object EditAddrBookForm: TEditAddrBookForm
  ClientHeight = 295
  ClientWidth = 519
  KeyPreview = True
  OnKeyDown = FormKeyDown
  object BookPanel: TPanel
    Width = 519
    Height = 42
    BevelOuter = bvNone
    object BookLbl: TLabel
      Left = 8
      Top = 14
      Caption = '&Libreta de direcciones:'
    end
    object BookCmbBx: TComboBox
      Left = 128
      Top = 10
      Width = 381
      Style = csDropDownList
      OnChange = BookCmbBxChange
    end
    object Bvl1: TBevel
      Left = 10
      Top = 39
      Width = 500
      Height = 2
    end
  end
  object AddrPanel: TPanel
    Top = 42
    Width = 519
    Height = 238
    BevelOuter = bvNone
    object AddrLbl: TLabel
      Left = 8
      Top = 8
      Caption = '&Direcciones:'
    end
    object AddrLstBx: TListBox
      Left = 8
      Top = 26
      Width = 263
      Height = 134
      OnClick = AddrLstBxClick
    end
    object HintLbl: TLabel
      Left = 8
      Top = 164
      Width = 263
      Height = 40
      AutoSize = False
      Caption = 'Mantenga pulsada la tecla Ctrl y haga clic en las direcciones para seleccionar varias. Presione Ctrl+A para seleccionar todas las direcciones.'
    end
    object SelAddrLbl: TLabel
      Left = 280
      Top = 8
      Caption = 'Dirección &seleccionada:'
    end
    object AddrMemo: TMemo
      Left = 280
      Top = 26
      Width = 232
      Height = 104
      Color = -2147483633
      ReadOnly = True
    end
    object NewBtn: TButton
      Left = 280
      Top = 138
      Width = 73
      Caption = '&Nueva...'
      OnClick = NewBtnClick
    end
    object EditBtn: TButton
      Left = 359
      Top = 138
      Width = 73
      Caption = '&Modificar...'
      OnClick = EditBtnClick
    end
    object DelBtn: TButton
      Left = 438
      Top = 138
      Width = 73
      Caption = '&Eliminar'
      OnClick = DelBtnClick
    end
    object AddBtn: TSpeedButton
      Left = 280
      Top = 164
      Width = 231
      Height = 22
      Caption = 'Importar direcciones'
      OnClick = AddBtnClick
    end
    object AddMenu: TPopupMenu
      object AddMenuItem1: TMenuItem
        Caption = 'Desde otra libreta de direcciones de Atlantis...'
        OnClick = AddMenuItemClick
      end
      object AddMenuItem2: TMenuItem
        Caption = 'Desde un archivo CSV...'
        OnClick = AddMenuItemClick
      end
    end
    object OpenCsvDlg: TOpenDialog
      Filter = 'Archivos de valores separados por comas (*.csv)|*.csv'
      Options = [ofPathMustExist, ofFileMustExist]
      Title = 'Abrir archivo CSV'
    end
    object Bvl2: TBevel
      Left = 10
      Top = 212
      Width = 500
      Height = 2
    end
    object EditMailListBtn: TButton
      Left = 10
      Top = 208
      Width = 144
      Caption = 'Ad&ministrar direcciones...'
      OnClick = EditMailListBtnClick
    end
  end
end