Not sure if there are any direct ways of determining the status of CapsLock Key. But I suppose, an action using Code Stage to determine if CapsLock Status could be constructed as follows:-
if My.Computer.Keyboard.CapsLock Then
CapsLockStatus = True
Else
CapsLockStatus = False
End If
Regards,
Deep Shah