private void DtgListadeProductos_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (FrmIreceptor != null) { Medicamentos medicamento = (Medicamentos)DtgListadeProductos.CurrentRow.DataBoundItem; FrmIreceptor.Recibir(medicamento); } }
private void GridEmpleado_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (FrmReceptor != null) { Empleado empleado = (Empleado)GridEmpleado.CurrentRow.DataBoundItem; FrmReceptor.Recibir(empleado); this.Hide(); } }
private void dtgvFacturas_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (frmReceptor != null) { Factura factura = (Factura)dtgvFacturas.CurrentRow.DataBoundItem; frmReceptor.Recibir(factura); this.Hide(); } }