Hi,
Is there a way to remove empty reports from a ReportBook ?
Thank you
Before R1 of telerik reporting, I was doing something like this :
If Not TryCast(myRptBook.Reports(4), ReportLibrary1.Report1) Is Nothing Then : If Not DirectCast(myRptBook.Reports(4), ReportLibrary1.Report1).haveData Then myRptBook.Reports.Remove(myRptBook.Reports(4))End IfWith
Private Sub detail_ItemDataBound(sender As Object, e As EventArgs) Handles detail.ItemDataBound Me.haveData = TrueEnd SubEmployeeName Size ManuCode
Name1 1 ABC
2 DEF
Name2 3 GHI
I have grouped the above table with using EmployeeName.
How can I get the below output. I want to act the EmplyeeName as table header.
Name1
Size ManuCode
1 ABC
2 DEF
Name2
Size ManuCode
3 GHI
Hi,
When I hit the "print" button on reportviewer I need to call a procedure which writes the date of printig into the database.
I cant seem to find an event of sorts that does it. Anyone have any solution for this?
Thanks in advance.


I have 4 textboxes that correspond to a multi-select dropdown parameter. The space for the textboxes is a set width on my report. Depending on which options you choose from the parameter dropdown, the other textboxes visibility will toggle on and off. I have also set the width of the text boxes to change depending on how many are selected (if 2 options are selected, each is 1/2 of the given space. If 3 are selected, each will be 1/3 of the space.
My problem now is I need to set the location of the textboxes depending on what is chosen. If the first and third text box are shown and the second and fourth are hidden, the first and third will each be half of the space. BUT I would need the third box to scoot over against the first. Now, it stays at its original location and creates whitespace, causing the 3rd box to go onto a second page.
box1 box2 box3 box4
box1_____box3____
Is there a way to make box 3 move to the left up against box1 if box 2 is hidden?
Thanks,
Phillip

I am trying to move a project from the Visual Studio Report Designer to the standalone Report Designer. Most of my reports are inherited from Telerik.Reporting.Report, so I want to be able to keep the custom code in each class, but to load the report from a TRDP file.
The class definition and constructor of my classes looks something like:
public partial class MyReport : Telerik.Reporting.Report{ public MyReport() { InitializeComponent(); // ... class specific code ... }}
I would like to be able to initialize the report with a trdp file to look something like the following:
public class MyReport : Telerik.Reporting.Report{ public MyReport() { LoadReport("c:\SomeFolder\MyReport.tdrp"); // or LoadReport(Resources.MyReport); // ... class specific code ... }}
Any ideas or am I completely doing it wrong?
Hi,
I am trying to export the reporting dataset to CSV. The built-in export to CSV function does not fit my needs as my use case is for a CSV export of all data used to plot the line-graph that the user is currently looking at. In order to do this, I have created a function on the report which outputs the and I then extract the SQL query, add the user selected parameters and then re-execute the statement against the DB.
I have several questions about this -
Thanks
Hi there,
I want to use the same connectionString as i am using it on local running application as i want to use the same connectionString after deployment..
Hi
When try to export the report from the server i get this error
:'An error has occurred while processing Table 'table1
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not
found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote
The problem when i set the connection string from code its working but the data source can not read the connection string from app.config with the same connection, There any permission or setting to set on the server to access app.confg by report dll???
Note: in my local it working without any problem, also i using asp.net core and the report access the connection from app.config
So if the answer check the connection string its working all not the connection same the application and the application working with the same connection.
I think the problem the report dll can not reach to app.config.