home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / Delphi / Speakers / Unit1.dfm < prev    next >
Encoding:
Text File  |  2005-09-15  |  2.5 KB  |  123 lines

  1. object Form1: TForm1
  2.   Left = 193
  3.   Top = 107
  4.   BorderStyle = bsDialog
  5.   Caption = 'BASS multi-speaker example'
  6.   ClientHeight = 196
  7.   ClientWidth = 345
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object GroupBox1: TGroupBox
  20.     Left = 7
  21.     Top = 0
  22.     Width = 330
  23.     Height = 45
  24.     Caption = '1 - front'
  25.     TabOrder = 0
  26.     object Button1: TButton
  27.       Left = 7
  28.       Top = 14
  29.       Width = 270
  30.       Height = 23
  31.       Caption = 'click here to open a file...'
  32.       TabOrder = 0
  33.       OnClick = Button1Click
  34.     end
  35.   end
  36.   object GroupBox2: TGroupBox
  37.     Left = 7
  38.     Top = 48
  39.     Width = 330
  40.     Height = 45
  41.     Caption = '2 - rear'
  42.     TabOrder = 1
  43.     object Button2: TButton
  44.       Tag = 1
  45.       Left = 7
  46.       Top = 14
  47.       Width = 270
  48.       Height = 23
  49.       Caption = 'click here to open a file...'
  50.       TabOrder = 0
  51.       OnClick = Button1Click
  52.     end
  53.   end
  54.   object GroupBox3: TGroupBox
  55.     Left = 7
  56.     Top = 96
  57.     Width = 330
  58.     Height = 45
  59.     Caption = '3 - center/LFE'
  60.     TabOrder = 2
  61.     object Button3: TButton
  62.       Tag = 2
  63.       Left = 7
  64.       Top = 14
  65.       Width = 270
  66.       Height = 23
  67.       Caption = 'click here to open a file...'
  68.       TabOrder = 0
  69.       OnClick = Button1Click
  70.     end
  71.   end
  72.   object GroupBox4: TGroupBox
  73.     Left = 7
  74.     Top = 144
  75.     Width = 330
  76.     Height = 45
  77.     Caption = '4 - rear center'
  78.     TabOrder = 3
  79.     object Button4: TButton
  80.       Tag = 3
  81.       Left = 7
  82.       Top = 14
  83.       Width = 270
  84.       Height = 23
  85.       Caption = 'click here to open a file...'
  86.       TabOrder = 0
  87.       OnClick = Button1Click
  88.     end
  89.   end
  90.   object Button5: TButton
  91.     Left = 288
  92.     Top = 38
  93.     Width = 41
  94.     Height = 23
  95.     Caption = 'Swap'
  96.     TabOrder = 4
  97.     OnClick = Button5Click
  98.   end
  99.   object Button6: TButton
  100.     Tag = 1
  101.     Left = 288
  102.     Top = 86
  103.     Width = 41
  104.     Height = 23
  105.     Caption = 'Swap'
  106.     TabOrder = 5
  107.     OnClick = Button5Click
  108.   end
  109.   object Button7: TButton
  110.     Tag = 2
  111.     Left = 288
  112.     Top = 134
  113.     Width = 41
  114.     Height = 23
  115.     Caption = 'Swap'
  116.     TabOrder = 6
  117.     OnClick = Button5Click
  118.   end
  119.   object OpenDialog1: TOpenDialog
  120.     Filter = 'Streamable files|*.mp3;*.mp2;*.mp1;*.ogg;*.wav;*.aif|All files|*.*'
  121.   end
  122. end
  123.