VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Makes a keyboard animation with the number , caps and scroll lock lights.

Rixix  (1 Submission)   Miscellaneous   VB 6.0   Unknown Difficulty   Fri 7th February 2003   Mon 8th February 2021

Makes a keyboard animation with the number , caps and scroll lock lights.

API Declarations


Const VK_NUMLOCK = &H90
Const VK_SCROLL = &H91
Const VK_USED = VK_SCROLL
Private Type KeyboardBytes
kbByte(0 To 255) As Byte
End Type
Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Long
Private Declare Function GetKeyboardState Lib "user32" (kbArray As KeyboardBytes) As Long
Private Declare Function SetKeyboardState Lib "user32" (kbArray As KeyboardBytes) As Long
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Dim kbArray As KeyboardBytes, CapsLock As Boolean, kbOld As KeyboardBytes

Rate Makes a keyboard animation with the number , caps and scroll lock lights. (1(1 Vote))
Makes a keyboard animation with the number , caps and scroll lock lights..bas

Makes a keyboard animation with the number , caps and scroll lock lights. Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters