博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VS 2013使用ReportViewer 提示An error occurred during local report processing异常处理
阅读量:5101 次
发布时间:2019-06-13

本文共 897 字,大约阅读时间需要 2 分钟。

最近做一个项目,使用到vs 2013自带的报表 ReportViewer工具,本机运行后一切正常,把程序发布给用户后,提示An error occurred during local report processing异常信息,让后网上找处理的方法:

1、开始菜单,输入cmd 打开命令提示符,在D盘下新建个文件夹重命名ReportViewer;

2、在命令提示符 复制一下命令执行:

copy C:\Windows\assembly\gac_msil\Microsoft.ReportViewer.Common\11.0.0.0__89845dcd8080cc91\Microsoft.ReportViewer.Common.dll D:\ReportViewer

copy C:\Windows\assembly\gac_msil\Microsoft.ReportViewer.WinForms\11.0.0.0__89845dcd8080cc91\Microsoft.ReportViewer.WinForms.DLL D:\ReportViewer

copy C:\Windows\assembly\gac_msil\Microsoft.ReportViewer.ProcessingObjectModel\11.0.0.0__89845dcd8080cc91\Microsoft.ReportViewer.ProcessingObjectModel.DLL D:\ReportViewer

copy C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Types\11.0.0.0__89845dcd8080cc91\Microsoft.SqlServer.Types.dll D:\ReportViewer

3、复制到D盘ReportViewer目录后,将其复制到项目的bin\Debug目录下,之后就可以使用了。

转载于:https://www.cnblogs.com/jianmin401059934/p/11077326.html

你可能感兴趣的文章
Linux中的线程与进程以及调度
查看>>
Jetty性能调优
查看>>
Java设计模式
查看>>
Spring动态的切换数据源
查看>>
性能调优工具
查看>>
https的报文传输机制
查看>>
红黑树
查看>>
mybatis的源码学习
查看>>
leetcode(90)子集 2
查看>>
leetcode(85)最大矩形
查看>>
leetcode(121-123)买股票的最佳时机
查看>>
leetcode(105)从前序遍历和中序遍历构建二叉树
查看>>
leetcode(153)寻找旋转排序数组中的最小值
查看>>
leetcode(106)从中序遍历和后序遍历构建二叉树
查看>>
求众数leetcode(169)+投票算法
查看>>
leetcode(120)三角形最小路径之和
查看>>
html样式
查看>>
插入、删除和随机查询时间复杂度都为O(1) leetcode 381
查看>>
实战Netty集群
查看>>
多线程 Threading Multiprocessing(Python)
查看>>