home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kompon / d2345 / BEEP004.ZIP / Main.dfm / Main.txt
Text File  |  2001-05-27  |  3KB  |  173 lines

  1. object frmMain: TfrmMain
  2.   Left = 239
  3.   Top = 207
  4.   Width = 512
  5.   Height = 174
  6.   Caption = 'Beeper Demo'
  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.   KeyPreview = True
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnKeyDown = FormKeyDown
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 216
  21.     Top = 84
  22.     Width = 25
  23.     Height = 13
  24.     Caption = 'Tone'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 350
  28.     Top = 76
  29.     Width = 51
  30.     Height = 13
  31.     Caption = 'MSeconds'
  32.   end
  33.   object Label3: TLabel
  34.     Left = 184
  35.     Top = 113
  36.     Width = 44
  37.     Height = 13
  38.     Caption = 'FileName'
  39.   end
  40.   object Label4: TLabel
  41.     Left = 328
  42.     Top = 113
  43.     Width = 25
  44.     Height = 13
  45.     Caption = 'Song'
  46.   end
  47.   object btn_PlayDefaultSound: TButton
  48.     Left = 8
  49.     Top = 8
  50.     Width = 161
  51.     Height = 25
  52.     Caption = 'btn_PlayDefaultSound'
  53.     TabOrder = 0
  54.     OnClick = btn_PlayDefaultSoundClick
  55.   end
  56.   object btn_PlayPresetSound: TButton
  57.     Left = 8
  58.     Top = 40
  59.     Width = 161
  60.     Height = 25
  61.     Caption = 'btn_PlayPresetSound'
  62.     TabOrder = 1
  63.     OnClick = btn_PlayPresetSoundClick
  64.   end
  65.   object cboPresetSounds: TComboBox
  66.     Left = 184
  67.     Top = 40
  68.     Width = 137
  69.     Height = 21
  70.     ItemHeight = 13
  71.     TabOrder = 2
  72.     Items.Strings = (
  73.       'psOK'
  74.       'psError'
  75.       'psWelcome'
  76.       'psEmergency'
  77.       'psWrong'
  78.       'psCall'
  79.       'psOfficial'
  80.       'psDaze'
  81.       'psFall'
  82.       'psChord'
  83.       'psWhisle'
  84.       'psHanging'
  85.       'psClimb')
  86.   end
  87.   object btn_BeepFor: TButton
  88.     Left = 8
  89.     Top = 72
  90.     Width = 161
  91.     Height = 25
  92.     Caption = 'btn_BeepFor'
  93.     TabOrder = 3
  94.     OnClick = btn_BeepForClick
  95.   end
  96.   object spTone: TUpDown
  97.     Left = 305
  98.     Top = 76
  99.     Width = 15
  100.     Height = 21
  101.     Associate = edtTone
  102.     Min = 40
  103.     Max = 5000
  104.     Increment = 10
  105.     Position = 440
  106.     TabOrder = 4
  107.     Wrap = False
  108.   end
  109.   object edtTone: TEdit
  110.     Left = 248
  111.     Top = 76
  112.     Width = 57
  113.     Height = 21
  114.     TabOrder = 5
  115.     Text = '440'
  116.   end
  117.   object edtMSecs: TEdit
  118.     Left = 406
  119.     Top = 76
  120.     Width = 57
  121.     Height = 21
  122.     TabOrder = 6
  123.     Text = '300'
  124.   end
  125.   object spMSecs: TUpDown
  126.     Left = 463
  127.     Top = 76
  128.     Width = 15
  129.     Height = 21
  130.     Associate = edtMSecs
  131.     Min = 50
  132.     Max = 5000
  133.     Increment = 50
  134.     Position = 300
  135.     TabOrder = 7
  136.     Wrap = False
  137.   end
  138.   object btn_PlayTextFile: TButton
  139.     Left = 8
  140.     Top = 104
  141.     Width = 161
  142.     Height = 25
  143.     Caption = 'btn_PlayTextFile'
  144.     TabOrder = 8
  145.     OnClick = btn_PlayTextFileClick
  146.   end
  147.   object edtFileName: TEdit
  148.     Left = 240
  149.     Top = 105
  150.     Width = 81
  151.     Height = 21
  152.     TabOrder = 9
  153.     Text = 'Songs.txt'
  154.   end
  155.   object cboSongs: TComboBox
  156.     Left = 376
  157.     Top = 105
  158.     Width = 105
  159.     Height = 21
  160.     ItemHeight = 13
  161.     TabOrder = 10
  162.     Text = 'cboSongs'
  163.     Items.Strings = (
  164.       'Entertainer'
  165.       'Yesterday')
  166.   end
  167.   object Beeper: TbtBeeper
  168.     DefaultSound = psHanging
  169.     Left = 399
  170.     Top = 25
  171.   end
  172. end
  173.