crystal-reports

how to solve error 1904 in crystal report runtime installation

爷,独闯天下 提交于 2020-08-10 19:02:50
问题 I'm installing Crystal Reports Runtime 13.0.22 for my application that has to create some reports but while installing CRforVS 13.0.22 it shows the following error: 回答1: The error you are receiving is a Windows error code that could be due to insufficient permissions. Do you have Administrator user permissions on the computer? If not, then you will need to contact someone who does and have them install this for you. If you are, you may simply need to right click the EXE file and choose "Run

how to solve error 1904 in crystal report runtime installation

妖精的绣舞 提交于 2020-08-10 19:02:33
问题 I'm installing Crystal Reports Runtime 13.0.22 for my application that has to create some reports but while installing CRforVS 13.0.22 it shows the following error: 回答1: The error you are receiving is a Windows error code that could be due to insufficient permissions. Do you have Administrator user permissions on the computer? If not, then you will need to contact someone who does and have them install this for you. If you are, you may simply need to right click the EXE file and choose "Run

Crystal Report error : Could not load file or assembly While loading in asp.net Webconfig file

大城市里の小女人 提交于 2020-08-08 05:59:48
问题 In My project i use Crystal Reporting which give error on loading my asp.net website. Error in my web.Config like When i remove these three assemblies (Controller, DataDefModel and ClientDoc) from my web config the error show Could not load file or assembly 'CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified please guide me if any one solve this error. Thanks

Crystal Reports 11 - Useless blank page is added with just group headers that have data

与世无争的帅哥 提交于 2020-08-08 05:53:48
问题 I have a weird problem I have never seen before using Crystal Reports. I built a complex PDF monthly report for a bank that generates over 200 pages. The specifications took months to adjust with the client but it works perfectly now, showing all the data it's supposed to, all sorted right and with the right headers. But for some reason the report inserts quasi-blank pages rarely and seemingly randomly before it shows data. These pages aren't entirely blank, all my headers including group

How to transfer this code from ASP.NET to ASP.NET MVC to print crystal reports

梦想与她 提交于 2020-07-01 13:47:13
问题 I have ASP.NET application and some crystal reports and I need to transfer the following code from ASP.NET and use same functionality in MVC , I am using entity framework. this is the form.aspx code which i send the parameters value to the other form by using hyperlink and NavigateUrl: <asp:GridView ID="GridView1" Width="100%" CssClass="dynamicTable table table-striped table-bordered table-condensed" style="color:#000000;background-color:#f4eb3c " AutoGenerateColumns="false" runat="server">

How to transfer this code from ASP.NET to ASP.NET MVC to print crystal reports

假装没事ソ 提交于 2020-07-01 13:46:54
问题 I have ASP.NET application and some crystal reports and I need to transfer the following code from ASP.NET and use same functionality in MVC , I am using entity framework. this is the form.aspx code which i send the parameters value to the other form by using hyperlink and NavigateUrl: <asp:GridView ID="GridView1" Width="100%" CssClass="dynamicTable table table-striped table-bordered table-condensed" style="color:#000000;background-color:#f4eb3c " AutoGenerateColumns="false" runat="server">

Difference between chr(13) and chr(10)

丶灬走出姿态 提交于 2020-05-25 06:33:32
问题 What is the difference between chr(13) and chr(10) in Crystal Reports? I know chr(13) is used as a line break. But one of our reports uses this line: {Address1} + chr(13) + chr(10) + {Address2} 回答1: Chr(10) is the Line Feed character and Chr(13) is the Carriage Return character. You probably won't notice a difference if you use only one or the other, but you might find yourself in a situation where the output doesn't show properly with only one or the other. So it's safer to include both.

Difference between chr(13) and chr(10)

不羁岁月 提交于 2020-05-25 06:33:16
问题 What is the difference between chr(13) and chr(10) in Crystal Reports? I know chr(13) is used as a line break. But one of our reports uses this line: {Address1} + chr(13) + chr(10) + {Address2} 回答1: Chr(10) is the Line Feed character and Chr(13) is the Carriage Return character. You probably won't notice a difference if you use only one or the other, but you might find yourself in a situation where the output doesn't show properly with only one or the other. So it's safer to include both.