how to press Enter - catch the Enter but not to Fall line ?
for example, i have this:
private void txtPlace_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
// do somthing
}
}
and i don't want to Fall line
i work on Windows-Mobile - C#
thanks in advance