crystal-reports-2010

Crystal Reports Need to Group by Derived Date Range

我的未来我决定 提交于 2019-11-30 08:48:02
问题 Long time listner, first time caller. I'm using Crystal Reports 2010. I have daily trade information that I need to group together if the volume doesn't change. Here's what the data looks like. Trade# BegDate EndDate Volume 1 1/1/2012 1/2/2012 500 1 1/2/2012 1/3/2012 500 1 1/3/2012 1/4/2012 1000 1 1/4/2012 1/5/2012 750 1 1/5/2012 1/6/2012 750 1 1/6/2012 1/7/2012 500 1 1/7/2012 1/8/2012 500 1 1/8/2012 1/9/2012 500 I need it to look like this. Trade# DateRange Volume 1 1/1/2012 - 1/3/2012 500 1

Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached

心已入冬 提交于 2019-11-30 05:51:31
问题 I'm facing a very buggy issue, in ASP.NET application after viewing the same report many times simultaneously I got this exception: The maximum report processing jobs limit configured by your system administrator has been reached. Wait I know there are tons of solutions out there but all of them are not working with me. I put ReportDocument.Close(); ReportDocument.Dispose(); in CrystalReportViewer_Unload event, and still throw the exception. Private Sub CrystalReportViewer1_Unload(ByVal

Font size is decreased when exporting Crystal Report to PDF

走远了吗. 提交于 2019-11-30 03:49:38
问题 I have a font size issue in exporting crystal report using crystal report 13.0,the font size is decreased,so i need to increase it.i notice that i must set it from the registry key,but t I'm not founding the file related to the font(PDF\ForceLargerFonts ) in the registry file that must be changed 回答1: This is a known issue with Crystal Reports which reduces the font size when it exports to a PDF file. The solution is retrieved from Business Objects support site. Solved it by below links is

Crystal Reports keeps prompting for Parameter

ε祈祈猫儿з 提交于 2019-11-29 11:21:20
I am having a terrible problem with crystal report 2010 for .net 4.0 (I am using the fixed 13.0.1 version but 13.0.4 is released). No matter which way I try, I am always getting a prompting dialogue box to input my one parameter value the first time. CrystalReportViewer1.ReportSource = CustomerReport1; CustomerReport1.Database.Tables[0].SetDatasource ( this.dataset); CustomerReport1.SetParameterValue("PathLocation", Location.Text); CustomerReport1.Parameter_PathLocation.CurrentValues.Add(Location.Text) // to be safe using CS 2010 for .net 4 CrystalReportViewer1.ReuseReportParametersOnRefresh =

Crystal Reports Need to Group by Derived Date Range

只愿长相守 提交于 2019-11-29 07:36:21
Long time listner, first time caller. I'm using Crystal Reports 2010. I have daily trade information that I need to group together if the volume doesn't change. Here's what the data looks like. Trade# BegDate EndDate Volume 1 1/1/2012 1/2/2012 500 1 1/2/2012 1/3/2012 500 1 1/3/2012 1/4/2012 1000 1 1/4/2012 1/5/2012 750 1 1/5/2012 1/6/2012 750 1 1/6/2012 1/7/2012 500 1 1/7/2012 1/8/2012 500 1 1/8/2012 1/9/2012 500 I need it to look like this. Trade# DateRange Volume 1 1/1/2012 - 1/3/2012 500 1 1/3/2012 - 1/4/2012 1000 1 1/4/2012 - 1/6/2012 750 1 1/6/2012 - 1/9/2012 500 I need to group by the

Crystal Reports keeps prompting for Parameter

别说谁变了你拦得住时间么 提交于 2019-11-28 04:33:12
问题 I am having a terrible problem with crystal report 2010 for .net 4.0 (I am using the fixed 13.0.1 version but 13.0.4 is released). No matter which way I try, I am always getting a prompting dialogue box to input my one parameter value the first time. CrystalReportViewer1.ReportSource = CustomerReport1; CustomerReport1.Database.Tables[0].SetDatasource ( this.dataset); CustomerReport1.SetParameterValue("PathLocation", Location.Text); CustomerReport1.Parameter_PathLocation.CurrentValues.Add

Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached

让人想犯罪 __ 提交于 2019-11-27 22:20:30
I'm facing a very buggy issue, in ASP.NET application after viewing the same report many times simultaneously I got this exception: The maximum report processing jobs limit configured by your system administrator has been reached. Wait I know there are tons of solutions out there but all of them are not working with me. I put ReportDocument.Close(); ReportDocument.Dispose(); in CrystalReportViewer_Unload event, and still throw the exception. Private Sub CrystalReportViewer1_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles CrystalReportViewer1.Unload reportFile.Close()