Telerik Forums
Reporting Forum
2 answers
157 views
Hi, I have a problem formatting the report. I set up column groups, but the next group always appears below the previous one. I attach picture for illustration. Is there any way to display the data side by side? Thank you
Vít
Top achievements
Rank 1
 answered on 19 Sep 2020
1 answer
148 views

Can i set any custom message for parameter. below message is displayed by default.

 

Missing or Invalid parameter value. Please input valid data for all parameters.

Is there any option to give a custom message.

 

Regards

Prakash

 

Todor
Telerik team
 answered on 17 Sep 2020
7 answers
2.4K+ views

Hi to all,

I'm trying to create a solution console that it has generate a DOCX file from my report.

I'm using this code, but on row 34 it gives me an error "DOCX rendering format is not available."

I have already add these dll:

  • DocumentFormat.OpenXml
  • Telerik.Reporting
  • Telerik.Reporting.OpenXmlRendering
01.public class ReportHelper
02.{
03.    public static Bundle SaveAsWord(string fileName, Bundle pBundle)
04.    {
05.        Bundle bundle = new Bundle();
06. 
07.        try
08.        {
09.            //Create new CultureInfo
10.            var cultureInfo = new System.Globalization.CultureInfo(pBundle.Get(2).ToString());
11. 
12.            // Set the language for static text (i.e. column headings, titles)
13.            System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;
14. 
15.            // Set the language for dynamic text (i.e. date, time, money)
16.            System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;
17. 
18.            Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
19. 
20.            // set any deviceInfo settings if necessary
21.            System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
22.             
23. 
24.            Telerik.Reporting.TypeReportSource typeReportSource = new Telerik.Reporting.TypeReportSource();
25. 
26.            // reportName is the Assembly Qualified Name of the report
27.            typeReportSource.TypeName = "MyReportName";
28.            typeReportSource.Parameters.Add("Par1", pBundle.Get(1).ToString());
29.            typeReportSource.Parameters.Add("Par2", pBundle.Get(3).ToString());
30.            typeReportSource.Parameters.Add("Par3", pBundle.Get(4).ToString());
31.            typeReportSource.Parameters.Add("Par4", pBundle.Get(5).ToString());
32.            typeReportSource.Parameters.Add("Par5", pBundle.Get(6).ToString());
33. 
34.            Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("DOCX", typeReportSource, deviceInfo);
35. 
36.            //string fileName = result.DocumentName + "." + result.Extension;
37.            string path = System.IO.Path.GetTempPath();
38.            string filePath = System.IO.Path.Combine(path, fileName);
39. 
40.            using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
41.            {
42.                fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
43.            }
44. 
45.            bundle.Add(1, true);
46.            bundle.Add(2, filePath);
47.        }
48.        catch (Exception ex)
49.        {
50.            bundle.Add(1, false);
51.            bundle.Add(2, ex.Message);
52.            bundle.Add(3, ex.StackTrace.ToString());
53.        }
54. 
55.        return bundle;
56.    }
57.}
Neli
Telerik team
 answered on 17 Sep 2020
3 answers
334 views

I want to be able to stop the execution of the ReportProcessor.PrintReport() and throw a custom error when the printer is unavailable (e.g: disconnected from the server) because instead of doing that the method is trying to find the printer and it freezes. if that's not possible a way to exit the method (timer?) would be good as well.

 

Regards,

 

Gaston.

 

Todor
Telerik team
 answered on 16 Sep 2020
3 answers
252 views

Hello

 

I am trying to integrate reports in my Winform application but visible I am missing a step:

My application is a Winform application using an EntityFramework to manage the data (stored in y SQLServer database)

I have created a form with a Reportviewer in my project

In visual studio I have created a report (named rptStartList.vb) that has the datasource : rptEntityDataSource [Telerik.Reporting.EntityDataSource]
and the entityDatasource as a proper connectionstring, context ad contextdatamember. The report displays correctly the underlying data in preview

Now I need to "associate" this report to the report Viewer. I have read everything I found, but have failed to understand, in particular I do not understand how to

"Add reference to the class library that contains your reports in the windows form application." found in : https://docs.telerik.com/reporting/winforms-report-viewer-manual-setup

and how to create this class library and what is in it

Can you guide me on how to procee, clearly I am missing a, probably simple, step ....

Thanks in advance

P.S. should you have a complete sample application with the same environment I would appreciate greatly

Neli
Telerik team
 answered on 16 Sep 2020
2 answers
1.0K+ views
Hi,

I have a table in report header which displays summary data.
I want the table not to be disabled when there is no summary data.
I have created a binding on table with [Property path = Visible] and [Expression =IIF(Count(1)>0,True,False)].
 It gives me the below error when i run the report.
An error has occurred while processing Table 'table1': Aggregate node 'Count(Const(1))' not found. 

I think the expression value is incorrect. What expression will return me the rowcount. so that if the rowcount = 0 then i can make visible property = false.
Your help will be appreciated.

Thanks.
Srinath. 
Richard
Top achievements
Rank 1
 answered on 15 Sep 2020
8 answers
800 views
Hi! Is there a sample that adds Export to XML from the report export menu? Thanks.
Eric R | Senior Technical Support Engineer
Telerik team
 answered on 15 Sep 2020
1 answer
80 views

Hello everyone,

I´m using the html box to list the general terms and condtions of a customer.

While doing so i noticed that the size of the number of the list item does not match the size of the text that follows.(see pic.)

Is there a possibility to set the size of the number of the list item to same es the following text?

(btw. if you use the size xx-small on a list item the designer crashes)

 

 

Neli
Telerik team
 answered on 15 Sep 2020
1 answer
165 views
Fontfallback does not work, see attachments. If I select the textbox, something better. Is there any solution?
Neli
Telerik team
 answered on 15 Sep 2020
32 answers
2.1K+ views
Does anyone know how to add a group page count and group page number to a report?  I know how to get the global page count, but I need a pageCount and PageNumber for each group
Neli
Telerik team
 answered on 15 Sep 2020
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?