





SetKeyboardRepeatInfo – Set values about keyboard auto-repeat feature
‘ set new values for keyboard speed and delay” DELAY is the timeout after which auto.repeat starts’ can range from 0 (250ms) to 3 (1 sec)’ SPEED is the speed
‘ set new values for keyboard speed and delay” DELAY is the timeout after which auto.repeat starts’ can range from 0 (250ms) to 3 (1 sec)’ SPEED is the speed
Private Declare Function SystemParametersInfo Lib “user32” Alias _ “SystemParametersInfoA” (ByVal uAction As Long, ByVal uParam As Long, _ ByRef lpvParam As Any, ByVal fuWinIni As Long) As LongConst SPI_GETKEYBOARDDELAY =
Private Declare Function GetAsyncKeyState Lib “user32″ (ByVal vKey As Long) As _ Integer’ Return True if all the specified keys are pressed” you can specify individual keys using VB constants,
Private Declare Sub CopyMemory Lib “kernel32” Alias “RtlMoveMemory” (dest As _ Any, source As Any, ByVal Bytes As Long)’ compress a block of memory (a string, an array, a bitmap)’
‘——————————————-‘ PerformanceTimer class module’——————————————-‘ Use this class to profile your code and any other operation’ typically with a precision greater than 1 millionth of a second” As soon as you