crystal-reports

asp.net c# crystal report export to PDF memory full

对着背影说爱祢 提交于 2020-05-01 06:40:42
问题 I am building a report using Crystal Reports and VS2010: ASP.NET/C# which is fairly big (6 pages using OLE Objects), so I am not sure if that would be the cause or solution to this problem, but I need to know either how to fix this or an alternative. All other reports that I built using OLE Objects in the same manner still export just fine. The code I am using is: protected void exportPDF_btn_Click(object sender, EventArgs e) { ReportDocument repDoc = getReportDocument(); //regathers the

asp.net c# crystal report export to PDF memory full

ぐ巨炮叔叔 提交于 2020-05-01 06:39:10
问题 I am building a report using Crystal Reports and VS2010: ASP.NET/C# which is fairly big (6 pages using OLE Objects), so I am not sure if that would be the cause or solution to this problem, but I need to know either how to fix this or an alternative. All other reports that I built using OLE Objects in the same manner still export just fine. The code I am using is: protected void exportPDF_btn_Click(object sender, EventArgs e) { ReportDocument repDoc = getReportDocument(); //regathers the

blank result problem with crystal report in asp.net

荒凉一梦 提交于 2020-03-22 06:45:35
问题 I am using visual studio, ASP.NET. In my project i should use crystal report. unfortunately when i use crystal report in asp.net, the result is showing blank page. My Html Code: <head runat="server"> <title>Crystal Report From More Than One Table</title> </head> <body> <form id="form1" runat="server"> <table cellpadding="10" cellspacing="10" width="70%" height="300px" align="center" style="border: solid 2px gray;"> <tr> <td align="center" style="background-color: SkyBlue;"> <span style="font

crystal report is displaying blank screen in Internet explorer

本小妞迷上赌 提交于 2020-03-06 02:46:31
问题 asp.net mvc crystal report is displaying blank screen in Internet explorer 10.But the same report is working properly in chrome and firefox. Can anyone give a suggestion? Thanks in advance. 回答1: This fixed it for me. What it neglects to mention is the crystalReportViewer folder has to be copied from Program Files(x86) to the proper subfolder under aspnet_client. You may already have a block in web.config. You only need one. The second bit of code goes below that section. Copy the folders

crystal report is displaying blank screen in Internet explorer

本秂侑毒 提交于 2020-03-06 02:46:07
问题 asp.net mvc crystal report is displaying blank screen in Internet explorer 10.But the same report is working properly in chrome and firefox. Can anyone give a suggestion? Thanks in advance. 回答1: This fixed it for me. What it neglects to mention is the crystalReportViewer folder has to be copied from Program Files(x86) to the proper subfolder under aspnet_client. You may already have a block in web.config. You only need one. The second bit of code goes below that section. Copy the folders

Crystal Report SP26 SetDataSource() Method failed in computers of clients in Visual Studio 2019

99封情书 提交于 2020-02-24 07:59:32
问题 ​I'm working on Visual Studio 2019 and Crystal Report Service Pack 26. My code read data into ADO.NET dataset and I set those datases as datasourse of my reports. something like this in Visual Basic.Net: Dim ds1 As New DataSet1() Dim myRep As New CrystalReport1 taAccArticleFields_TBL.Fill(ds1.AccArticleFields_TBL) myRep.SetDataSource(ds1) crvReport.ReportSource = myRep When I run program through VS all is good and reports show without error. But when I want to run my program on another

Crystal Reports formulas and how they run in different sections

此生再无相见时 提交于 2020-02-23 08:22:31
问题 I've looked throughout multiple guides, but none seem to give good guidelines as to when to put items into Group Header vs Details vs Group Footer. Generally, my understanding is to put totals of any kind into the appropriate level group footer, as the header runs first -> details -> footer. I'm really confused, as I had to set up a more complex report recently. I've got three tables - a "job master", "billings master (connected by job number)", and "costings master (connected by job number)"

Using different versions of Crystal Reports on a same server

蓝咒 提交于 2020-02-05 10:48:27
问题 I have a few web applications running on the same server. Recently I added crystal reports for VS 2010. I thought to use new reports for several of projects but not all. Other projects uses the older version of crystal reports So I modified the web.config of the required projects. I downloaded runtime on both my development machine and server. So now I have both versions of asseblies (v 10 and v 13) in GAC. I have .NET 4.0 on both macines as well. It has worked on development machine However,

Using different versions of Crystal Reports on a same server

三世轮回 提交于 2020-02-05 10:48:11
问题 I have a few web applications running on the same server. Recently I added crystal reports for VS 2010. I thought to use new reports for several of projects but not all. Other projects uses the older version of crystal reports So I modified the web.config of the required projects. I downloaded runtime on both my development machine and server. So now I have both versions of asseblies (v 10 and v 13) in GAC. I have .NET 4.0 on both macines as well. It has worked on development machine However,

Asian language PDF display issue in Crystal Reports for VS2008

与世无争的帅哥 提交于 2020-02-05 07:38:04
问题 Here is the context: we use Crystal Reports for Visual Studio 2008 in a ASP.Net application to generate reports which may contain East Asian characters (Chinese, Japanese) in the text entered by the users. The reports are correctly generated on a Windows Server 2003 and incorrectly on Windows Server 2008. When we first had this issue, we found that we needed to: install "East Asian language support" on the server use a Unicode font in CR: Arial Unicode MS install this font on the server With