//VERIFICATION private void btnActualizar_Click(object sender, EventArgs e) { if (CombAEm.SelectedIndex > -1 && TxtContra.Text != "" && txtNombre.Text != "" && txtApellido.Text != "") { string g; g = CombAEm.SelectedItem.ToString(); q.setContraseña(TxtContra.Text); q.setNombreEmp(txtNombre.Text); q.setApellido(txtApellido.Text); try { u.ActualizaAdnm(q, g); } catch (MySqlException r) { MessageBox.Show(r.Message); } VerAdm n = new VerAdm(); this.Hide(); n.Show(); } else { MessageBox.Show("No se han ingresado todos los datos"); } }
private void btnMenu_Click(object sender, EventArgs e) { VerAdm n = new VerAdm(); this.Hide(); n.Show(); }
private void button1_Click_1(object sender, EventArgs e) { VerAdm a = new VerAdm(); this.Hide(); a.Show(); }
//VERIFICATION private void btnEliminar_Click(object sender, EventArgs e) { if (CBEliminar.SelectedIndex > -1) { string id = CBEliminar.SelectedItem.ToString(); t.EliminarAdm(id); VerAdm n = new VerAdm(); this.Hide(); n.Show(); } else { MessageBox.Show("No se ha seleccionado un ID de usuario"); } }
//VERIFICATION private void btnIngresar_Click(object sender, EventArgs e) { if (TxtUsuario.Text != "" && TxtContra.Text != "" && txtNombre.Text != "" && txtApellido.Text != "") { u.setNombreEnc(TxtUsuario.Text); u.setContraseña(TxtContra.Text); u.setNombreEmp(txtNombre.Text); u.setApellido(txtApellido.Text); tu.InsertarAdm(u); VerAdm n = new VerAdm(); this.Hide(); n.Show(); } else { MessageBox.Show("No se ha ingresado algun dato"); } }