' API Constants and Declarations Public Const VK_CONTROL = &H11 ' Control Key for Keyboard Event
Public Const VK_C = &H43 ' C for Keyboard Event
Public Const KEYEVENTF_KEYUP = &H2 ' Keyboard constant for Keyboard Event
Public Declare Sub keybd_event Lib "user32" _
(ByVal bVk As Byte, _
ByVal bScan As Byte, _
ByVal dwFlags As Long, _
ByVal dwExtraInfo As Long)