private void button2_Click(object sender, EventArgs e) { string nombre; string apellido; int u1; int u2; int u3; double promedio; nombre = nombretxt.Text; apellido = apellidotxt.Text; u1 = int.Parse(U1txt.Text); u2 = int.Parse(U2txt.Text); u3 = int.Parse(U3txt.Text); promedio = (u1 + u2 + u3) / 3; database da = new database(); da.registrar(nombre, apellido, u1, u2, u3, promedio); // MessageBox.Show("Alumno registrado"); MessageBox.Show("Alumno '" + nombre + "' '" + apellido + "' fue registrado"); }
private void button2_Click(object sender, EventArgs e) { database da = new database(); dataGridView1.DataSource = database.consulta(); }
private void Vista_Load(object sender, EventArgs e) { database da = new database(); dataGridView1.DataSource = database.consulta(); }