I'm trying to send a '%'
sign to my textbox through the SendKeys.Send()
method.
I already know that you should enclose the '%'
by braces.
This command should be correct :
SendKeys.Send("{%}");
But I get a '5'
instead of a '%'
in my textbox.
I tried this on VS.Net 2010/2012 and 2015, all with the same result.
PS : My regional settings/keyboard are 'NL-be' in case this matters.