随笔分类 -  [04] Report报表

微软的企业级报表设计系统(RDL)。
摘要:http://www.stylusstudio.com/xsllist/200108/post40210.html http://social.msdn.microsoft.com/Forums/en-US/xmlandnetfx/thread/1f4e9c8f-02ff-40c6-9ca7-573779b6bbed http://msdn.microsoft.com/en-us/librar... 阅读全文
posted @ 2009-10-03 20:32 emanlee 阅读(254) 评论(0) 推荐(0) 编辑
摘要:GotReportViewer   http://www.gotreportviwer.com/ Generate RDLC dynamically (great) namespace DynamicTable {     public partial class Form1 : Form     {  ... 阅读全文
posted @ 2009-10-02 19:28 emanlee 阅读(852) 评论(0) 推荐(0) 编辑
摘要: VB Codes Public Function MergePdfFiles(ByVal pdfFiles() As String, ByVal outputPath As String) As Boolean        Dim result As Boolean = False  ... 阅读全文
posted @ 2009-10-02 17:06 emanlee 阅读(2453) 评论(0) 推荐(0) 编辑
摘要:  PdfDocument inputDocument = PdfReader.Open(file.FullName, PdfDocumentOpenMode.Import); Cannot handle iref streams. The current implementation of PDFsharp cannot handle this PDF feature introd... 阅读全文
posted @ 2009-09-19 19:37 emanlee 阅读(1547) 评论(0) 推荐(0) 编辑
摘要:Open Source PDF Libraries in C# iTextSharp iTextSharp is a library that allows you to generate PDF files on the fly.   Report.NET Report.NET is a powerful library that will help you to gener... 阅读全文
posted @ 2009-09-19 09:17 emanlee 阅读(4250) 评论(0) 推荐(0) 编辑
摘要:当导出Excel时,如果有合并单元格(不是人为设置的合并单元格,导出时系统自动产生的合并),单元格中的内容如果很长,而单元格的宽度或者高度不够时,内容会被遮挡(图1)。 设置CanGrow=True不能奏效(图3),设置AutoFit也不能奏效(图2)。 除非手工调整单元格的宽度或者高度,才能显示所有内容。 假如有成千上万行内容,手工调整是不切实际的。 图1 图2 图3 阅读全文
posted @ 2009-09-11 19:15 emanlee 阅读(2595) 评论(2) 推荐(0) 编辑
摘要:Hi all, "Only export to PDF format from ReportViewer add-in"...Is this possible? Right now the reportviewer has two options of exporting the current report-Excel and PDF...Is it possible to... 阅读全文
posted @ 2009-09-09 19:00 emanlee 阅读(806) 评论(0) 推荐(0) 编辑
摘要:  Microsoft Reporting Services Demo http://demo.themsteam.com/rsdemo/ Tutorial: Generating RDL Using the .NET Framework http://msdn.microsoft.com/en-us/library/ms170667(SQL.90).aspx Tutorial... 阅读全文
posted @ 2009-09-02 20:12 emanlee 阅读(788) 评论(0) 推荐(0) 编辑
摘要:今天在做报表的时候碰到需要动态显示报表列的问题,阿泰的那篇文章比较不错,但是在动态显示列的情况下,我们还需要动态设置它的宽度,于是我做了一些尝试。。。 由于是采用的PULL模式,所以报表里面的内容不方便写在这里,等我用PUSH的方式改写以后再与大家分享。。。 其实很简单就一行语句:          ... 阅读全文
posted @ 2009-08-31 16:03 emanlee 阅读(2071) 评论(0) 推荐(0) 编辑
摘要:━━━━━━━━━━━━━ 提纲: ━━━━━━━━━━━━━ 一、概述 二、设置图表引擎 三、OWC的许可证问题 四、OWC的运行机制 五、在Web服务器上安装OWC 10 六、OWC编程模式 ━━━━━━━━━━━━━ 正文: ━━━━━━━━━━━━━ 一、概述 在开发应用程序时,经常会遇到必须提供交互式图表的情况。例如,你可能在开发一个管理销售和产品数据的应用程序,数据保存在SQL Ser... 阅读全文
posted @ 2009-08-31 16:03 emanlee 阅读(691) 评论(0) 推荐(0) 编辑
摘要:'this.m_clientController' is null or not an object -------------- It seems that you are using ajax in your web form, right? Try to remove update panels around your report viewer control. And then ... 阅读全文
posted @ 2009-08-31 16:03 emanlee 阅读(861) 评论(0) 推荐(0) 编辑
摘要:VS2008水晶报表发布部总结 一、 安装运行时支撑文件 如果你安装了VS2008,那么可以找到如下目录: C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5 此目录下有如下文件: COPY到服务器上根据服务器CPU情况选择性地安装一下。 二、 将WEB项目打包成安装... 阅读全文
posted @ 2009-08-31 16:02 emanlee 阅读(8463) 评论(1) 推荐(0) 编辑
摘要:My line chart displays all lines in a single color (the series color). I'd like a single color per item in the series just like the bar chart. Is there a way to change this? Or is the only differentia... 阅读全文
posted @ 2009-08-31 16:02 emanlee 阅读(1002) 评论(0) 推荐(0) 编辑
摘要:我們最近在開發 SQL Server 2005 的 Reporting Service 報表功能,而在使用 ReportViewer 查看報表時都沒問題: 但是在執行匯出資料到 PDF 格式時,所有的中文字都會變成亂碼: 若要解決這個問題其實還蠻容易的,只要修改報表定義檔( *.rdlc )中各物件的字型修改掉即可,預設來說預設的字型是 Tahoma,你必須改成 PMingLiU 即可。 而所有報... 阅读全文
posted @ 2009-08-31 16:01 emanlee 阅读(1510) 评论(0) 推荐(0) 编辑
摘要:打包的时候加上 Microsoft.ReportViewer.WebForms.resources.dll 这个文件即可 http://www.cnblogs.com/Jasmin/archive/2007/01/11/617470.html   微软提供的ReportViewer扩展接口里有个叫IReportViewerMessages的,用它来设置你的中文信息即可。 怎样对re... 阅读全文
posted @ 2009-08-31 16:01 emanlee 阅读(2698) 评论(0) 推荐(1) 编辑
摘要:GotReportViewer的实例,请在下面的连接中下载: http://files.cnblogs.com/waxdoll/RDLC.rar http://www.databasejournal.com/features/mssql/article.php/3605826/Mastering-OLAP-Reporting--Reporting-with-Analysis-Services-K... 阅读全文
posted @ 2009-08-31 16:00 emanlee 阅读(561) 评论(1) 推荐(0) 编辑
摘要: VS 2005下ReportViewer的部署 1.安装ReportViewer.exe,或者直接下载Microsoft Report Viewer Redistributable 2005 SP1 (完全安装) 安装。 2.再去MS网站下载语言包(ReportViewerLP.exe),在服务器上安装就可以了。 VS2008下ReportViewer的部署 1.下载Microsoft... 阅读全文
posted @ 2009-08-31 08:18 emanlee 阅读(2989) 评论(0) 推荐(0) 编辑
摘要:I get a lot of questions about 'relationship' of our Microsoft Chart Control to the well known Dundas Data Visualization controls. You can definitely see the similarities in the features, appearance, ... 阅读全文
posted @ 2009-08-26 18:12 emanlee 阅读(692) 评论(0) 推荐(0) 编辑
摘要:  Using an rdlc report in ReportViewer, I need to create a table or matrix where the number of columns and the kinds of data displayed in the columns changes with each report.  For example,... 阅读全文
posted @ 2009-08-25 22:12 emanlee 阅读(2841) 评论(0) 推荐(0) 编辑
摘要:格式化:日期,时间,货币,数字,百分比。 In the report (rdlc) , Right Click in the Field, select properties, Select the Tab Format, and use the format code you need.  d Short date D Long date t Short time T Lon... 阅读全文
posted @ 2009-08-24 08:45 emanlee 阅读(1342) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示