I've got a Telerik report that was compiling and previewing just fine until I added the most recent data source, a SQL Server view that provides data to several of the crosstabs. The data source itself works fine; when I "configure" it in the Data Source section I can execute the query and return correct results. So I don't know if the data source is the problem, but as soon as I added the data source, changed the formulas and filters in the crosstabs to refer to them (instead of the old data source) and then tried to run the report, I got this error:
Exception has been thrown by the target of an invocation. Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "PDS.reports_13monthrollingweb.resources" was correctly embedded or linked into assembly "PDS" at compile time, or that all the satellite assemblies required are loadable and fully signed."
I'd be happy to do all that if I knew what it meant. :) How do I make sure the ".resources" file is correctly embedded into the solution ("PDS"), and/or what are satellite assemblies and how do I know if they are loadable and fully signed?
Thanks.
Addendum: Digging around in other reports, I notice they don't have SQL data sources listed in their .resx file. In this report, none of the other SQL data sources are in the .resx file, but the new one is (see attached). Should I just remove it? Why is it appearing there when the others aren't?
//set the datasource chart1.DataSource = this.sqlDataSource1; //COMMENT OUT THIS SECTION AND THE CHART LOOKS GOOD //add new xaxis series items chart1.PlotArea.XAxis.AutoScale = false; chart1.PlotArea.XAxis.AddRange(1, 7, 1); chart1.PlotArea.XAxis[0].TextBlock.Text = "12/1/10"; chart1.PlotArea.XAxis[1].TextBlock.Text = "12/5/10"; chart1.PlotArea.XAxis[2].TextBlock.Text = "12/10/10"; chart1.PlotArea.XAxis[3].TextBlock.Text = "12/15/10"; chart1.PlotArea.XAxis[4].TextBlock.Text = "12/20/10"; chart1.PlotArea.XAxis[5].TextBlock.Text = "12/25/10"; chart1.PlotArea.XAxis[6].TextBlock.Text = "12/30/10";   //add the series 1 ChartSeries seriesAvg = new ChartSeries(); seriesAvg.DataYColumn = "Average"; seriesAvg.Type = ChartSeriesType.Area; seriesAvg.DefaultLabelValue = ""; chart1.Series.Add(seriesAvg); //add the series 2 ChartSeries seriesMax = new ChartSeries(); seriesMax.DataYColumn = "Max"; seriesMax.Type = ChartSeriesType.Line; seriesMax.DefaultLabelValue = ""; chart1.Series.Add(seriesMax);Hello,
I am currently using Telerik reporting Q1-2009.  I have a report that prints fine when viewed in the ReportViewer.  When I implement the code to print the report directly to the printer  based on the following KB Article http://www.telerik.com/help/reporting/p_telerik_reporting_processing_reportprocessor_printcontroller.html it will go directly to the printer and not display the dialog box, however, the report itself prints the right and bottom margins off the pages is the best way to describe it.  The top and left margins appear to be ok, but the line spacing is also off a bit.  
I am assuming that it may be the difference between printing to printer and not using the adobe reader vs viewing in the viewer which is using the adobe reader and printing from there maintains the look.  If this is the case, how do I get it to print directly to the printer in the same format as when viewed and printed from the viewer. 
I am using ASP.NET VB code for the website.  This is a web application.
(in attachments ignore the 2 images with the dark gray border.  This was confusing as it was the background of my desktop when I captured the images.)
Doug