Error Provider Control in Windows Application Form






4.31/5 (11 votes)
How to use error provider control in Windows Form application
Introduction
In this tip and trick, I am going to show you how to use error provider control in Windows Form application(C#).
Actually, the error provider alerts the user that something is wrong.
In this example, I will use a Display Warning icon, wrong icon (when an incorrect expression is entered 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 Start
- Create a new Windows Forms Application.
- Place two text boxes (for getting name and age) and three
ErrorProvider
controls from the toolbox.Set text boxes are named
txt_name
andtxt_age
. I have also created a button but there is no use for it (in the example). - Set the Icon for
errorProvider1
(warning),errorProvider2
(wrong or cross) anderrorProvider3
as a tick mark (for a correct entry). I will use the warningerrorprovider
when the user leaves a text box blank, use a cross or wrong when the user enters incorrect format (for the Age text box) and a tick icon for when all conditions are satisfied. - 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;
- 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. - 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, iftxt_name
is left empty, then it shows error. This is done using the "setError()
" method. ThesetError
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 thesetError()
method. - Build and run the code.
Preview
You can also download the source code of this example.
Hope you like it.
Thanks.