private void DGFiltro_Resultados_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                frmOrdenDeCompra      frmOComp     = frmOrdenDeCompra.GetInstancia();
                frmProducto           frmProd      = frmProducto.GetInstancia();
                frmProducto           frmProdStock = frmProducto.GetInstancia();
                frmInventario_Ingreso frmInv       = frmInventario_Ingreso.GetInstancia();
                frmCotizacionDeCompra frmCComp     = frmCotizacionDeCompra.GetInstancia();

                //Variables Para Los Filtros
                string idbodega, bodega, documento;

                if (frmInv.Filtro)
                {
                    idbodega  = this.DGFiltro_Resultados.CurrentRow.Cells[0].Value.ToString();
                    bodega    = this.DGFiltro_Resultados.CurrentRow.Cells[1].Value.ToString();
                    documento = this.DGFiltro_Resultados.CurrentRow.Cells[2].Value.ToString();
                    frmInv.setBodega(idbodega, bodega, documento);
                    this.Hide();
                }

                if (frmCComp.Filtro)
                {
                    idbodega  = this.DGFiltro_Resultados.CurrentRow.Cells[0].Value.ToString();
                    bodega    = this.DGFiltro_Resultados.CurrentRow.Cells[1].Value.ToString();
                    documento = this.DGFiltro_Resultados.CurrentRow.Cells[2].Value.ToString();
                    frmCComp.setBodega(idbodega, bodega, documento);
                    this.Hide();
                }

                if (frmOComp.Filtro)
                {
                    idbodega  = this.DGFiltro_Resultados.CurrentRow.Cells[0].Value.ToString();
                    bodega    = this.DGFiltro_Resultados.CurrentRow.Cells[1].Value.ToString();
                    documento = this.DGFiltro_Resultados.CurrentRow.Cells[2].Value.ToString();
                    frmOComp.setBodega(idbodega, bodega, documento);
                    this.Hide();
                }

                if (frmProd.Filtro)
                {
                    idbodega = this.DGFiltro_Resultados.CurrentRow.Cells[0].Value.ToString();
                    bodega   = this.DGFiltro_Resultados.CurrentRow.Cells[1].Value.ToString();
                    frmProd.setUbicacion(idbodega, bodega);
                    this.Hide();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message + ex.StackTrace);
            }
        }