private void button1_Click(object sender, EventArgs e) { SqlConnection connection = BDConnect.connection(); apartados objApartados = new apartados(); bool estado = objApartados.insertar(connection, clname.Text); if (estado) { MessageBox.Show("datos insertados con exito"); this.Dispose(); this.Close(); client_List.Items.Clear(); interfazApartado ap = new interfazApartado(); ap.ShowDialog(); } else { MessageBox.Show("Error con la insercion"); } }
private void agregarClienteToolStripMenuItem_Click(object sender, EventArgs e) { interfazApartado sistema_apartado = new interfazApartado(); sistema_apartado.ShowDialog(); }