hi,
what is we have to do to distribute Telerik Reporting assemblies and merge them into a single
EXE or DLL that can be used by the custom application.
thx in advance,
Regards

I am using Telerik reporting in a VB.net app. The reports each preview correctly, but if I print directly to a printer, it comes up blank. To PDF it saves a blank file. To a physical printer, it goes through the motions with the driver, but nothing is actually printed.
Telerik.Reporting.dll is version 15.0.21.326.
What am I missing?
code below:
Public Sub SaveReport(ByVal myreport As Telerik.Reporting.Report, filename As String)
Dim reportProcessor As Telerik.Reporting.Processing.ReportProcessor = New Telerik.Reporting.Processing.ReportProcessor()
Dim instanceReportSource As Telerik.Reporting.InstanceReportSource = New Telerik.Reporting.InstanceReportSource()
instanceReportSource.ReportDocument = myreport
Dim renderingResult As Telerik.Reporting.Processing.RenderingResult = reportProcessor.RenderReport("PDF", instanceReportSource, Nothing)
Dim fs As FileStream = New FileStream(filename, FileMode.Create)
fs.Write(renderingResult.DocumentBytes, 0, renderingResult.DocumentBytes.Length)
fs.Close()
End Sub
Public Sub PrintReport(ByVal myreport As Telerik.Reporting.Report, ByVal Copies As Integer)
Hi, I need your help please, do you have any idea how can I make this kind of report.
in each page, let say i have 10 rows and i set 3 data per page. The report will show the max row number ("show 3 of 10 result." in the 1st page and for next page will show "show 6 of 10" )
is it possible? thank you
thank you
I am trying to get the month returned in a string in a report parameter. I currently have
Now().Month
But I suspect it is returning the number of the month because the field is blank when I run the report, which is strange because the other report parameter is
Now().Year

Hello Team,
I am trying to generate a new report in .net core using Telereik Reporting Tool with Object data source. I tried many sample code, by didnt work. Can you please help me how to create a report using object database. It would be greate i f you can provide me a working sample code
Thanks

Hello, I'd like to, using the Standalone Report Designer, Import an existing Visual Studio Report (.cs) and save it as a trdx.
I have seen the following links:
http://docs.telerik.com/reporting/import-report-wizard
and
http://docs.telerik.com/reporting/standalone-report-designer-import-clr-reports
They indicate it possible but the second link seems for a different interface than mine. (There is no " In the Open dialog window, select .NET Report Library from the file type combobox. ")
and following the first link leads to an Import Report Wizard but in the "available converters" there is only Crystal Reports. Also the file filter gives no option for extensions other than *.rpt.
Do I have to install/ download a .NET converter?
I have Report Designer Q3 2015.
Thanks,
-Jeff
Hi,
I upgraded my Telerik reporting version to the latest version.
I view reports using the Properties dialogue of a ReportViewer . all worked fine.
but after some reports, suddenly I get this error:
Invalid report type Exception has been thrown by the target of an invocation.
and I do not can see any reports. (all the reports , others too).
Yesterday I get this error all time. Today the reports worked fine' and suddenly I get this error again.
Can anyone shed any light as to the possible reasons why this might be happening?
Thanks
Chani
Hello there,
I am using C# .net Winforms Report.
I have a data set like this
{Code, $dollar}
{0, 100} {0.1 , 125}, {0.2, 127},
{1.2, 250},{1.4,210},
{2.0,250},{2.3,210},
{5.2 , 300}
I tried to make a simplest scatter plot with every dots connect by line. I do not want the category group because if I do, then I will be missing 4, and 6 in x axis. it will have 0, 0.1, 0.2, 1.2, 1.4, 2.0, 2.3, and 5.2 only which is categorized.
I want x's range to be fixed from 0 to 6 with equal space.
scatter plot cannot have series group but line graph requires series group.
I tried so many different ways but couldn't figure it out.
Can you show me some examples?