Reporting Services
文章平均质量分 86
xqdak
这个作者很懒,什么都没留下…
展开
-
Reporting Services 2008中报表不含千分符的整数导到Excel显示#Value!
当报表中一个字段的NumberFormat设成整数不含千分符即"#0"时,该字段的值导到Excel时显示#Value!,其解决方案是:将"#0"替换成"#0;(#0)"。另外还有一个方法是将"#0"替换成"N0",但当该值导到Excel时含有千分符。原创 2010-03-23 20:52:00 · 712 阅读 · 0 评论 -
利用reporting services扩展开发报表,实现group的展开折叠功能
该功能的实现需要借助于reporting services的cache功能。当用户成功运行一个report后,该report就会被存储在server的cache中,直到用户的session结束才被自动清除。 1. 第一次运行report时,加载报表定义并获得该report的ExecutionID,并将其存储在session中 //load report definit原创 2010-04-21 11:32:00 · 1972 阅读 · 0 评论 -
利用ReportExecutionService.FindString实现查询功能
1. 首先定义DeviceInfo strDevInfo = "" + "" + strPageIndex + "" + "False" + "" + strFindString + "" +原创 2010-04-22 09:40:00 · 1023 阅读 · 0 评论 -
Use RSClientPrint control in a custom application
On www.codeproject.com, there is an article that in depth describes how to use RSClientPrint control in a custom application. Here I dont want to give those details again. Please visit : http://www.c原创 2010-05-12 15:40:00 · 1183 阅读 · 0 评论 -
How to render a 128 Barcode in Reporting Services or .Net applications
This is a simple example to generate a barcode and embed it in your report files and .Net forms. How to generate a code128 barcode, please refer to http://www.codeproject.com/KB/GDI-plus/GenCode128.a原创 2010-05-31 09:32:00 · 1428 阅读 · 0 评论