home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Windows Keys"
- ClientHeight = 1065
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 2865
- Icon = "Windows Keys.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1065
- ScaleWidth = 2865
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command1
- Caption = "Disable Keys"
- Height = 375
- Left = 600
- TabIndex = 0
- Top = 600
- Width = 1695
- End
- Begin VB.Label Label1
- Caption = "By Shane Fernandes, IOS Software!"
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 2775
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- On Error Resume Next
- If Command1.Caption = "Disable Keys" Then
- DisableKeys True
- Command1.Caption = "Enable Keys"
- ElseIf Command1.Caption = "Enable Keys" Then
- DisableKeys False
- Command1.Caption = "Disable Keys"
- End If
- End Sub
- Private Sub Form_Load()
- x = 2
- End Sub
-