private void btnComprar_Click(object sender, EventArgs e) { if (Convert.ToInt32(cantidad.Text) > publicacion.stock) { MessageBox.Show("Cantidad supera stock disponible"); return; } repositorio.comprar(publicacion, usuario, Convert.ToInt32(cantidad.Text), checkBox1.Checked); //SI TODO SALE BIEN.. formAnterior.Show(); Close(); }