private void agregarPaqueteDeÉsteProductoToolStripMenuItem_Click(object sender, EventArgs e) { if (dgvProductos.CurrentRow != null) { if (Paquete.Cant(id) > 0) { (new frmPaquetes(this, id)).ShowDialog(this); } else { FuncionesGenerales.Mensaje(this, Mensajes.Alerta, "El producto seleccionado no tiene paquetes registrados.", "Admin CSY"); } } }