Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub CapsOn()
ReDim KeyboardBuffer(256) As Byte
'Array to check capslock
GetKeyboardState KeyboardBuffer(0)
If KeyboardBuffer(VK_CAPITAL) And 1 Then
'CapsLock on ...
Debug.Print "Caps On"
End If
End Sub
Option Compare Database
Option Explicit
Private Declare Sub GetKeyboardState Lib "user32" (lpKeyState As Any)
Const VK_CAPITAL = &H14
Function CapsOn()
ReDim KeyboardBuffer(256) As Byte
'Array to check capslock
GetKeyboardState KeyboardBuffer(0)
If KeyboardBuffer(VK_CAPITAL) And 1 Then
'CapsLock on ...
CapsOn = True
Else
CapsOn = False
End If
End Function