i have a one problem for backspaces in c#.
i have written following code:
in keyup event for textbox(placed in 5th panel) i.e
if(e.keydata==k eys.back)
{
sendkeys.send=( :+{BS}");
e.handled=true
}
it will delete ONLY ONE char. when im pressing back space button but when im holding backspace button it will not delete the complete chars. just it will deldete one char for one pressing.But when iam pressing shift+backspace it is working.i was tried in keydown and keypress event also its not working.Could you pls help me
i have written following code:
in keyup event for textbox(placed in 5th panel) i.e
if(e.keydata==k eys.back)
{
sendkeys.send=( :+{BS}");
e.handled=true
}
it will delete ONLY ONE char. when im pressing back space button but when im holding backspace button it will not delete the complete chars. just it will deldete one char for one pressing.But when iam pressing shift+backspace it is working.i was tried in keydown and keypress event also its not working.Could you pls help me