cancel
Showing results for 
Search instead for 
Did you mean: 

Global Send Key

PankajMehra
Level 2
Is it possible to know the state of keyboard with help of any VBOs because it can change the value of a message passed using Global Send Keys. For Example: "pankaj" as capslock on would be sent as "PANKAJ".
4 REPLIES 4

John__Carter
Staff
Staff
I would imagine it's possible via a code stage but there is no way to do it natively in BP.

Deep.Shah
Level 6
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

Thanks, John

Thanks, Deep