Delete Event
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Please anyone. How can I trap the delete key and handle it in such a way that the text in the richtext box will not be deleted. thanks. Nana
In your form, override ProcessCmdKey method. Then, if(keyData == Keys.Delete) { return true; }
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Cops & Robbers Judah Himango
-
In your form, override ProcessCmdKey method. Then, if(keyData == Keys.Delete) { return true; }
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Cops & Robbers Judah Himango