;the "Tools | Options..." menu command, the "General" tab, the "Address Books..." button

object ManageAddrBookForm: TManageAddrBookForm
  Caption = 'Libretas de Direcciones'
  ClientHeight = 213
  ClientWidth = 398
  object FldrLbl: TLabel
    Left = 10
    Top = 12
    Caption = '&Carpeta de &libretas:'
  end
  object FldrEdt: TEdit
    Left = 115
    Top = 10
    Width = 210
    Color = -2147483633
    ReadOnly = True
  end
  object ViewFldrBtn: TButton
    Left = 329
    Top = 10
    Width = 61
    Height = 21
    Caption = '&Ver...'
    OnClick = ViewFldrBtnClick
  end
  object Bevel: TBevel
    Left = 10
    Top = 41
    Width = 380
    Height = 2
  end
  object AvailLbl: TLabel
    Left = 10
    Top = 50
    Caption = 'Libretas de direcciones &disponibles:'
  end
  object AvailLstBx: TListBox
    Left = 10
    Top = 69
    Width = 283
    Height = 134
  end
  object NewBtn: TButton
    Left = 300
    Top = 69
    Width = 90
    Caption = '&Nueva...'
    OnClick = NewBtnClick
  end
  object EditBtn: TButton
    Left = 300
    Top = 95
    Width = 90
    Caption = '&Editar...'
    OnClick = EditBtnClick
  end
  object DelBtn: TButton
    Left = 300
    Top = 121
    Width = 90
    Caption = '&Eliminar'
    OnClick = DelBtnClick
  end
  object CloseBtn: TButton
    Left = 300
    Top = 182
    Width = 90
    Cancel = True
    Caption = 'Cerrar'
    ModalResult = 1
  end
  object SaveAddrBookDlg: TSaveDialog
    Filter = 'Texto plano (*.txt)|*.txt'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofNoReadOnlyReturn]
    Title = 'Crear nueva libreta de direcciones'
  end
end