private void button3_Click(object sender, EventArgs e) { this.Close(); AñadirPersonaBase frm = new AñadirPersonaBase(textBox1.Text); frm.ShowDialog(); }
private void AlumnosCompr_Click(object sender, EventArgs e) { this.Close(); AñadirPersonaBase aux = new AñadirPersonaBase(); aux.Show(); }
// Añadir a la Base de Datos private void button3_Click_1(object sender, EventArgs e) { this.Hide(); //string name, string price, string teacher, string amount, string clasesTotal) AñadirPersonaBase frm3 = new AñadirPersonaBase(namePersona); frm3.ShowDialog(); this.Show(); string aux = frm3.NamePersona; textBox1.Text = aux; }