随笔分类 - [04] Report报表
微软的企业级报表设计系统(RDL)。
摘要:Ran into problems trying to deploy my first web application to use a SQL Server Reporting Services report. I created a RDLC file and bound my report viewer control to an object data source. Worked fin...
阅读全文
摘要:I have a control ReportViewer in a web page, this page have two export mode (excel and pdf). When I exported a pdf the image header not shown , but when export to excel the header image show. I need s...
阅读全文
摘要:不能控制图表的某个柱的宽度。 不能动态控制报表的宽度。不能动态控制表格的列宽度。导出的Excel格式部分错乱。不像导出的PDF,格式很好。Safari中显示有问题。存在内存泄漏的问题。
阅读全文
摘要:You may have been in this situation before - you designed a chart based on a particular dataset and everything looks great. However, later the data volume increases, or new categories dynamicall...
阅读全文
摘要:Regarding the bar width question: In RS 2005, you can change the setting of the PointWidth element (directly under the Chart element) - however you'd have to do this directly in the RDL file bec...
阅读全文
摘要:把ReportViewer 放到UpdatePanel之外,并且放到div之中,设置绝对高度和宽度。 ReportViewer scrollbars are not rendered correctly in IE7. The Vertical scrollbar can be recovered and the bottom part of the report can be ...
阅读全文
摘要:================= The source of the report definition has not been specified 原因缺少:ReportViewer1.LocalReport.ReportPath = reportPath ================= 动态装载Report(RDLC文件) An error has occurred beca...
阅读全文
摘要:rdlc导出Excel时 如果报表嵌套了子报表 则在导出的excel表中 子报表区域显示‘忽略表/矩阵单元内的数据区域。’ 这是什么原因? =========== 单元格内嵌套的表格不能导出。如果作表头的话,可以不用嵌套的表格处理。如果是数据...那么建议不使用rdlc报表,特殊的报表自己写导出Excel的功能了,rdlc导出的Excel很难看 =========== 出现这样的问题: 1...
阅读全文
摘要:Issue:canGrow=True, canShrink=False All the content are shrinked to the left in Safari. Export report as Excel, sometimes, it is in disorder format.canGrow=False, canShrink=False Some of the long text...
阅读全文
摘要:Date Formatting in Reporting Services - list of format codes The Date Formatting article that I wrote earlier seems to be quite popular. As a follow up to that , I stumbled accross the full list of...
阅读全文
摘要:问题描述(Description): When you use the Microsoft Visual Studio 2005 IDE, a lockup condition may occur, and the IDE stops responding (hangs). Additionally, you cannot close the IDE, and you may receive ...
阅读全文
摘要:Format the Date The Date field displays date and time information by default. You can format it to display only the date. To format a date field Click the Design tab. Right-click the cell with ...
阅读全文
摘要:报表 换行1 ReportViewer (RDLC) 中的换行符是什么: chr(13) & chr(10) ,或者 & vbcrlf &示例: =Fields!FirstLine.Value & chr(13) & chr(10) & Fields!SecondLine.Value2 ReportViewer (RDLC) 中改变文字方向:水平,纵...
阅读全文
摘要:Problem: I would like to know how I can catch errors that showup on my reportviewer web server control when for instance there is a parameter whose value was not set. Solution: You can you the Rep...
阅读全文
摘要:Adding custom code to Local Reports in Visual Studio.NET 2005 (Problems & Solutions) If you are one of the people who used and enjoyed SQL Server Reporting Services (SSRS) in SQL 2000 and you wante...
阅读全文
摘要:Ref: http://support.microsoft.com/kb/842419/en-us How to grant permissions to a custom assembly that is referenced in a report in Reporting Services View products that this article applies to. ...
阅读全文
摘要:REF: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1400080&SiteID=1 (1) Rather than inserting spaces, can you adjust the padding property on the textbox? If you goal is to have the field inden...
阅读全文
摘要:I have a reportviewer control. I programmatically set the local report path based on a drop down on a page. This allows the user to choose which format (RDLC file) to use when generating the report.Th...
阅读全文
摘要:public partial class _Default : System.Web.UI.Page { String m_currentReport; private void saveRptAs(String s_rptType) { Warning[] warnings; string[] streamids; string mimeType; string encoding; str...
阅读全文