Click here to Skip to main content
15,893,588 members
Articles / Programming Languages / C#
Article

Dynamic Control Validation at Runtime using a Container Control

Rate me:
Please Sign up or sign in to vote.
2.23/5 (10 votes)
25 Mar 20052 min read 64.3K   335   11   6
Dynamic control validation (TextBox, ComboBox) at runtime using a container control.

Introduction

Child controls (textbox, combo etc.) in a .NET container controls (like a Form), can be accessed and their properties set at runtime dynamically by accessing the control array.

Using the Code

The following example deals with runtime validation (which checks for compulsory data input) of Windows Forms controls like TextBox, RichTextBox and ComboBox but can be expanded to handle validation and appearance of all types of Windows Forms controls.

To implement this example, you must create a database table which would hold the configuration for all the controls in the forms. You can also use an XML file instead of a database table.

I have attached the SQL to create the MS SQL 2000 database as well as the database backup. You have to create and configure the database at your end. After you restore the database, you will see that the table 'Ctlvalidation' has the form name, the control name, message and compulsory flag fields.

ID FormCtlName MsgCompulsory
1Form1textBox1Name0
2Form1comboBox1Age1
3Form1richTextBox1Comments0

Our application will read this table and depending upon the flag set in the Compulsory field, will make the control compulsory or non compulsory.

In our application, we create the CompulsoryLogic class, which we can then call from any form in the application. In this class, we first create a database connection and fill the DataSet ds.

C#
string source = "server=CHAYAN;uid=mine;pwd=mine;database=CtlValidation";
string select = 
   "Select CtlName,Msg from CtlValidation where Compulsory>0 and Form ='"+
   frm.Name.ToString()+"'";
SqlConnection conn = new SqlConnection(source);
SqlDataAdapter da = new SqlDataAdapter(select,conn);
DataSet ds = new DataSet();
da.Fill(ds,"CtlValidation");

Then we loop through each DataRow in the DataSet and for each control in the form, check the validation for the required control (textbox, rich textbox or combo).

C#
foreach(DataRow dr in ds.Tables[0].Rows)
{
  foreach (Control c in frm.Controls)
  {
    if (c.Name == dr[0].ToString())
    { 
      //check to see if the control is of type textbox or a richtextbox
      if (c.GetType().ToString().EndsWith("TextBox"))
      {
        //check to see if the box is empty
        if (c.Text =="")
        {
          MessageBox.Show(dr[1].ToString()+" is a compulsory field",
               "Compulsory Field",0);
          c.BackColor = Color.AliceBlue;
          c.Focus();
        }
      }
    //check to see if the control is of type combo
    // More code here
  }
}

Once this is done, we can call the CompulsoryLogic class from any form where a control validation is required.

C#
private void button1_Click(object sender, EventArgs e)
{

  CompulsoryLogic.ValidateCtl(this);

}

A very similar concept can be used in providing menu based security to user groups in a desktop application but we will discuss that in a separate article.

Prerequisites

  1. MS SQL 2000
  2. VS.NET 2003 (C#)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Chayan Ray has been working as a Technical Consultant in a CMM level 5 company in India. His technical domain includes ASP.NET, C#, PHP, Perl, Cold Fusion, MySQL and MSSQL 2000.

Comments and Discussions

 
QuestionDynamic Control Validation at Runtime using a Tab Container Control Pin
Member 47405205-Jan-14 3:04
professionalMember 47405205-Jan-14 3:04 
GeneralMy vote of 4 Pin
family52113-Feb-12 17:50
family52113-Feb-12 17:50 
QuestionWill it work for web application? Pin
Ganesan Sankaran14-Aug-07 3:43
Ganesan Sankaran14-Aug-07 3:43 
QuestionAttachments? Pin
Pablo123431-Oct-05 17:34
Pablo123431-Oct-05 17:34 
AnswerRe: Attachments? Pin
Chayan7-Nov-05 7:04
Chayan7-Nov-05 7:04 
GeneralDon't need reflection for that. Pin
DanielJC25-Mar-05 23:40
DanielJC25-Mar-05 23:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.