home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / Delphi / plugins / frmMain.dfm next >
Encoding:
Text File  |  2005-09-07  |  1.4 KB  |  71 lines

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 114
  4.   Width = 273
  5.   Height = 259
  6.   Caption = 'BASS plugin test'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 176
  21.     Width = 249
  22.     Height = 17
  23.     Alignment = taCenter
  24.     AutoSize = False
  25.   end
  26.   object GroupBox1: TGroupBox
  27.     Left = 8
  28.     Top = 8
  29.     Width = 249
  30.     Height = 129
  31.     Caption = 'Loaded plugins'
  32.     TabOrder = 0
  33.     object ListBox1: TListBox
  34.       Left = 8
  35.       Top = 16
  36.       Width = 233
  37.       Height = 105
  38.       ItemHeight = 13
  39.       TabOrder = 0
  40.     end
  41.   end
  42.   object Button1: TButton
  43.     Left = 8
  44.     Top = 144
  45.     Width = 249
  46.     Height = 25
  47.     Caption = 'Click here to open a file...'
  48.     TabOrder = 1
  49.     OnClick = Button1Click
  50.   end
  51.   object TrackBar1: TTrackBar
  52.     Left = 8
  53.     Top = 200
  54.     Width = 249
  55.     Height = 17
  56.     TabOrder = 2
  57.     ThumbLength = 10
  58.     TickMarks = tmBoth
  59.     TickStyle = tsNone
  60.     OnChange = TrackBar1Change
  61.   end
  62.   object Timer1: TTimer
  63.     Interval = 500
  64.     OnTimer = Timer1Timer
  65.   end
  66.   object OpenDialog1: TOpenDialog
  67.     Filter = 'All files|*.*'
  68.     Left = 32
  69.   end
  70. end
  71.