home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / DELPHIX.ZIP / Samples / Sound / HDRecorder / Main.dfm / Main.txt
Encoding:
Text File  |  1998-10-06  |  1.8 KB  |  97 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 114
  4.   BorderStyle = bsDialog
  5.   Caption = 'HD Recoder'
  6.   ClientHeight = 105
  7.   ClientWidth = 374
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -12
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 12
  19.   object SizeLabel: TLabel
  20.     Left = 96
  21.     Top = 88
  22.     Width = 32
  23.     Height = 12
  24.     Caption = '0 byte'
  25.   end
  26.   object StartButton: TButton
  27.     Left = 8
  28.     Top = 8
  29.     Width = 75
  30.     Height = 25
  31.     Caption = '&Start'
  32.     TabOrder = 0
  33.     OnClick = StartButtonClick
  34.   end
  35.   object StopButton: TButton
  36.     Left = 8
  37.     Top = 40
  38.     Width = 75
  39.     Height = 25
  40.     Caption = 'S&top'
  41.     Enabled = False
  42.     TabOrder = 1
  43.     OnClick = StopButtonClick
  44.   end
  45.   object FileNameEdit: TEdit
  46.     Left = 96
  47.     Top = 56
  48.     Width = 201
  49.     Height = 20
  50.     TabOrder = 2
  51.     Text = 'c:\test.wav'
  52.   end
  53.   object FormatBox: TComboBox
  54.     Left = 96
  55.     Top = 32
  56.     Width = 273
  57.     Height = 20
  58.     Style = csDropDownList
  59.     ItemHeight = 12
  60.     TabOrder = 3
  61.   end
  62.   object DriverBox: TComboBox
  63.     Left = 96
  64.     Top = 8
  65.     Width = 273
  66.     Height = 20
  67.     Style = csDropDownList
  68.     ItemHeight = 12
  69.     TabOrder = 4
  70.     OnChange = DriverBoxChange
  71.   end
  72.   object BrowseButton: TButton
  73.     Left = 304
  74.     Top = 56
  75.     Width = 65
  76.     Height = 25
  77.     Caption = 'Browse'
  78.     TabOrder = 5
  79.     OnClick = BrowseButtonClick
  80.   end
  81.   object CloseButton: TButton
  82.     Left = 8
  83.     Top = 72
  84.     Width = 75
  85.     Height = 25
  86.     Caption = '&Close'
  87.     TabOrder = 6
  88.     OnClick = CloseButtonClick
  89.   end
  90.   object SaveDialog: TSaveDialog
  91.     Filter = 'Wave (*.wav)|*.wav|All files (*.*)|*.*'
  92.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist]
  93.     Left = 144
  94.     Top = 48
  95.   end
  96. end
  97.