> ...there is no difference between Capital U key entry and small letter u...
This is normal at this "low level". Lowercase and uppercase are determined via other keys states. Does CapsLock is on or does SHIFT is down while hitting the letter key, etc.
You can do something similar to this
STATIC ShiftDown AS LONG
IF SHIFT + WM-KEYDOWN THEN ShiftDown = %TRUE
IF SHIFT + WM-KEYUP THEN ShiftDown = %FALSE
IF ShiftDown THEN TypedLetter = "U" ELSE TypedLetter = "u" 'Upppercase/lowercase
IF CapsLock = %TRUE THEN... etc,
This is normal at this "low level". Lowercase and uppercase are determined via other keys states. Does CapsLock is on or does SHIFT is down while hitting the letter key, etc.
You can do something similar to this
STATIC ShiftDown AS LONG
IF SHIFT + WM-KEYDOWN THEN ShiftDown = %TRUE
IF SHIFT + WM-KEYUP THEN ShiftDown = %FALSE
IF ShiftDown THEN TypedLetter = "U" ELSE TypedLetter = "u" 'Upppercase/lowercase
IF CapsLock = %TRUE THEN... etc,
Comment