home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / WPM.DFM / WPM.txt
Text File  |  1997-01-16  |  2KB  |  88 lines

  1. object Form1: TForm1
  2.   Left = 206
  3.   Top = 111
  4.   ActiveControl = RichEdit1
  5.   BorderIcons = [biSystemMenu, biMinimize]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Words Per Minute'
  8.   ClientHeight = 344
  9.   ClientWidth = 476
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 16
  18.     Top = 280
  19.     Width = 248
  20.     Height = 24
  21.     Caption = 'Start typing to begin test'
  22.     Font.Color = clBlack
  23.     Font.Height = -21
  24.     Font.Name = 'Arial'
  25.     Font.Style = [fsBold]
  26.     ParentFont = False
  27.   end
  28.   object Label2: TLabel
  29.     Left = 16
  30.     Top = 16
  31.     Width = 129
  32.     Height = 24
  33.     Font.Color = clBlack
  34.     Font.Height = -21
  35.     Font.Name = 'Arial'
  36.     Font.Style = [fsBold]
  37.     ParentFont = False
  38.   end
  39.   object RichEdit1: TRichEdit
  40.     Left = 16
  41.     Top = 56
  42.     Width = 441
  43.     Height = 209
  44.     Font.Color = clBlack
  45.     Font.Height = -16
  46.     Font.Name = 'Arial'
  47.     Font.Style = []
  48.     ParentFont = False
  49.     ScrollBars = ssVertical
  50.     TabOrder = 0
  51.     OnKeyDown = StartTimer
  52.   end
  53.   object ProgressBar1: TProgressBar
  54.     Left = 16
  55.     Top = 312
  56.     Width = 441
  57.     Height = 13
  58.     Min = 0
  59.     Max = 60
  60.     Step = 1
  61.     TabOrder = 3
  62.   end
  63.   object Button1: TButton
  64.     Left = 304
  65.     Top = 16
  66.     Width = 75
  67.     Height = 25
  68.     Caption = '&Reset'
  69.     TabOrder = 1
  70.     OnClick = Button1Click
  71.   end
  72.   object Button2: TButton
  73.     Left = 384
  74.     Top = 16
  75.     Width = 75
  76.     Height = 25
  77.     Caption = '&Exit'
  78.     TabOrder = 2
  79.     OnClick = Button2Click
  80.   end
  81.   object Timer1: TTimer
  82.     Enabled = False
  83.     OnTimer = IncrementBar
  84.     Left = 272
  85.     Top = 16
  86.   end
  87. end
  88.