Hi All,
Please I have been trying to export a standalone report in .trdp to pdf using the code below. but cant make any head away expecially with this line
typeReportSource.TypeName = "ReportName";.
Any help or assistance.
Thanks
Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
// set any deviceInfo settings if necessary
System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
Telerik.Reporting.TypeReportSource typeReportSource = new Telerik.Reporting.TypeReportSource();
// reportName is the Assembly Qualified Name of the report
typeReportSource.TypeName = "ReportName";
Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", typeReportSource, deviceInfo);
string fileName = result.DocumentName + "." + result.Extension;
string path = System.IO.Path.GetTempPath();
string filePath = System.IO.Path.Combine(path, fileName);
using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
{
fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
}
Hello,
I am attempting to convert some Crystal Reports XI vs 11.5.12.1838 to Telerik Report Designer 9.2.15.1216. I have followed the steps to use the import wizard, and no converters are available.
I have followed the setups in the Progress Telerik Reporting documentation ( https://docs.telerik.com/reporting/faq-available-converters) to add an assembly binding redirect to no avail.
I have also looked at the FUSLUGVW.exe Assembly Binding Log viewer, and have attached the error.
The version of Telerik Report Designer I have is the only one issued for the current software that uses the reports, and I cannot go higher or lower.
I have attached all the screen shots of some of my settings and logs.
Please let me know what I am doing wrong



I want to use Korean.
But There are cracks when export it to pdf.
I think its cause about fonts or encoding problem,
Is there any way make it works?
-I changed the font to Arial Unicode MS, already
Thanks.
Hi,
What would be the best approach to create the Master-Details table in Telerik report? The requirements are very basic:
row has two columns: description and price
Details table has only one column: name
The details table is optional, meaning not every master row has it.
The backing data source will be an Object from my model
An example of what I need is given in the attached image
Thanks,
Bojan