tags:

views:

39

answers:

1
   private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == (char)Keys.Tab)
        {
            keybox4.Focus();
        }
    }

It not working but enter character its Working?

+1  A: 

You will need to have the MultiLine property set to true, and AcceptsTab also set to true.

Fredrik Mörk