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

I have a stored procedure which returns Dynamic columns(using Pivot) I want to bind stored procedure with RDLC report

I want to create RDLC report ,but the problem is that Columns in a table returned by the stored procedure are Dynamic, means Columns can be increased or decrease depends on the condition. I have Created procedure. alter proc…
0
votes
1 answer

Why Wingdings 2 is not interpreted in rdlc reportviewers but in pdf?

I am using Wingdings 2 in rdlc report and when I export it to pdf, it works but when displaying in browser, it doesn't work at all. Why? in expression field it's like =IIF(Fields!Testname.Value, Chr(82), Chr(163)) but in web browser it appears…
Stacky
  • 57
  • 1
  • 8
0
votes
1 answer

How to draw dynamic line in RDLC Report

I'm try to generate dynamic line for column in RDLC report. Start and end point of line are not fixed, it depends upon data coming from database. I tried different code but no luck. Please refer image for better understanding.
0
votes
1 answer

Rdlc Reports (Reportviewer) - Asp.net Web Forms/ MVC

How can I show an HTML page in a cell or can it happen? Thank yoou
0
votes
1 answer

How to use vb.net dataset on RDL or RDLC?

I have a simple vb.net app. Module Module1 Sub Main() ' Two DataTables. Dim table1 As DataTable = New DataTable("patients") table1.Columns.Add("name") table1.Columns.Add("id") table1.Rows.Add("sam", 1) …
BobNoobGuy
  • 1,551
  • 2
  • 30
  • 62
0
votes
1 answer

Show dynamic external image in rdlc report table rows

I want to show an external image in RDLC Report rows, the full image path saved in the database. This what I want to get I did the following steps, I changed the textbox properties as following: Textbox Properties -> Background Image -> Source:…
0
votes
1 answer

RDLC - Sorting items based on row value

It's hard to explain, but basically, I want this: Description Category Color     apple         Fruit      Red     mango       Fruit    Yellow     cabbage Vegetable Green     carrot      Vegetable Orange     brocolli   Vegetable Green to…
Dog
  • 25
  • 4
0
votes
0 answers

i am getting An error while i am trying to add data source manually through C# while Making RDLC Report

I am getting an error while I am trying to add data source manually through C#: An error has occurred during report processing. Cannot create a data reader for dataset 'DataSet1' My C# Code is: public DataTable GetData() { …
Ravi Shankar
  • 21
  • 1
  • 2
0
votes
1 answer

I want to display only the current culture currency symbol in rdlc report textbox. Is there a Keyword?

I could ot find any keywords that will get me the currency symbol.Help will b greatly appreciated.
0
votes
1 answer

Expressions in Margin - Visual Studio RDLC Report

I'm using Visual Studio 2017, Web Forms project. I'm trying to insert expression in the Margins of the RDLC file. Today I can insert expressions in the font size, text align, padding, and other options. Anyone know how, and if, I can insert…
0
votes
0 answers

RDLC's Table borders till end of the body

I am generating a Sale Invoice through RDLC. In that I have a table that consists of item description, rate, qty, amount. I want to set the borders of the table till end of the body though items are not up to page size. I.e if page size capacity is…
Ramesh
  • 1,041
  • 15
  • 39
0
votes
1 answer

Reapeat RDLC Report :each object in Page

I have made my rdlc report with texboxs and elements and i want to have the same report template with each object in page do you have an idea ?
Bennani HAMZA
  • 163
  • 2
  • 10
0
votes
1 answer

calculate sum of field based on Boolean expression in rdlc Reort

I'm trying to calculate the total of cost in RDLC report using expressions I applied the following and it works fine : =SUM(Val(Fields!PCOST.Value)) But I tried to apply another expression to calculate the cost but with a condition like below…
0
votes
0 answers

Show Day Of Month in RDLC Report Columns based on month and year

I have a student Attendance table which Stores Student Record only if Student is absent. Now i wish this data to be displayed in a RDLC Report by automatically adding columns for all days of month and Status of All Students in a class.
Ali Kazmi
  • 45
  • 1
  • 8
0
votes
0 answers

How to group all data in RDLC report with header details when page breaking

I want to group all the data with header section in Microsoft Report viewer(RDLC) reports. I can group tables in RDLC report(Tablix), but when the page break the report header section data related to grouping will display same data. I want to change…