crystal-reports

How to grow height or all fields of a “textboxes made” grid if one column's height grows in crystal reports?

爱⌒轻易说出口 提交于 2020-02-03 10:34:26
问题 I am attaching an image to elaborate what i want to know Crystal reports dont have any specific grid control I have made a grid using textboxes in crystal reports 2011 for vs2010, But the problem is, if one of the column grows, i want to grow all text boxes of a row, as i have placed the grid in Details section of crystal report. In image attached, you can see, description's height increases because extra text and "can grow" checked, i want if description increases whole row's height should

How to set height of all textboxes be equal size in an report? - Crystal Reports

孤者浪人 提交于 2020-02-02 23:39:35
问题 I'm working on an existing report created using Crystal Reports. In this report, a new column was added, but, the value of the column/row surpasses the default design of the report. NOTE : The following example is in the "Details section" of the report and is equivalent of the rows of a table. Example: ____________________________ | Name | Worker type | // (Worker type) is the new column |___________|________________| | Item 1 | Text 1 | // Row 1 | Item 2 | Text 2 | |___________| Text 3 | |

How to set height of all textboxes be equal size in an report? - Crystal Reports

喜欢而已 提交于 2020-02-02 23:38:46
问题 I'm working on an existing report created using Crystal Reports. In this report, a new column was added, but, the value of the column/row surpasses the default design of the report. NOTE : The following example is in the "Details section" of the report and is equivalent of the rows of a table. Example: ____________________________ | Name | Worker type | // (Worker type) is the new column |___________|________________| | Item 1 | Text 1 | // Row 1 | Item 2 | Text 2 | |___________| Text 3 | |

How to set height of all textboxes be equal size in an report? - Crystal Reports

蓝咒 提交于 2020-02-02 23:37:27
问题 I'm working on an existing report created using Crystal Reports. In this report, a new column was added, but, the value of the column/row surpasses the default design of the report. NOTE : The following example is in the "Details section" of the report and is equivalent of the rows of a table. Example: ____________________________ | Name | Worker type | // (Worker type) is the new column |___________|________________| | Item 1 | Text 1 | // Row 1 | Item 2 | Text 2 | |___________| Text 3 | |

Error when creating crystal report in asp.net mvc2

只愿长相守 提交于 2020-02-02 13:27:29
问题 I made a report using crystal report and in the page load I am writing this protected void Page_Load(object sender, EventArgs e) { ReportDocument crystalReport = new ReportDocument(); crystalReport.Load(Server.MapPath("CrystalReport.rpt")); crystalReport.SetDatabaseLogon ("amit", "password", @"AMIT\SQLEXPRESS", "TestDB"); CrystalReportViewer1.ReportSource = crystalReport; } and when runing the page I found this error. CS0433: The type 'CrystalDecisions.Web.CrystalReportViewer' exists in both

Error when creating crystal report in asp.net mvc2

故事扮演 提交于 2020-02-02 13:25:30
问题 I made a report using crystal report and in the page load I am writing this protected void Page_Load(object sender, EventArgs e) { ReportDocument crystalReport = new ReportDocument(); crystalReport.Load(Server.MapPath("CrystalReport.rpt")); crystalReport.SetDatabaseLogon ("amit", "password", @"AMIT\SQLEXPRESS", "TestDB"); CrystalReportViewer1.ReportSource = crystalReport; } and when runing the page I found this error. CS0433: The type 'CrystalDecisions.Web.CrystalReportViewer' exists in both

Crystal Reports Hiding Columns

£可爱£侵袭症+ 提交于 2020-01-30 12:08:11
问题 I have a crystal report with several columns.i need to hide a column and remove the blank space based on a condition.currently what i have done is.i have dragged and dropped the fields inside TextObject and tick the "Suppress Embedded Blank Field Lines" and "Can Grow".it'll hide the detail field and also remove the blank space but the issue is header is still visible. condition to hide a column is if the field data is null or empty 回答1: Try creating a formula for your conditionally displaying

Crystal Reports Hiding Columns

[亡魂溺海] 提交于 2020-01-30 12:06:37
问题 I have a crystal report with several columns.i need to hide a column and remove the blank space based on a condition.currently what i have done is.i have dragged and dropped the fields inside TextObject and tick the "Suppress Embedded Blank Field Lines" and "Can Grow".it'll hide the detail field and also remove the blank space but the issue is header is still visible. condition to hide a column is if the field data is null or empty 回答1: Try creating a formula for your conditionally displaying

How to obtain The Oracle Package name from a Crystal Report file using .NET code

本秂侑毒 提交于 2020-01-25 22:11:33
问题 I'm trying to obtain the Oracle package name used for a Crystal report data source using .NET code. I have obtained the procedure name, but for some reason I can not find the package name. Dim rpt as new ReportDocument rpt.Load(filename) Dim procedureName As String = rpt.Database.Tables.Item(0).Location Dim DataSourceAliasName As String = rpt.Database.Tables.Item(0).Name Currently using .NET Crystal Decisions version: 10.5.3700.0 回答1: The QualifiedName attribute is not exposed on the public

Execute stored procedure in report

半世苍凉 提交于 2020-01-25 07:53:07
问题 My stored procedure and table capture details about which reports are run, by who, and at what time. This works fine in the Crystal Reports developer environment; The sproc gets run and details are captured. When deployed to Business Objects the insert statements inside my stored procedure don't never fire off. They are definitely in the report, but don't create any entries in the logging table. How can I resolve this? It's almost like Crystal Reports "scrapes" the SQL out of the stored