How to trap space key in Rich Textbox?
Thank you.
Printable View
How to trap space key in Rich Textbox?
Thank you.
Handle the KeyDown event and check for space key:Quote:
Originally Posted by dorjoo
LaitinenCode:if (e.KeyCode == Keys.Space)
{
//spacebar is hit
}