1
Answer

Help with keypress evetn handler

mark jones

mark jones

18y
2.2k
1

Am currently trying to create code that clears a text box after a message box is shown when a nonnumeric digit is entered.  The code am using doesnt clear the text field as shown below:

if(Char.IsDigit(e.KeyChar) == false)
   {
    txtStudID.Focus();
    txtStudID.Text = "";
               MessageBox.Show("Please enter a numeric value to continue");
              
    
   } 

Thanks for any help

Answers (1)