home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / CAPSLOCK / MAIN.dfm / MAIN.txt
Text File  |  1998-05-14  |  3KB  |  133 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 109
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'CapsLock and Other Keyboard Toggles'
  7.   ClientHeight = 135
  8.   ClientWidth = 436
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -16
  13.   Font.Name = 'System'
  14.   Font.Style = []
  15.   KeyPreview = True
  16.   OldCreateOrder = True
  17.   OnActivate = FormActivate
  18.   OnKeyDown = FormKeyDown
  19.   PixelsPerInch = 120
  20.   TextHeight = 20
  21.   object Label1: TLabel
  22.     Left = 20
  23.     Top = 20
  24.     Width = 221
  25.     Height = 61
  26.     AutoSize = False
  27.     Caption = 'Press the CapsLock, NumLock, ScrollLock, and Ins keys.'
  28.     WordWrap = True
  29.   end
  30.   object Bevel1: TBevel
  31.     Left = 10
  32.     Top = 10
  33.     Width = 251
  34.     Height = 81
  35.   end
  36.   object StatusPanel: TPanel
  37.     Left = 0
  38.     Top = 104
  39.     Width = 436
  40.     Height = 31
  41.     Align = alBottom
  42.     BevelInner = bvLowered
  43.     Font.Charset = DEFAULT_CHARSET
  44.     Font.Color = clBlack
  45.     Font.Height = -15
  46.     Font.Name = 'MS Sans Serif'
  47.     Font.Style = []
  48.     ParentFont = False
  49.     TabOrder = 0
  50.     object CapsLockPanel: TPanel
  51.       Left = 2
  52.       Top = 2
  53.       Width = 48
  54.       Height = 27
  55.       Align = alLeft
  56.       BevelInner = bvLowered
  57.       BevelOuter = bvNone
  58.       Enabled = False
  59.       TabOrder = 0
  60.       object CapsLockLabel: TLabel
  61.         Left = 11
  62.         Top = 5
  63.         Width = 32
  64.         Height = 16
  65.         Alignment = taCenter
  66.         Caption = 'Caps'
  67.       end
  68.     end
  69.     object NumLockPanel: TPanel
  70.       Left = 50
  71.       Top = 2
  72.       Width = 50
  73.       Height = 27
  74.       Align = alLeft
  75.       BevelInner = bvLowered
  76.       BevelOuter = bvNone
  77.       TabOrder = 1
  78.       object NumLockLabel: TLabel
  79.         Left = 10
  80.         Top = 5
  81.         Width = 28
  82.         Height = 16
  83.         Alignment = taCenter
  84.         Caption = 'Num'
  85.       end
  86.     end
  87.     object ScrollLockPanel: TPanel
  88.       Left = 100
  89.       Top = 2
  90.       Width = 50
  91.       Height = 27
  92.       Align = alLeft
  93.       BevelInner = bvLowered
  94.       BevelOuter = bvNone
  95.       TabOrder = 2
  96.       object ScrollLockLabel: TLabel
  97.         Left = 10
  98.         Top = 5
  99.         Width = 34
  100.         Height = 16
  101.         Alignment = taCenter
  102.         Caption = 'Scroll'
  103.       end
  104.     end
  105.     object InsPanel: TPanel
  106.       Left = 150
  107.       Top = 2
  108.       Width = 50
  109.       Height = 27
  110.       Align = alLeft
  111.       BevelInner = bvLowered
  112.       BevelOuter = bvNone
  113.       TabOrder = 3
  114.       object InsLabel: TLabel
  115.         Left = 10
  116.         Top = 5
  117.         Width = 17
  118.         Height = 16
  119.         Alignment = taCenter
  120.         Caption = 'Ins'
  121.       end
  122.     end
  123.   end
  124.   object BitBtn1: TBitBtn
  125.     Left = 300
  126.     Top = 30
  127.     Width = 111
  128.     Height = 51
  129.     TabOrder = 1
  130.     Kind = bkClose
  131.   end
  132. end
  133.