コード例 #1
0
 private void btnGuardar_Click(object sender, EventArgs e)
 {
     try
     {
         this.validar();
         rol.cargarNuevoRol(new Rol(this.txtBoxDescripcion.Text, true, this.funcSeleccionadas));
         MessageBox.Show("Rol guardado con exito");
         menuRol.updateDataGridView();
         this.Close();
     }
     catch (SqlException ex)
     {
         MessageBox.Show(ex.Message);
     }
     catch (SystemException ex)
     {
         MessageBox.Show(ex.Message);
     }
 }