Example #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text.Length < 5)
            {
                MessageBox.Show("Enter your name having length greater than 5");
            }
            else if (textBox2.Text.Length < 11 && textBox2.Text.Length > 11)
            {
                MessageBox.Show("Enter your valid contact number");
            }
            else if (!textBox3.Text.Contains("@gmail.com"))
            {
                MessageBox.Show("Enter your valid Email Adress");
            }
            else if (textBox4.Text.Length < 13 && textBox4.Text.Length > 13)
            {
                MessageBox.Show("Enter your valid CNIC number");
            }
            else if (textBox6.Text != "Male" && textBox6.Text != "Female")
            {
                MessageBox.Show("Enter A valid Gender");
            }
            else if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox4.Text == "" || textBox5.Text == "" || textBox6.Text == "" || textBox7.Text == "" || textBox8.Text == "" || textBox9.Text == "")
            {
                MessageBox.Show("please fill All the feilds");
            }

            else
            {
                Volunteer v = new Volunteer();
                v.Username   = textBox1.Text;
                v.Contactno  = textBox2.Text;
                v.Email      = textBox3.Text;
                v.Cnic       = textBox4.Text;
                v.Age        = textBox5.Text;
                v.Gender     = textBox6.Text;
                v.Profession = textBox7.Text;
                v.Address    = textBox8.Text;
                v.Skill      = textBox9.Text;
                v.Join       = richTextBox1.Text;

                textBox1.Text     = "";
                textBox2.Text     = "";
                textBox3.Text     = "";
                textBox4.Text     = "";
                textBox5.Text     = "";
                textBox6.Text     = "";
                textBox7.Text     = "";
                textBox8.Text     = "";
                textBox9.Text     = "";
                richTextBox1.Text = "";

                Random random = new Random();
                int    a      = random.Next(100, 1000000);
                v.Id = a;
                Dataclass.ADDvolunteer(v);


                MessageBox.Show("Thankyou for registration!");
            }
        }
Example #2
0
 public static void ADDvolunteer(Volunteer v)
 {
     Dataclass.Vol.Add(v);
 }