After Googling and reading some stuff I still can't figure this out.
I'm trying to send an uppercase A if CAPS LOCK is on and a lowercase a if it's off but it just sends lower case a's.
Any help will be appreciated![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
I'm trying to send an uppercase A if CAPS LOCK is on and a lowercase a if it's off but it just sends lower case a's.
VB.NET:
If Control.IsKeyLocked(Keys.CapsLock) Then
SendKeys.Send("A")
Else
SendKeys.Send("a")
End If
Any help will be appreciated
Last edited: