object AddTrack: TAddTrack
  Left = 0
  Top = 0
  BorderStyle = bsDialog
  Caption = 'Add Track to System'
  ClientHeight = 419
  ClientWidth = 535
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object Label3: TLabel
    Left = 41
    Top = 232
    Width = 49
    Height = 13
    Caption = 'Track Title'
  end
  object Ok: TButton
    Left = 272
    Top = 272
    Width = 89
    Height = 33
    Caption = 'Ok'
    TabOrder = 0
    OnClick = OkClick
  end
  object Cancel: TButton
    Left = 377
    Top = 272
    Width = 89
    Height = 33
    Caption = 'Cancel'
    ModalResult = 2
    TabOrder = 1
    OnClick = CancelClick
  end
  object oldalbum: TRadioButton
    Left = 24
    Top = 24
    Width = 444
    Height = 17
    Caption = 'Add Track to'
    Checked = True
    TabOrder = 2
    TabStop = True
    OnClick = oldalbumClick
  end
  object newalbum: TRadioButton
    Left = 24
    Top = 56
    Width = 113
    Height = 17
    Caption = 'Create New Album'
    TabOrder = 3
    OnClick = newalbumClick
  end
  object newalbumframe: TGroupBox
    Left = 40
    Top = 79
    Width = 409
    Height = 114
    Enabled = False
    TabOrder = 4
    object Label1: TLabel
      Left = 21
      Top = 24
      Width = 26
      Height = 13
      Caption = 'Artist'
    end
    object Label2: TLabel
      Left = 21
      Top = 64
      Width = 29
      Height = 13
      Caption = 'Album'
    end
    object ebartist: TEdit
      Left = 72
      Top = 21
      Width = 313
      Height = 21
      TabOrder = 0
    end
    object ebalbum: TEdit
      Left = 72
      Top = 61
      Width = 313
      Height = 21
      TabOrder = 1
    end
  end
  object ebtrack: TEdit
    Left = 112
    Top = 229
    Width = 313
    Height = 21
    TabOrder = 5
  end
  object repeataction: TCheckBox
    Left = 24
    Top = 292
    Width = 185
    Height = 17
    Caption = 'Repeat for all tracks in selection '
    TabOrder = 6
    OnClick = repeatactionClick
  end
  object actiontimer: TTimer
    Enabled = False
    Interval = 100
    OnTimer = actiontimerTimer
    Left = 336
    Top = 360
  end
end