1
Answer

Excel with C#

kumar yoga

kumar yoga

9y
302
1
how to find the  value and higlight  the value   in excel using    c#.net  
Answers (1)
0
Jan Montano

Jan Montano

NA 2.6k 0 16y
Use the keyup event so that it would take effect immediately

private void textBox1_KeyUp(object sender, KeyEventArgs e)
        {
            MessageBox.Show(textBox1.Text);
        }