Reputation: 62424
i have this method:
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '1')
{
how to take focus on Form1 after i insert any text on TextBox
thank's in advance
Upvotes: 0
Views: 563