private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Tab)
{
keybox4.Focus();
}
}
It not working but enter character its Working?
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Tab)
{
keybox4.Focus();
}
}
It not working but enter character its Working?
You will need to have the MultiLine property set to true, and AcceptsTab also set to true.