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(); }
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(); }
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(); }
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"); } }
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"); } }