private void btnAceptar_Click(object sender, EventArgs e)
 {
     if (textNombre.Text == "")
     {
         MessageBox.Show("Debe ingresar un nombre válido", "Error");
     }
     else
     {
         bool res;
         if (edit)
         {
             res = Datos.ActualizarSubCat(id_subcat, textNombre.Text);
         }
         else
         {
             res = Datos.InsertarSubCat(id_cat, textNombre.Text);
         }
         if (res == true)
         {
             this.DialogResult = DialogResult.OK;
             this.Close();
         }
         else
         {
             MessageBox.Show("Ha ocurrido un error al ingresar la nueva subcategoría.", "Error");
         }
     }
 }