Hi,I am developing windows application using c#.
i have placed the textbox in 6thpanel of my application.whe n im pressing backspace in keyboard it will delete only one char.
when im holding backspace also it was delete only one char.
I was written following code in keyup event
if (e.KeyData == Keys.Back)
{
SendKeys.Send(" +{BS}");
...
User Profile
Collapse
-
Backspace is not working in c#???
-
Backspace in not workinf for textbox in c#(WINDOWS APPLN)
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...
No activity results to display
Show More