Error Provider in a C# Windows Forms Application

This article explains how to use an error provider control in a Windows Forms Application.

The ErrorProvider alerts the user that something is wrong.

In this example I will use a Display Warning icon, Wrong icon (when an incorrect expression is entereded) or a Tick icon depending upon the data entered in the text box so that the user can determine that data entered is correct or incorrect.

Let's Begin as in the following:

1. Create a new Windows Forms Application.
2. Place two text boxes (for getting name and age) and three ErrorProvider controls from the toolbox.

image1.jpg

Set text boxes are named txt_name and txt_age. I have also created a button but there is no use for it (in the example).

image3.jpg

3. Set the Icon for errorprovider1 (warning), errorprovider2 (wrong or cross) and errorprovider3 as a tick mark (for a correct entry). I will use the warning errorprovider when the user leaves a text box blank, use a cross or wrong when the user enters incorrect informat (for the Age text box) and a tick icon for when all conditions are satisfied.
4.In addition to defaults imports, I am adding Regular Expression library support for the txt_age text box as in the following:

using System.Text.RegularExpressions;

5. Now we need to create validating events for both text boxes. Right-click on the TextBox then click on "Properties".then click on the lightening bolt (Events) icon at the top of the window, then double-click on validating event.

6. Enter these codes  between the generated codes.

void Txt_nameValidating(object sender, System.ComponentModel.CancelEventArgs e)
{
if(txt_name.Text==string.Empty)
{
errorProvider1.SetError(txt_name,"Please Enter Name");
errorProvider2.SetError(txt_name,"");
errorProvider3.SetError(txt_name,"");
}
else
{
errorProvider1.SetError(txt_name,"");
errorProvider2.SetError(txt_name,"");
errorProvider3.SetError(txt_name,"Correct");
}
}
void Txt_ageValidating(object sender, System.ComponentModel.CancelEventArgs e)
{
if(txt_age.Text==string.Empty)
{
errorProvider1.SetError(txt_age,"Please provide age");
errorProvider2.SetError(txt_age,"");
errorProvider3.SetError(txt_age,"");
}
else
{
Regex numberchk=new Regex(@"^([0-9]*|\d*)$");
if(numberchk.IsMatch(txt_age.Text))
{
errorProvider1.SetError(txt_age,"");
errorProvider2.SetError(txt_age,"");
errorProvider3.SetError(txt_age,"Correct");
}
else
{
errorProvider1.SetError(txt_age,"");
errorProvider2.SetError(txt_age,"Wrong format");
errorProvider3.SetError(txt_age,"");
}
}
}

In the "txt_nameValidating()" event, if txt_name is left empty then it shows error. This is done using the "setError()" method. The setError method sets the error description string for the specified control. If the user hovers the mouse over the error icon then it shows an error description string that we have declared in the setError() method.

7. Build and run the code.

Preview:
output_uyUTpf.gif
You can also download the source code of this example.
Hope you like it.
Thanks.