Telerik Forums
Reporting Forum
1 answer
129 views

Hi all 

 

am getting this log error but not extra information but seems to be within telereik 

 

Message :Object reference not set to an instance of an object. Stack Trace :   at Telerik.Reporting.Writing.TextLineWriter.WriteContent(DocumentWriter writer, VisualElement element, ElementPageInfo pageInfo, IPageClip pageClip)     at Telerik.Reporting.Writing.ContentItemWriter.Write(DocumentWriter writer, VisualElement element, ElementPageInfo pageInfo)     at Telerik.Reporting.Processing.ProcessingElementVisitor.Visit(LayoutElement element)     at Telerik.Reporting.Writing.DocumentWriter.Telerik.Reporting.Writing.IWriter.WriteStartElement(VisualElement element, ElementPageInfo pageInfo)     at Telerik.Reporting.Paging.PageElementLayer.AddToPage(IPageHandler handler)     at Telerik.Reporting.Paging.PageElementManager.AddToPage(IPageHandler handler)     at Telerik.Reporting.Paging.PageCompositionBase.SendPhysicalPages()     at Telerik.Reporting.Paging.PageCompositionBase.OutputPage()     at Telerik.Reporting.Paging.PageCompositionBase.CreatePages()     at Telerik.Reporting.BaseRendering.RenderingExtensionBase.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback)     at Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)     at Telerik.ReportViewer.WebForms.ReportExportOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)     at Telerik.ReportViewer.WebForms.ReportExportOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext)     at Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride()     at Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.<>c__DisplayClass285_0.<ExecuteStepImpl>b__0()     at System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

Eric R | Senior Technical Support Engineer
Telerik team
 answered on 06 Nov 2020
5 answers
445 views

Their is multiple textbox whose vertical spacing remove and set border to some textbox for show some space in between two  then below text is cutoff.

and  I do not want to remove that boarder or want some space in between two how can I solve it ? and If some textboxes are visible false the donot want that empty space on report. Please Help me to solved it.

 

 

Mads
Telerik team
 answered on 06 Nov 2020
2 answers
321 views

I am looking to execute a stored procedure after a report has finished rendering. 

Scenrio:

Using HTML5 Report Viewer and dynamically passing the report to open in the viewer. Not all reports will execute a stored proc after report completes rendering.

If familiar with Oracle Reports this would mimic the functionality of an After Report Trigger..

Is there anyway using .net core C# code to do this in a library ?

Michael
Top achievements
Rank 1
 answered on 06 Nov 2020
2 answers
1.0K+ views

Hi,

In my angular program, I am using kendo-angular-upload to allow user upload multiple PDF files or images then uploaded file details (file name, extension, size, content type, file content) are save into database. The file contents are saved in byte array format.

I need a "Print All Files" button to combine all uploaded documents (can be combination of PDF files / images) then user can download / print in one click. So I am thinking to generate all uploaded document in one Telerik Report and user can view / download / print from there.

Below are my questions:

> Is there any way I can generate report from byte array? If can, kindly provide example.

> Is there any way I can combine multiple records of byte array into 1 report? If can, kindly provide example.

Thank you.

Todor
Telerik team
 answered on 06 Nov 2020
5 answers
258 views

Stand Alone Q2 2016

We need to include a value from the first data set record in the page header of reports.  In other report writers (Crystal) you siply put the field into the header and the value in the first record shows up file.

In Telerik it looks like we need to use pageExec and reference a scope.  I am using the following expression in a text field in the header and it is showing up in the report fine.  The scope "ReportHeaderName" is the label of another text field located in the table that is in our detail section. 

[=pageExec("ReportHeaderName",first(Fields.ReportHeaderName))]

The problem I am having is that the field does not get exported to Excel. 

How do I resolve the problem?

Neli
Telerik team
 answered on 06 Nov 2020
10 answers
1.1K+ views

Hi All, 

Format type in excel for the date and number fields is showing as 'General' and 'Custom'.

How to convert the excel format to 'Short Date' and 'Number' format type from report side.

Please find the attached files.

Thanks

Vikram

Todor
Telerik team
 answered on 06 Nov 2020
1 answer
247 views

Hello everyone,

i have some questions concerning the filter option in tables.

I used the filter on rows (table groups in group explorer) -I cannot find this feature anymore. Using filter on the Detail group (in the group explorer) don´t seem to work -i cannot get any result if i´m using it there.

Also my example file which has / had row filters implemented does not work anymore?

Adding a external group seems to have an effect on new row groups - but also adds new lines in the table which i don´t need?

Is this feature gone?

How can i get to filter rows?

Regards Alex

Neli
Telerik team
 answered on 04 Nov 2020
3 answers
284 views
How do I create a report book in a .net core 3.1 application. I've got single reports working and I tried to create a custom resolver, but the documentation doesn't seem to fully apply to .net core. It really shouldn't be this hard. I've got several reports working, I just want to put them into a single document based on several conditions.
Eric R | Senior Technical Support Engineer
Telerik team
 answered on 03 Nov 2020
1 answer
1.1K+ views

Hi,

 

I have created one Standalone report with an Object Person (Which contains properties Name, Number and DOB).

 

Then, I'm using below code to generate PDF from this report.

 

            var reportProcessor = new ReportProcessor();
            var deviceInfo = new System.Collections.Hashtable();

            var reportSource1 = new UriReportSource();
            reportSource1.Uri = "/report.trdp";
            var reportSource = new InstanceReportSource();
            var report = new Telerik.Reporting.Report();
            var objectDataSource1 = new Telerik.Reporting.ObjectDataSource();
            objectDataSource1.DataSource = new Person() { DOB = DateTime.Now, Number = 1293737, Name = "test" };
            objectDataSource1.Name = "PersonDataSet";
            report.DataSource = objectDataSource1;
            reportSource.ReportDocument = report;
            reportSource.ReportDocument.ReportSources.Append(reportSource1);

            RenderingResult result = reportProcessor.RenderReport("PDF", reportSource, 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);
            }
        }

 

But, It generates only empty report.

 

Can anyone help me to resolve this?

 

Thanks,

Aravindh 

Mads
Telerik team
 answered on 02 Nov 2020
3 answers
260 views
Hello people. Thanks for reading my post.

I am working for some time on a C# Windows Form app with Teleriks Reports as a part of it.

It worked some time, and now when i try to test it, i only get this error on the teleriks report, trying to load it, create it or even create it from another new project:


To prevent possible data loss before loading the designer, the following errors must be resolved:
1 Error
Why am I seeing this page?
Object reference not set to an instance of an object.
 
Instances of this error (1)
1.
at System.Drawing.Printing.PrinterSettings.GetModeField(ModeField field, Int16 defaultValue, IntPtr modeHandle)
at System.Drawing.Printing.PageSettings.get_Landscape()
at Telerik.Reporting.Drawing.PageSettings..ctor(PageSettings pageSettings, PrinterSettings printerSettings)
at Telerik.Reporting.Drawing.PageSettings.GetPrinterPageSettings()
at Telerik.Reporting.Drawing.PageSettings.get_DefaultPageSettings()
at Telerik.Reporting.Report..ctor()
 
Help with this error
 
Forum posts about this error
 
Eric R | Senior Technical Support Engineer
Telerik team
 answered on 30 Oct 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?