home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.MDIForm frmkeystats
- BackColor = &H8000000F&
- Caption = "MDIForm1"
- ClientHeight = 6030
- ClientLeft = 1095
- ClientTop = 1515
- ClientWidth = 6720
- Height = 6435
- Left = 1035
- LinkTopic = "MDIForm1"
- Top = 1170
- Width = 6840
- Begin VB.PictureBox Picture1
- Align = 2 'Align Bottom
- Height = 510
- Left = 0
- ScaleHeight = 480
- ScaleWidth = 6690
- TabIndex = 0
- Top = 5520
- Width = 6720
- Begin VB.Timer Timer1
- Interval = 1000
- Left = 0
- Top = 0
- End
- Begin Threed.SSPanel pnlcaps
- Height = 315
- Left = 3960
- TabIndex = 8
- Top = 60
- Width = 555
- _version = 65536
- _extentx = 979
- _extenty = 556
- _stockprops = 15
- forecolor = -2147483630
- backcolor = 12632256
- bevelwidth = 2
- borderwidth = 2
- bevelouter = 1
- End
- Begin Threed.SSPanel pnlnum
- Height = 315
- Left = 4620
- TabIndex = 7
- Top = 60
- Width = 615
- _version = 65536
- _extentx = 1085
- _extenty = 556
- _stockprops = 15
- forecolor = -2147483630
- backcolor = 12632256
- bevelwidth = 2
- borderwidth = 2
- bevelouter = 1
- End
- Begin Threed.SSPanel pnlscrl
- Height = 315
- Left = 5340
- TabIndex = 6
- Top = 60
- Width = 615
- _version = 65536
- _extentx = 1085
- _extenty = 556
- _stockprops = 15
- forecolor = -2147483630
- backcolor = 12632256
- bevelwidth = 2
- borderwidth = 2
- bevelouter = 1
- End
- Begin Threed.SSPanel pnlins
- Height = 315
- Left = 6060
- TabIndex = 5
- Top = 60
- Width = 555
- _version = 65536
- _extentx = 979
- _extenty = 556
- _stockprops = 15
- forecolor = -2147483630
- backcolor = 12632256
- bevelwidth = 2
- borderwidth = 2
- bevelouter = 1
- End
- Begin KeyStatLib.MhState keycaps
- Height = 420
- Left = 60
- TabIndex = 4
- Top = 0
- Visible = 0 'False
- Width = 420
- _version = 65536
- _extentx = 741
- _extenty = 741
- _stockprops = 65
- backcolor = -2147483633
- End
- Begin KeyStatLib.MhState keynum
- Height = 420
- Left = 720
- TabIndex = 3
- Top = 0
- Visible = 0 'False
- Width = 420
- _version = 65536
- _extentx = 741
- _extenty = 741
- _stockprops = 65
- backcolor = -2147483633
- value = -1 'True
- style = 1
- End
- Begin KeyStatLib.MhState keyinsert
- Height = 420
- Left = 2160
- TabIndex = 2
- Top = 0
- Visible = 0 'False
- Width = 420
- _version = 65536
- _extentx = 741
- _extenty = 741
- _stockprops = 65
- backcolor = -2147483633
- style = 2
- End
- Begin KeyStatLib.MhState keyscrl
- Height = 420
- Left = 1440
- TabIndex = 1
- Top = 0
- Visible = 0 'False
- Width = 420
- _version = 65536
- _extentx = 741
- _extenty = 741
- _stockprops = 65
- backcolor = -2147483633
- style = 3
- End
- End
- Attribute VB_Name = "frmkeystats"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Timer1_Timer()
- ' Caps Lock Key
- If keycaps.VALUE = True Then
- pnlcaps.Caption = "Cap"
- pnlcaps.Caption = ""
- End If
- ' Num Lock Key
- If keynum.VALUE = True Then
- pnlnum.Caption = "Num"
- pnlnum.Caption = ""
- End If
- ' Scroll lock
- If keyscrl.VALUE = True Then
- pnlscrl.Caption = "Scrl"
- pnlscrl.Caption = ""
- End If
- ' Inser Key
- If keyInsert.VALUE = True Then
- pnlins.Caption = "Ins"
- pnlins.Caption = "Ovr"
- End If
- End Sub
-