i am using vb.net to edit a gridview value and when shift is pressed i want to edit multiple cellvalues that belong to a group in the same time, now my problem is when shift is pressed and i click a number key it will give me a symbole
for example
SHIFT+1 = !
SHIFT+2 = @
and so on
However i want it to be
SHIFT+1 = 1
SHIFT+2 = 2
and so on
is there a built in functionality to do this?
if not, then i think i need to write a function to do this which functions as when shift+1 is pressed then keyboard inpt is 1 and not !
any ideas on how achive such behavior in vb.net?
and don’t tell me to use ctrl because i am using it for another thing already and it won’t type when using ctrl 😀
You can use a naive routine such as this. If you need comma etc, modify as needed: