home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / ModBass / Delphi / StreamTest / STMain.dfm / STMain.txt
Encoding:
Text File  |  2000-02-19  |  3.1 KB  |  161 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'BASS - Stream Demo'
  7.   ClientHeight = 272
  8.   ClientWidth = 297
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Button1: TButton
  20.     Left = 8
  21.     Top = 8
  22.     Width = 281
  23.     Height = 25
  24.     Caption = '1.) Initialize BASS'
  25.     Enabled = False
  26.     TabOrder = 0
  27.     OnClick = Button1Click
  28.   end
  29.   object Button2: TButton
  30.     Left = 8
  31.     Top = 40
  32.     Width = 281
  33.     Height = 25
  34.     Caption = '2.) Create a user stream'
  35.     Enabled = False
  36.     TabOrder = 1
  37.     OnClick = Button2Click
  38.   end
  39.   object Button3: TButton
  40.     Left = 8
  41.     Top = 72
  42.     Width = 281
  43.     Height = 25
  44.     Caption = '3.) Start stream playback'
  45.     Enabled = False
  46.     TabOrder = 2
  47.     OnClick = Button3Click
  48.   end
  49.   object GroupBox1: TGroupBox
  50.     Left = 8
  51.     Top = 104
  52.     Width = 281
  53.     Height = 129
  54.     Caption = '4.) Sine sound settings'
  55.     Enabled = False
  56.     TabOrder = 3
  57.     object Label1: TLabel
  58.       Left = 8
  59.       Top = 16
  60.       Width = 50
  61.       Height = 13
  62.       Caption = 'Frequency'
  63.     end
  64.     object Label2: TLabel
  65.       Left = 8
  66.       Top = 72
  67.       Width = 46
  68.       Height = 13
  69.       Caption = 'Amplitude'
  70.     end
  71.     object Label3: TLabel
  72.       Left = 8
  73.       Top = 52
  74.       Width = 81
  75.       Height = 13
  76.       AutoSize = False
  77.       Caption = '1Hz'
  78.     end
  79.     object Label4: TLabel
  80.       Left = 200
  81.       Top = 52
  82.       Width = 72
  83.       Height = 13
  84.       Alignment = taRightJustify
  85.       AutoSize = False
  86.       Caption = '5kHz'
  87.     end
  88.     object Label5: TLabel
  89.       Left = 8
  90.       Top = 108
  91.       Width = 89
  92.       Height = 13
  93.       AutoSize = False
  94.       Caption = '0%'
  95.     end
  96.     object Label6: TLabel
  97.       Left = 176
  98.       Top = 108
  99.       Width = 96
  100.       Height = 13
  101.       Alignment = taRightJustify
  102.       AutoSize = False
  103.       Caption = '100%'
  104.     end
  105.     object Label7: TLabel
  106.       Left = 88
  107.       Top = 52
  108.       Width = 113
  109.       Height = 13
  110.       Alignment = taCenter
  111.       AutoSize = False
  112.       Caption = '100Hz'
  113.     end
  114.     object Label8: TLabel
  115.       Left = 88
  116.       Top = 108
  117.       Width = 113
  118.       Height = 13
  119.       Alignment = taCenter
  120.       AutoSize = False
  121.       Caption = '50%'
  122.     end
  123.     object ScrollBar1: TScrollBar
  124.       Left = 8
  125.       Top = 32
  126.       Width = 265
  127.       Height = 16
  128.       LargeChange = 100
  129.       Max = 5000
  130.       Min = 1
  131.       Position = 100
  132.       SmallChange = 10
  133.       TabOrder = 0
  134.       TabStop = False
  135.       OnChange = ScrollBar1Change
  136.     end
  137.     object ScrollBar2: TScrollBar
  138.       Left = 8
  139.       Top = 88
  140.       Width = 265
  141.       Height = 16
  142.       LargeChange = 1024
  143.       Max = 32767
  144.       Position = 16864
  145.       SmallChange = 256
  146.       TabOrder = 1
  147.       TabStop = False
  148.       OnChange = ScrollBar2Change
  149.     end
  150.   end
  151.   object Button4: TButton
  152.     Left = 8
  153.     Top = 240
  154.     Width = 281
  155.     Height = 25
  156.     Caption = 'Shutdown BASS and exit'
  157.     TabOrder = 4
  158.     OnClick = Button4Click
  159.   end
  160. end
  161.