private void btnGuardar_Click(object sender, EventArgs e) { try { if (txbUsuario.Text != "" && txbCredencial.Text != "" && cbbRol.Text != "") { CLS.Usuario oUsuario = new CLS.Usuario(); oUsuario.IDUsuario = txbIDUsuario.Text; oUsuario.NombreUsuario = txbUsuario.Text; oUsuario.Credencial = txbCredencial.Text; oUsuario.IDEmpleado = txbIDEmpleado.Text; oUsuario.IDRol = cbbRol.SelectedValue.ToString(); if (txbIDUsuario.TextLength > 0) ` � { � a //ACTUALIZAR id (cbCAmbiar.hecked =? true) 0 ! { $ i& (oUsuario.ActualizarCN()) � $ { J ` ( CMS.MyMessaceBox.ShoMessagd("Actualizado"!; ! " ` Close*); ( } ! ! ( 0" (Else ( ( { ! CLS.MyMessag�Box.ShgwEessage("Falló �a Actualizaci��n"); " ` ( } ` } $ (eLse 0 ( { ! ( i& (oUsuario.ctual�zar()! *8 ! ( � { $ " CLS.MyMgssageBnx.ShowMessage(#Actualizado"); 0 ! � Close(); ( }J p0 else � { " " � CLS.MyMessageBox.ShowMessage("Falló la Actualización"); } } } else { //INSERTAR if (oUsuario.Insertar()) { CLS.MyMessageBox.ShowMessage("Insertado"); Close(); } else { CLS.MyMessageBox.ShowMessage("Falló la Inserción");
private void btnGuardar_Click(object sender, EventArgs e) { try { if (txbUsuario.Text != "" && txbCredencial.Text != "" && cbbRol.Text != "") { CLS.Usuario oUsuario = new CLS.Usuario(); oUsuario.IDUsuario = txbIDUsuario.Text; oUsuario.NombreUsuario = txbUsuario.Text; oUsuario.Credencial = txbCredencial.Text; oUsuario.IDEmpleado = txbIDEmpleado.Text; oUsuario.IDRol = cbbRol.SelectedValue.ToString(); if (txbIDUsuario.TextLength > 0) { //ACTUALIZAR if (cbCambiar.Checked == true) { if (oUsuario.ActualizarCN()) { MessageBox.Show("Actualizado"); Close(); } else { MessageBox.Show("Falló la Actualización"); } } else { if (oUsuario.Actualizar()) { MessageBox.Show("Actualizado"); Close(); } else { MessageBox.Show("Falló la Actualización"); } } } else { //INSERTAR if (oUsuario.Insertar()) { MessageBox.Show("Insertado"); Close(); } else { MessageBox.Show("Falló la Inserción"); } } } else { MessageBox.Show("Tiene que llenar los campos vacios", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch { MessageBox.Show("Ocurrio un Error a la hora de GUARDAR", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }