Hello there!
I would like to know if it's possible to reuse all of our Q1 2016 TypeReport (.cs and .designer.cs) in a pure .net core 2.1 app? Do I to rewrite them in the TRDP format?
I read in the implemented features and limitations that :
Does that mean I can copy my report cs/designer files into a new .net core project and call them through code?
I did migrate with the upgrade wizard my .net 4.6 project but I did not manage the import the report files with the stand alone report designer. I always get an error message.
Thanks!

I am completely new to the report designer. I have a couple of questions. Here is one and I will post the other separately.
If I have a date parameter, is there a way to have it offer the user comparison operators (Is On, Between, On or After, On or Before)? Would this list be another parameter in the query? If so, is there a way to just provide a set list of strings that are not stored in the database?
Thanks,
Jennifer
Hello I have a following problem - in my web app I am using an html 5 report viewer with telerik reporting and from time to time I am encountering a following problem - picturebox control is not being loaded with image data. Attached is a screenshot with a problem.
I am loading image data as base:
[code]var bytes = Convert.FromBase64String(base64String);
using (var ms = new MemoryStream(bytes))
{
pbLogo.Value = Image.FromStream(ms);
}[/code]
I tried to search for similara problems, but none of the resolutions worked out.

Hi..
I'm using the <telerik:ReportViewer ID="ReportViewer1"
On one of my users the PRINT Icon does not PRINT, it prompts for Save As.
Same thing happens in IE and Chrome. Any ideas?
thx

Hello,
on the top of this page: https://docs.telerik.com/reporting/html5-report-viewer
I have seen a littel nice widget - a dropdown menu above the report.
I attach a screenshot of that report with a red arrow to show you which thing I mean.
It could be useful for me.
I want to load a report with other parameters and the mentioned dropdown menu above the report could be the right thing.
Depending on the choice it would be shown a report with other parameters.
Please can you show me how to implement this dropdown menu?
When I run a report via the webapi against a particular webserver, it just gets to where it's loading /api/Reports/clients/123/instances/documents/123/info indefinitely. It returns a status code of 202 Accepted, content has documentReady: false. No error or anything, it just does this indefinitely forever.
I'm using the reporting services webapi to run reports with the mvc framework. To do that I have a class which implements IReportResolver, which instantiates a InstanceReportSource and returns that in the Resolve method. I create these InstanceReportSource instances programmatically else where in the same code base, and they work fine in those instances (without the webapi).
I have a nearly identical code base with the exact same reporting implementation on another web server (Windows Server 2012, IIS 7), and there it works fine. It also works fine when I run it in Visual Studio. The environment where it does not work fine is Windows Server 2008 R2, IIS version 6.1. I am curious if upgrading the OS/IIS would fix it, but I can't do that at customer sites where this will be deployed to necessarily.
I did find originally when I ran it, it'd crash the application pool. Seemed to be a permission thing because i'm using the TEMP environment variable for file storage, but switching which account the application pool was under fixed it so it wouldn't crash, but this action happens instead.
Both webservers are setup nearly identical as far as I can tell, considering they are different versions. Unsure of where to look, if there's some underlying error or something else to be looking at. Any help is appreciated.

I've a problem with a simple report which consists of upto 5 tables. Data comes from a single dataset containing 5 datatables.
1) Unless one particular table contains data, then the detail section of that report is blank.
My original design was a wrapper report with 5 sub reports. But when that showed the problem, I dropped the sub reports and generated the report as a flat file with 5 tables. This made no difference.
I've tried rebuilding both the report and dataset several times. With the report I've used the wizard to add objectdatasource and the tablewizard to add the tables.
2) One of the tests I've coded in there also shows that sometimes the "Order" column header isn't drawn. It consistently happens with that
selection when it happens. I hope you can also look at this please.
I've recreated a C# application that shows the problem, please see link. I hope you would run it in debug mode to see what's wrong. Just decompress the solution and run. Use the menu to select a test report. Print preview shows report header and footer and nothing else for those reports that fail.
http://www.mediafire.com/file/rpf1fj0icggk4e1/telerikbuild1.rar/file

Hi All,
I'm wondering if anyone can help identify what I'm doing wrong - or indicate if things have changed or bugs have been identified with how the reporting product handles fonts when rendering to PDFs since we last licensed our Telerik toolset...
We have a problem where a report has been designed using a set of corporate-branded ttf fonts. The report was built using the standalone designer (version 8.0.14.507) to create trdx definition files and uses an external style sheet (style.xml). The report previews correctly but when we deploy it to the server and it's built within our C# application and streamed to the user, the displayed fonts revert to a default Windows one.
I can see that the other related style settings for the fonts are being applied (such as font size etc.) so it looks like the external style sheet is being read correctly and the font is simply being reverted back to the environments default one.
Googling around I've checked a number of things.
We're long out of support from Telerik :( otherwise I'd consider opening a ticket. Does anyone in the community have any ideas or pointers to what to look at next?
Thanks,
Paul.
Hi I have a list that comes into the report viewer demo that has 48 items i am passing it two a report view. But when I look at the report viwer it is comming up blank.
public partial class BoxReportBatches : Telerik.Reporting.Report { private List<BoxReportObject> _list; public BoxReportBatches() { // // Required for telerik Reporting designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } public BoxReportBatches(List<BoxReportObject> _dataSource) { _list = _dataSource; this.DataSource = _list; } }
And here is my reportviewer window
private List<BoxReportObject> _list; public ReportViewer(List<BoxReportObject> list) { InitializeComponent(); _list = list; } private void ReportViewer_Load(object sender, EventArgs e) { // var exeFolder = @"\\server02\sage\CustReports"; //var exeFolder = @"C:\Program Files (x86)\Sage\Sage200\Reporting\"; //string reportPath = Path.Combine(exeFolder, @"BoxReport.rdlc"); // Clipboard.SetText(exeFolder); BoxReportBatches report1 = new BoxReportBatches(_list); // perform additional operations on the report object if needed Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource(); instanceReportSource.ReportDocument = report1; this.reportViewer1.ReportSource = instanceReportSource; }
My Box Report Class is
public class BoxReportObject { public DateTime ProductionPlanWeekStarting { get; set; } public DateTime ProductionPlanWeekEnding { get; set; } public string BatchNumber { get; set; } public string BoxRef { get; set; } public string BoxName { get; set; } public decimal Qty { get; set; } }
You can also see here the properties of my report viewer.

