;the "Tools | Customize | Sounds..." menu command

object SoundSettingsForm: TSoundSettingsForm
  Caption = 'Sonidos'
  ClientWidth = 487
  object SchemeLbl: TLabel
    Left = 9
    Top = 9
    Caption = 'Esquema de sonido:'
  end
  object SchemeEdt: TEdit
    Left = 9
    Top = 25
    Width = 259
    Color = -2147483633
    ReadOnly = True
  end
  object BrowseBtn: TButton
    Left = 274
    Top = 25
    Width = 100
    Caption = '&Explorar...'
    OnClick = BrowseBtnClick
  end
  object RmvBtn: TButton
    Left = 378
    Top = 25
    Width = 100
    Caption = '&Eliminar'
    OnClick = RmvBtnClick
  end
  object EventGrpBx: TGroupBox
    Left = 9
    Top = 62
    Width = 469
    Caption = 'Eventos'
    object EventLstBx: TListBox
      Left = 12
      Top = 18
      Width = 305
      Style = lbOwnerDrawFixed
      OnClick = EventLstBxClick
      OnDblClick = PlayBtnClick
      OnDrawItem = EventLstBxDrawItem
    end
    object TWBox: TComboBox
      Width = 130
      Style = csDropDownList
      OnClick = TWBoxClick
    end
    object CustSndLbl: TLabel
      Left = 325
      Top = 20
      Caption = 'Sonido personalizado:'
    end
    object CustSndEdt: TEdit
      Left = 325
      Top = 36
      Width = 134
      Color = -2147483633
      ReadOnly = True
    end
    object CustSndBrowseBtn: TButton
      Left = 325
      Top = 62
      Width = 65
      Height = 20
      Caption = 'B&uscar...'
      OnClick = CustSndBrowseBtnClick
    end
    object CustSndClearBtn: TButton
      Left = 394
      Top = 62
      Width = 65
      Height = 20
      Caption = '&Borrar'
      OnClick = CustSndClearBtnClick
    end
    object PlayBtn: TButton
      Left = 325
      Top = 102
      Width = 134
      Height = 20
      Caption = '&Reproducir'
      OnClick = PlayBtnClick
    end
    object EnableChkBx: TCheckBox
      Left = 325
      Top = 138
      Width = 134
      Caption = '&Activado'
      OnClick = EnableControlClick
    end
    object EnableAllBtn: TButton
      Left = 325
      Top = 159
      Width = 134
      Height = 20
      Caption = 'Activar &todo'
      OnClick = EnableControlClick
    end
    object DisableAllBtn: TButton
      Left = 325
      Top = 182
      Width = 134
      Height = 20
      Caption = 'Desactivar Todo'
      OnClick = EnableControlClick
    end
    object VolLbl: TLabel
      Left = 325
      Top = 225
    end
    object VolBar: TTrackBar
      Left = 325
      Top = 240
      Width = 134
      Height = 42
      OnChange = VolBarChange
    end
  end
  object SetSchemeDlg: TOpenDialog
    Filter = 'Esquemas de Sonido (*.asn)|*.asn|Todos los Archivos (*.*)|*.*'
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Elija Esquema de sonido'
  end
  object OpenWavDlg: TOpenDialog
    Filter = 'Archivos de Sonido (*.wav)|*.wav|Todos los Archivos (*.*)|*.*'
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Elija Archivo de sonido'
  end
end