Questions tagged [dynamic-rdlc-generation]

Use this tag for questions about the dynamic generation of the Client Report Definition Language file

Dynamic generation of RDLC Client Report Definition Language file

157 questions
0
votes
1 answer

How to send jqPlot Image to the Microsoft ReportViewer RDLC in order to generate a PDF

All: Here is the information about my Web Application development environment: -Microsoft Visual Studio Professional 2013 -.NET Framework 4.0 I've installed the following: -Microsoft Report Viewer 2012 Runtime -Microsoft Report Viewer 2010 SP1…
0
votes
1 answer

An attempt was made to set a report parameter 'SubImgPath' that is not defined in this report?

I have created a child report which loads data if a parameter is passed from Parent Report. It works fine except for the IMAGE. Image doesn't load. It fails by throwing error: An attempt was made to set a report parameter 'SubImgPath' that is not…
Juventus tech
  • 95
  • 4
  • 13
0
votes
0 answers

How to set RDLC parameter that is a boolean from C#

I am using the MS ReportViewer in C# to render reports. My usage and helpers all work very well and I can generate reports and set parameters just fine... except if the parameter is typed as a non string in the RDLC Example: RDLC parameter…
John E
  • 166
  • 1
  • 10
0
votes
0 answers

Why report fails to display image ?

I am sending a parameter to sub report to display image but fails to do so. Why ? I have loaded the image in parent report in the same way but that process doesn't work in subreport. Why ? Parent report: public void Fill_AuditsReport() { …
Juventus tech
  • 95
  • 4
  • 13
0
votes
1 answer

How to set dynamic url for RDLC ReportPath in asp.net?

I have used below code to call RDLC file from one application to another application. Below code resides in one application. RDLC file resides in another application. Dim RptVwr As New Microsoft.Reporting.WebForms.ReportViewer() Dim ds As DataSet…
RGS
  • 5,131
  • 6
  • 37
  • 65
0
votes
1 answer

External image in report rdlc

I upload images to server and store their path in a table (varchar(MAX)). I managed to create a report and show the records from that table but I could not bind the image to its datasource (stored path). My path looks like…
JSON
  • 1,583
  • 4
  • 31
  • 63
0
votes
1 answer

RDLC Report - how to dynamically set the height of Tablix?

I made two Tablix which they are bound by one dataset. Accrording Design windows, Tablix1 and tablix2 are same height. But It's has a problem when some data of Dataset is too long. A Tablix1's height and A Tablix2's height aren't equal. How to…
Fame th
  • 1,018
  • 3
  • 17
  • 37
0
votes
2 answers

RDLC REPORT Justify in VS2012

I use RDLC report in VS 2012, I'm facing alignment problem, help in this regard, I can only find left, right, center, I need to align text justify in textbox, how can I do this? Alignment in VS 2012 RDLC report, justify
0
votes
1 answer

manually load a rdlc report to reportviewer in vb.net

i created a report and trying to load it to a reportviewer manually but not able to get it loaded . my code Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load ReportViewer1.Reset() Dim ReportDataSource1 As…
ravi sharma
  • 59
  • 1
  • 8
0
votes
1 answer

Modifying SSRS directly in the Database does not reflect in ReportViewer

I am working on Web Based SSRS Editor. I have succeeded in developing a Parser which access the SSRS schema from CATALOG Table from Database and converts it to HTML. From here User can modify the report and submit the change, again Parser receives…
0
votes
0 answers

How to add columns in Tablix in RDLC Runtime

This is a windows desktop application. I am using List<> as data in rdlc. Below is the code. public class Balance_Party { public string Name { get; set; } public double Amount { get; set; } public static List
DhavalR
  • 1,409
  • 3
  • 29
  • 57
0
votes
1 answer

Conditional Grouping in RDLC

I am able to conditionally group by a certain item in RDLC, but I'd also like the option to not group by anything. I'm not sure on how to do that. Here's my current Group By expression:
slygambit
  • 3
  • 1
  • 2
0
votes
1 answer

c# rdlc Set textbox text wihout parameter name string

Today I use this way to set textbox, by stringParameter ReportParameterCollection reportParameters = new ReportParameterCollection(); reportParameters.Add(new ReportParameter("ParameterName",…
Julian50
  • 2,462
  • 1
  • 21
  • 30
0
votes
1 answer

Add records from Details Table after respective Master Table record in Report

I have two tables for Billing, one Bill_Master and other is Bill_Detail. The records in both tables are as follows... **BILL_MASTER** id party bill_amount 1 abc 500 2 def 600 **BILL_DETAILS** mstr_id sr_no perticular…
DhavalR
  • 1,409
  • 3
  • 29
  • 57
0
votes
2 answers

Task scheduling in Vb.net

My requirement is to schedule the reports at a particular time and frequency, i.e. weekly, monthly or daily. This reports should be mailed at specified time with attachment at which it is scheduled. Thanks in advance