Dear Support,
I have a report that works with 3 different Cultures. With cultures in English and Spanish all seems to be working fine, but when we generate the report in Japan Culture, and we send it to print the print preview is not complete and if we send it to the printer it is also incomplete.
The report is also using a Japanese Font: "MS Pゴシック"
We were trying to watch what causes these problem and we got these results.
We cannot say that is a problem with the font because with English and Spanish Culture it generates correct.
We cannot say that is a problem with de Japan Culture because when we change the font to a default font or another Font (Tahoma, Arial) it generates correct.
It seems to be a problem when we use the Japan Culture with the Japanese Font.
Images: 1-ok.jpg, 2-ok.jpg, 3-ok.jpg Show that we generate a report with the Japanese Font but we changed by code the culture to English even we select Japan Culture to Generate.
Images: 1-wrong.jpg, 2-wrong.jpg, 3-wrong.jpg Show that we generate a report with the Japanese Font and Japan Culture and the report is not complete.
Thanks for your Help
            
            An unhandled exception was generated during the execution of the current
            web request. Information regarding the origin and location of the
            exception can be identified using the exception stack trace below.
             | 
        
            
            [InvalidOperationException: Attempting to get range {2,5}{1,1},Merged=False,Parent=Session Scoring[0], that intersects with an already merged range.]
   Telerik.Reporting.Excel97.Worksheet.GetRange(Int32 col, Int32 row, Int32 colSpan, Int32 rowSpan) +207
   Telerik.Reporting.ExcelRendering.Excel97.Worksheet.Telerik.Reporting.ExcelRendering.IWorksheet.GetRange(Int32 col, Int32 row, Int32 colSpan, Int32 rowSpan) +91
   Telerik.Reporting.ExcelRendering.RenderingItem.GetRange(IWorksheet worksheet, TableLayoutInfo layoutInfo) +467
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +80
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +170
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +170
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +170
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +170
   Telerik.Reporting.ExcelRendering.Section.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +76
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.Group.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +136
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.RenderingItemContainer.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +170
   Telerik.Reporting.ExcelRendering.Report.RenderInternal(IWorksheet worksheet, TableLayoutInfo layoutInfo) +837
   Telerik.Reporting.ExcelRendering.RenderingItem.Render(IWorksheet worksheet, TableLayoutInfo layoutInfo) +259
   Telerik.Reporting.ExcelRendering.Report.Render(IWorkbook workbook) +443
   Telerik.Reporting.ExcelRendering.Excel97.ExcelReport.Telerik.Reporting.Processing.IRenderingExtension.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback) +187
   Telerik.Reporting.Processing.ReportProcessor.Render(IList`1 reports, ExtensionInfo extensionInfo, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback) +1349
   Telerik.Reporting.Processing.ReportProcessor.RenderReport(String format, IReportDocument reportDocument, Hashtable deviceInfo, Hashtable renderingContext, CreateStream createStreamCallback) +587
   Telerik.ReportViewer.WebForms.ServerReport.Render(HttpResponse response, String format, Int32 pageIndex) +849
   Telerik.ReportViewer.WebForms.ReportExportOperation.PerformOperation(NameValueCollection urlQuery, HttpContext context) +135
   Telerik.ReportViewer.WebForms.HttpHandler.ProcessRequest(HttpContext context) +368
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +867
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +120
             | 
        
protected Telerik.ReportViewer.WebForms.ReportViewer MyReportViewer;
protected override void CreateChildControls()
{
MyReportViewer =
new ReportViewer();
MyReportViewer.ParametersAreaVisible =
false; // Tried this but nothing changed
Controls.Add(MyReportViewer);
}
protected override void Render(HtmlTextWriter output)
{
EnsureChildControls();
var LObjetDataSource = new Telerik.Reporting.ObjectDataSource();
LObjetDataSource.DataSource = PopulateDataView(); // Method returning the data in a DataView
Telerik.Reporting.
Report Rapport = new Report();
Rapport.DataSource = LObjetDataSource;
Rapport.ReportParameters.Clear();
// Tried this in order to avoid bad parameters issues
MyReportViewer.Report = Rapport;
MyReportViewer.RenderControl(output);
}Hi All,
I have run into a problem with the Telerik Reporting that I have bought (Q10 2010).
The problem is following:
While I run an Asp.Net application with a Telerik Report under the Windows Server 2008 and an Application pool with integrated managed pipeline mode set – I have an issue (see the Issue.jpg screenshot attached).
As soon as I changed from integrated to classic managed pipeline mode the report starts working fine (see the Image4.jpg screenshot attached).
Thanks to all.