home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Multimedia / waveflow / waveflow.exe / 0 / RCDATA / TRESAMPLEFRM / TRESAMPLEFRM.txt < prev   
Text File  |  2005-05-01  |  4KB  |  203 lines

  1. object Resamplefrm: TResamplefrm
  2.   Left = 111
  3.   Top = 111
  4.   BorderStyle = bsDialog
  5.   Caption = 'Resample Wave'
  6.   ClientHeight = 259
  7.   ClientWidth = 384
  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.   Icon.Data = {<image000.ico>}
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Image1: TImage
  21.     Left = 0
  22.     Top = 0
  23.     Width = 392
  24.     Height = 27
  25.     Stretch = True
  26.   end
  27.   object Image3: TImage
  28.     Left = 269
  29.     Top = 0
  30.     Width = 115
  31.     Height = 259
  32.     Align = alRight
  33.     AutoSize = True
  34.     Picture.Data = {<image001.bmp>}
  35.     Transparent = True
  36.   end
  37.   object Label1: TLabel
  38.     Left = 9
  39.     Top = 46
  40.     Width = 65
  41.     Height = 24
  42.     Caption = 'Actual:'
  43.     Font.Charset = DEFAULT_CHARSET
  44.     Font.Color = clNavy
  45.     Font.Height = -19
  46.     Font.Name = 'MS Sans Serif'
  47.     Font.Style = [fsBold]
  48.     ParentFont = False
  49.   end
  50.   object Label2: TLabel
  51.     Left = 204
  52.     Top = 47
  53.     Width = 53
  54.     Height = 24
  55.     Caption = 'Final:'
  56.     Font.Charset = DEFAULT_CHARSET
  57.     Font.Color = clNavy
  58.     Font.Height = -19
  59.     Font.Name = 'MS Sans Serif'
  60.     Font.Style = [fsBold]
  61.     ParentFont = False
  62.   end
  63.   object Label3: TLabel
  64.     Left = 9
  65.     Top = 75
  66.     Width = 74
  67.     Height = 13
  68.     Caption = 'Bits per sample:'
  69.   end
  70.   object Label4: TLabel
  71.     Left = 9
  72.     Top = 122
  73.     Width = 88
  74.     Height = 13
  75.     Caption = 'Sample frequency:'
  76.   end
  77.   object Label5: TLabel
  78.     Left = 9
  79.     Top = 171
  80.     Width = 98
  81.     Height = 13
  82.     Caption = 'Number of channels:'
  83.   end
  84.   object Label6: TLabel
  85.     Left = 204
  86.     Top = 76
  87.     Width = 74
  88.     Height = 13
  89.     Caption = '&Bits per sample:'
  90.     FocusControl = ComboBox1
  91.   end
  92.   object Label7: TLabel
  93.     Left = 204
  94.     Top = 123
  95.     Width = 88
  96.     Height = 13
  97.     Caption = '&Sample frequency:'
  98.     FocusControl = ComboBox2
  99.   end
  100.   object Label8: TLabel
  101.     Left = 204
  102.     Top = 172
  103.     Width = 98
  104.     Height = 13
  105.     Caption = '&Number of channels:'
  106.     FocusControl = ComboBox3
  107.   end
  108.   object Image2: TImage
  109.     Left = 8
  110.     Top = 16
  111.     Width = 32
  112.     Height = 32
  113.     AutoSize = True
  114.     Picture.Data = {<image002.bmp>}
  115.     Transparent = True
  116.   end
  117.   object Panel1: TPanel
  118.     Left = 9
  119.     Top = 91
  120.     Width = 177
  121.     Height = 25
  122.     BevelInner = bvLowered
  123.     Caption = 'Panel1'
  124.     TabOrder = 0
  125.   end
  126.   object Panel2: TPanel
  127.     Left = 9
  128.     Top = 138
  129.     Width = 177
  130.     Height = 25
  131.     BevelInner = bvLowered
  132.     Caption = 'Panel1'
  133.     TabOrder = 1
  134.   end
  135.   object Panel3: TPanel
  136.     Left = 9
  137.     Top = 187
  138.     Width = 177
  139.     Height = 25
  140.     BevelInner = bvLowered
  141.     Caption = 'Panel1'
  142.     TabOrder = 2
  143.   end
  144.   object ComboBox1: TComboBox
  145.     Left = 204
  146.     Top = 92
  147.     Width = 169
  148.     Height = 21
  149.     ItemHeight = 13
  150.     TabOrder = 3
  151.     OnChange = ComboBox1Change
  152.     Items.Strings = (
  153.       '8'
  154.       '16')
  155.   end
  156.   object ComboBox2: TComboBox
  157.     Left = 204
  158.     Top = 139
  159.     Width = 169
  160.     Height = 21
  161.     ItemHeight = 13
  162.     TabOrder = 4
  163.     OnChange = ComboBox2Change
  164.     Items.Strings = (
  165.       '11025'
  166.       '22050'
  167.       '44100'
  168.       'Other')
  169.   end
  170.   object ComboBox3: TComboBox
  171.     Left = 204
  172.     Top = 188
  173.     Width = 169
  174.     Height = 21
  175.     ItemHeight = 13
  176.     TabOrder = 5
  177.     OnChange = ComboBox3Change
  178.     Items.Strings = (
  179.       'Mono'
  180.       'Stereo')
  181.   end
  182.   object Button1: TButton
  183.     Left = 117
  184.     Top = 224
  185.     Width = 75
  186.     Height = 25
  187.     Caption = '&OK'
  188.     Default = True
  189.     TabOrder = 6
  190.     OnClick = Button1Click
  191.   end
  192.   object Button2: TButton
  193.     Left = 192
  194.     Top = 224
  195.     Width = 75
  196.     Height = 25
  197.     Cancel = True
  198.     Caption = '&Cancel'
  199.     TabOrder = 7
  200.     OnClick = Button2Click
  201.   end
  202. end
  203.