Esempio n. 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            VC_AddForm AUF = new VC_AddForm("Utilities", textBox2.Text);

            string[] Atts = { "Supplier", "Type", "Units", "Price" };
            AUF.SetDesign(Atts, 1);
            AUF.Show();
        }
Esempio n. 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            VC_AddForm AKF = new VC_AddForm("Kids", textBox2.Text);

            string[] Atts = { "Name", "Birthdate", "Gender", "Address", "Parent_Email", "Phone_Number", "ClassNo" };
            AKF.SetDesign(Atts, 1);
            AKF.Show();
        }
Esempio n. 3
0
        private void button1_Click(object sender, EventArgs e)
        {
            VC_AddForm AEF = new VC_AddForm("Eventss", textBox2.Text);

            string[] Atts = { "Type", "Place", "Date", "Time", "Price" };
            AEF.SetDesign(Atts, 1);
            AEF.Show();
        }
Esempio n. 4
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (textBox2.Text != "")
     {
         VC_AddForm AKF  = new VC_AddForm("Kids", textBox2.Text);
         string[]   Atts = { "Name", "Birthdate", "Gender", "Address", "Parent_Email", "Phone_Number", "ClassNo" };
         AKF.SetDesign(Atts, 0);
         AKF.Show();
     }
     else
     {
         MessageBox.Show("Enter ID");
     }
 }
Esempio n. 5
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (textBox2.Text != "")
     {
         VC_AddForm AEF  = new VC_AddForm("Eventss", textBox2.Text);
         string[]   Atts = { "Type", "Place", "Date", "Time", "Price" };
         AEF.SetDesign(Atts, 0);
         AEF.Show();
     }
     else
     {
         MessageBox.Show("Enter ID");
     }
 }