Telerik Forums
Reporting Forum
0 answers
121 views
We are using ATT USB devices to do invoices remotely.  The page loads fine but when data is requested from the drop down lists it hangs frequently.  If I tether a phone and do the same thing, it functions correctly.  Are there any known issues with ATT, ATT Communicator, or specific devices?  Is anyone else accessing Telerik using a wireless device? If you are, what device, service, etc are you using?
Matt
Top achievements
Rank 1
 asked on 28 Oct 2011
1 answer
149 views
I have developed three reports within a class library which I now need to localize.  The localization support in Telerik Reporting is great, by the way.  It's very useful to be able to switch between languages in the designer and update the different languages in situ.

However, I am having a problem with one of my three reports.  When I try to set the 'Localizable' property to 'true' in the designer, I just get an hourglass for about 5 seconds, and then a 'Property value is not valid' error pops up.  Its detail says 'Object reference not set to an instance of an object'.  The report works fine in every other way.

I've rebooted my system and run the Telerik Reports upgrade wizard, but to no avail.  I am using v Q3 2010.  Can anyone offer any suggestions as to what else I can try?

Michael
Steve
Telerik team
 answered on 28 Oct 2011
1 answer
81 views
Hi,

I've been testing your latest Telerik Reporting - Silverlight Report Viewer (trial version).

In video - "Using Parameterized Queries in Telerik Reporting with the SqlDataSource Component" - the report viewer creates an input parameters area but I want to build my own input parameters area and passing the input values from silverlight to report is it possible?

Thanks,
Andreia
Steve
Telerik team
 answered on 28 Oct 2011
3 answers
382 views
I'm new to this, so this could be a setup problem or a user problem. I'm trying out my first app with a Telerik report. I want to add the report viewer to my windows form. When I look into the Telerik section in the Toolbox, I see 5 items listed, Pointer, and 4 instances of ReportBook. Where do I find the ReportViewer? An image of my screen is attached below.

I thought maybe it was due to references, so I added all that could make any sense. I tried adding a report to the project and that didn't help.

Any suggestions?

Thanks,
Bernie
Steve
Telerik team
 answered on 28 Oct 2011
3 answers
1.1K+ views
I am setting up a Telerik Reporting Class Library in a WinForms Solution, with Telerik Reporting Q2 2011. Following the Best Practices, I am using a sqlDataSource, and have used the wizard to setup the connection and SQL statements.

The problem is that the report editor has set the connection string in the report designer file like so:

Report1.Designer.cs
this.sqlDataSource1.ConnectionString = "ReportsProject.Properties.Settings.ReportsConnectionString";

It is a String of the Report Project Settings Variable, not a Reference to the Report Project Settings Variable. This works fine for designing the report within the Reports Project, however, a ReportViewer in a Forms Project will produce a run-time error.

Error Output Produced:
  • Telerik.Reporting.Processing.Data.SqlDataSourceException: Unable to establish a connection to the database. Please, verify that your connection string is valid. In case you use a named connection string from the application configuration file, make sure the name is correct and the connection string settings are present in the configuration file of your application. ---> System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0.

I have attempted to rectify the error by copying the Connection String Setting from the Report Project into the Forms Project. I assume this doesn't work as the Connection String is trying to reference the Private Connection String in the Report Project.

I now set the Connection String in the Report Constructor to the Settings Value. After this is added the Forms Project displays the report without error.

Report1.cs
this.sqlDataSource1.ConnectionString = ReportsProject.Properties.Settings.Default.ReportsConnectionString;

 I am unsure why I am required to reference the setting through the "Settings.Default" object, where the designer sets a string that references straight from the "Settings" object. (edit: the report reads the app.config file, it doesn't use the settings object)

Is there a work around so I won't need to set the connection string in the constructor as well as the designer? 
Engineering
Top achievements
Rank 1
 answered on 27 Oct 2011
3 answers
750 views
Hi,

I'm investigating the possibility of using Telerik Reporting for a solution I'm developing.

Part of the report (invoice) needs to be re sizable to keep things looking as the client says 'professional' I can do this in one of two ways:
a) Duplicate the report for each font size I want to replicate
b) Alter the font size of specific report areas at runtime based injected parameter (conditional formating) or via the code that launches the report (instantiate a report object and twiddle with it's object model)

Obviously I would like to avoid option a as it generates duplication in the code :(

Is option b possible using either conditional formating or via tweaking of the report object?
Steve
Telerik team
 answered on 27 Oct 2011
2 answers
127 views
Greetings,
   I am trying to display two dates in a single text box, along with other text (e.g., Reporting from: 10/20/2011 11:00 AM to 10/20/2011 12:45 PM), based on fields returned from an SQL query. The date fields are returned as SQL DateTime types. When breaking down the DateTime field for minutes under 10 (using the sub options presented in the Fields display of Edit Expression), I am only getting one digit to display. Is there a way to force that to format to 2 digits, have the leading zero display? If I put just the datetime field in a text box then the Format {0:f} (or other choices) seems to work, but once it's a mixed hard-code text and field value the overall Formatting doesn't work, not recognizing the datetime part vs the rest of the text in the Edit Expression list. [The main purpose in breaking this all up is to avoid the Seconds being displayed.]

What's in my "Edit Expression" window is:
Reporting From: {Fields.StartDate.DayOfWeek} {Fields.StartDate.Month}/{Fields.StartDate.Day}/{Fields.StartDate.Year} {Fields.StartDate.Hour}:{Fields.StartDate.Minute} {Fields.StartDate.Kind} to ...

What I get is:
Reporting from: Thursday 10/11/2011 11:0 Unspecified to ...

Also, the Fields.StartDate.Kind comes back "Unspecified", is there a simple error I'm making there too? Was expecting AM or PM.

Regards
Dave Clements

David
Top achievements
Rank 1
 answered on 27 Oct 2011
1 answer
47 views
Hi,

I have an existing WCF service (not telerik reporting service) and a Silverlight application that references that service.
I need to use this existing service to retrieve reports to the silverlight client application.

I tried checking your demo solution which comes with the installation but it doesn't seem to work.

When I call asynchronously  to the wcf service from the SL application, I need the service to create a report based on an SQL Query it receives as a parameter and the create a report and send it back to the SL application.

How do I do that?
Steve
Telerik team
 answered on 27 Oct 2011
1 answer
85 views
I have a teble which is displaying some kind of master detail.

Each category can have a number of subcategories. When I display the report then the header of it is in on the first page and the detail is on the next page. Is there any way that the groups that have to break on the next page have the header on both pages.

For example
-Group
     Sub 1
     Sub 2
-Group 2
     Sub 3
---------Next Page
-Group 2
     Sub 4

Thanks

here is the code:
namespace Reports
{
    partial class AReport
    {
        #region Component Designer generated code
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.TableGroup tableGroup1 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup2 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup3 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup4 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup5 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup6 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup7 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup8 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup9 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup10 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup11 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup12 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup13 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup14 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup15 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup16 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup17 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup18 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup19 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup20 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup21 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup22 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup23 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup24 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup25 = new Telerik.Reporting.TableGroup();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TNAnalysisReport));
            Telerik.Reporting.TableGroup tableGroup26 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup27 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup28 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup29 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup30 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup31 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup32 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup33 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup34 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup35 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup36 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup37 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup38 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup39 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup40 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter2 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter3 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter4 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter5 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter6 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter7 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter8 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter9 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter10 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter11 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter12 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter13 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter14 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter15 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter16 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter17 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter18 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter19 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule2 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.DescendantSelector descendantSelector1 = new Telerik.Reporting.Drawing.DescendantSelector();
            Telerik.Reporting.Drawing.StyleRule styleRule3 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.DescendantSelector descendantSelector2 = new Telerik.Reporting.Drawing.DescendantSelector();
            this.textBox70 = new Telerik.Reporting.TextBox();
            this.textBox36 = new Telerik.Reporting.TextBox();
            this.textBox69 = new Telerik.Reporting.TextBox();
            this.textBox68 = new Telerik.Reporting.TextBox();
            this.textBox32 = new Telerik.Reporting.TextBox();
            this.textBox67 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox38 = new Telerik.Reporting.TextBox();
            this.textBox37 = new Telerik.Reporting.TextBox();
            this.textBox25 = new Telerik.Reporting.TextBox();
            this.textBox19 = new Telerik.Reporting.TextBox();
            this.textBox34 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox21 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.crosstab1 = new Telerik.Reporting.Crosstab();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox13 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.textBox22 = new Telerik.Reporting.TextBox();
            this.textBox26 = new Telerik.Reporting.TextBox();
            this.textBox33 = new Telerik.Reporting.TextBox();
            this.textBox39 = new Telerik.Reporting.TextBox();
            this.textBox71 = new Telerik.Reporting.TextBox();
            this.textBox72 = new Telerik.Reporting.TextBox();
            this.textBox73 = new Telerik.Reporting.TextBox();
            this.textBox74 = new Telerik.Reporting.TextBox();
            this.textBox75 = new Telerik.Reporting.TextBox();
            this.textBox76 = new Telerik.Reporting.TextBox();
            this.textBox77 = new Telerik.Reporting.TextBox();
            this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.textBox29 = new Telerik.Reporting.TextBox();
            this.textBox31 = new Telerik.Reporting.TextBox();
            this.textBox30 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.table3 = new Telerik.Reporting.Table();
            this.textBox17 = new Telerik.Reporting.TextBox();
            this.sqlDataSource2 = new Telerik.Reporting.SqlDataSource();
            this.reportHeaderSection1 = new Telerik.Reporting.ReportHeaderSection();
            this.textBox42 = new Telerik.Reporting.TextBox();
            this.textBox47 = new Telerik.Reporting.TextBox();
            this.textBox49 = new Telerik.Reporting.TextBox();
            this.textBox50 = new Telerik.Reporting.TextBox();
            this.textBox51 = new Telerik.Reporting.TextBox();
            this.textBox52 = new Telerik.Reporting.TextBox();
            this.table2 = new Telerik.Reporting.Table();
            this.textBox57 = new Telerik.Reporting.TextBox();
            this.textBox59 = new Telerik.Reporting.TextBox();
            this.textBox61 = new Telerik.Reporting.TextBox();
            this.sqlDataSource3 = new Telerik.Reporting.SqlDataSource();
            this.textBox44 = new Telerik.Reporting.TextBox();
            this.table1 = new Telerik.Reporting.Table();
            this.textBox46 = new Telerik.Reporting.TextBox();
            this.textBox53 = new Telerik.Reporting.TextBox();
            this.textBox54 = new Telerik.Reporting.TextBox();
            this.textBox56 = new Telerik.Reporting.TextBox();
            this.textBox58 = new Telerik.Reporting.TextBox();
            this.textBox60 = new Telerik.Reporting.TextBox();
            this.textBox62 = new Telerik.Reporting.TextBox();
            this.textBox64 = new Telerik.Reporting.TextBox();
            this.textBox23 = new Telerik.Reporting.TextBox();
            this.textBox28 = new Telerik.Reporting.TextBox();
            this.textBox35 = new Telerik.Reporting.TextBox();
            this.group1 = new Telerik.Reporting.Group();
            this.groupFooterSection1 = new Telerik.Reporting.GroupFooterSection();
            this.groupHeaderSection1 = new Telerik.Reporting.GroupHeaderSection();
            this.textBox2 = new Telerik.Reporting.TextBox();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // textBox70
            //
            this.textBox70.Name = "textBox70";
            this.textBox70.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.0956192016601562D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox70.StyleName = "";
            //
            // textBox36
            //
            this.textBox36.Name = "textBox36";
            this.textBox36.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7811750173568726D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox36.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox36.Style.BorderWidth.Default = new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox36.StyleName = "";
            //
            // textBox69
            //
            this.textBox69.Name = "textBox69";
            this.textBox69.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.1906330585479736D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox69.StyleName = "";
            //
            // textBox68
            //
            this.textBox68.Name = "textBox68";
            this.textBox68.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.6933348178863525D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox68.Style.Font.Bold = true;
            this.textBox68.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox68.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox68.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox68.StyleName = "";
            this.textBox68.Value = "=IIf(Fields.AIsAutoFail=0,\'No\',\'Yes\')";
            //
            // textBox32
            //
            this.textBox32.Name = "textBox32";
            this.textBox32.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.29104164242744446D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox32.Style.Font.Bold = true;
            this.textBox32.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox32.StyleName = "";
            //
            // textBox67
            //
            this.textBox67.Name = "textBox67";
            this.textBox67.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.79374593496322632D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox67.Style.Font.Bold = true;
            this.textBox67.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox67.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox67.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox67.StyleName = "";
            this.textBox67.Value = "=Fields.APoints";
            //
            // textBox7
            //
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(4.2862458229064941D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox7.Style.Font.Bold = true;
            this.textBox7.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox7.Style.Padding.Top = new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.textBox7.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox7.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox7.StyleName = "";
            this.textBox7.Value = "=Fields.AttributeText";
            //
            // textBox38
            //
            this.textBox38.Name = "textBox38";
            this.textBox38.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.0956192016601562D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox38.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox38.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox38.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox38.StyleName = "";
            this.textBox38.Value = "=Fields.ScoringModeText";
            //
            // textBox37
            //
            this.textBox37.Name = "textBox37";
            this.textBox37.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7811750173568726D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox37.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox37.Style.BorderWidth.Default = new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox37.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox37.StyleName = "";
            //
            // textBox25
            //
            this.textBox25.Name = "textBox25";
            this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.46875321865081787D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox25.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox25.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox25.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox25.StyleName = "";
            this.textBox25.Value = "=Fields.TotalEvals";
            //
            // textBox19
            //
            this.textBox19.Name = "textBox19";
            this.textBox19.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.66666722297668457D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox19.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox19.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox19.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox19.StyleName = "";
            this.textBox19.Value = "=IIf(Fields.DIsAutoFail=0,\'No\',\'Yes\')";
            //
            // textBox34
            //
            this.textBox34.Name = "textBox34";
            this.textBox34.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.11458326131105423D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox34.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox34.StyleName = "";
            //
            // textBox11
            //
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.31249803304672241D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox11.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox11.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox11.StyleName = "";
            this.textBox11.Value = "=Fields.DPoints";
            //
            // textBox6
            //
            this.textBox6.Format = "{0}";
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.5833333730697632D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox6.Style.Font.Bold = false;
            this.textBox6.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox6.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox6.Value = "=Fields.DefinitionText";
            //
            // textBox21
            //
            this.textBox21.Name = "textBox21";
            this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.1041649654507637D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox21.Style.Font.Bold = true;
            this.textBox21.StyleName = "";
            //
            // textBox3
            //
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.264583557844162D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.481230229139328D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox3.Style.Font.Bold = true;
            this.textBox3.StyleName = "";
            this.textBox3.Value = "";
            //
            // detail
            //
            this.detail.Height = new Telerik.Reporting.Drawing.Unit(0.57908689975738525D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.crosstab1});
            this.detail.KeepTogether = true;
            this.detail.Name = "detail";
            this.detail.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.detail.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.detail.Style.Font.Name = "Tahoma";
            //
            // crosstab1
            //
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.8034007549285889D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7981112003326416D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.crosstab1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.crosstab1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.crosstab1.Body.SetCellContent(1, 0, this.textBox4);
            this.crosstab1.Body.SetCellContent(1, 1, this.textBox13);
            this.crosstab1.Body.SetCellContent(1, 2, this.textBox16);
            this.crosstab1.Body.SetCellContent(1, 3, this.textBox22);
            this.crosstab1.Body.SetCellContent(1, 4, this.textBox26);
            this.crosstab1.Body.SetCellContent(1, 5, this.textBox33);
            this.crosstab1.Body.SetCellContent(1, 6, this.textBox39);
            this.crosstab1.Body.SetCellContent(0, 0, this.textBox71);
            this.crosstab1.Body.SetCellContent(0, 1, this.textBox72);
            this.crosstab1.Body.SetCellContent(0, 2, this.textBox73);
            this.crosstab1.Body.SetCellContent(0, 3, this.textBox74);
            this.crosstab1.Body.SetCellContent(0, 4, this.textBox75);
            this.crosstab1.Body.SetCellContent(0, 5, this.textBox76);
            this.crosstab1.Body.SetCellContent(0, 6, this.textBox77);
            tableGroup1.Name = "ColumnGroup";
            tableGroup2.Name = "Group2";
            tableGroup3.Name = "Group3";
            tableGroup4.Name = "Group4";
            tableGroup5.Name = "Group5";
            tableGroup6.Name = "Group8";
            tableGroup7.Name = "Group9";
            this.crosstab1.ColumnGroups.Add(tableGroup1);
            this.crosstab1.ColumnGroups.Add(tableGroup2);
            this.crosstab1.ColumnGroups.Add(tableGroup3);
            this.crosstab1.ColumnGroups.Add(tableGroup4);
            this.crosstab1.ColumnGroups.Add(tableGroup5);
            this.crosstab1.ColumnGroups.Add(tableGroup6);
            this.crosstab1.ColumnGroups.Add(tableGroup7);
            this.crosstab1.ColumnHeadersPrintOnEveryPage = true;
            this.crosstab1.DataSource = this.sqlDataSource1;
            this.crosstab1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox4,
            this.textBox13,
            this.textBox16,
            this.textBox22,
            this.textBox26,
            this.textBox33,
            this.textBox39,
            this.textBox71,
            this.textBox72,
            this.textBox73,
            this.textBox74,
            this.textBox75,
            this.textBox76,
            this.textBox77,
            this.textBox3,
            this.textBox7,
            this.textBox67,
            this.textBox32,
            this.textBox68,
            this.textBox69,
            this.textBox36,
            this.textBox70,
            this.textBox21,
            this.textBox6,
            this.textBox11,
            this.textBox34,
            this.textBox19,
            this.textBox25,
            this.textBox37,
            this.textBox38});
            this.crosstab1.KeepTogether = true;
            this.crosstab1.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.0042416253127157688D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(7.8837074397597462E-05D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.crosstab1.Name = "crosstab1";
            tableGroup16.Name = "Group24";
            tableGroup16.ReportItem = this.textBox70;
            tableGroup15.ChildGroups.Add(tableGroup16);
            tableGroup15.Name = "Group14";
            tableGroup15.ReportItem = this.textBox36;
            tableGroup14.ChildGroups.Add(tableGroup15);
            tableGroup14.Name = "Group23";
            tableGroup14.ReportItem = this.textBox69;
            tableGroup13.ChildGroups.Add(tableGroup14);
            tableGroup13.Name = "Group22";
            tableGroup13.ReportItem = this.textBox68;
            tableGroup12.ChildGroups.Add(tableGroup13);
            tableGroup12.Name = "Group10";
            tableGroup12.ReportItem = this.textBox32;
            tableGroup11.ChildGroups.Add(tableGroup12);
            tableGroup11.Name = "Group21";
            tableGroup11.ReportItem = this.textBox67;
            tableGroup10.ChildGroups.Add(tableGroup11);
            tableGroup10.Name = "Group1";
            tableGroup10.ReportItem = this.textBox7;
            tableGroup25.Name = "Group15";
            tableGroup25.ReportItem = this.textBox38;
            tableGroup24.ChildGroups.Add(tableGroup25);
            tableGroup24.Name = "Group16";
            tableGroup24.ReportItem = this.textBox37;
            tableGroup23.ChildGroups.Add(tableGroup24);
            tableGroup23.Name = "Group17";
            tableGroup23.ReportItem = this.textBox25;
            tableGroup22.ChildGroups.Add(tableGroup23);
            tableGroup22.Name = "Group13";
            tableGroup22.ReportItem = this.textBox19;
            tableGroup21.ChildGroups.Add(tableGroup22);
            tableGroup21.Name = "Group12";
            tableGroup21.ReportItem = this.textBox34;
            tableGroup20.ChildGroups.Add(tableGroup21);
            tableGroup20.Name = "Group11";
            tableGroup20.ReportItem = this.textBox11;
            tableGroup19.ChildGroups.Add(tableGroup20);
            tableGroup19.Name = "RowGroup";
            tableGroup19.ReportItem = this.textBox6;
            tableGroup18.ChildGroups.Add(tableGroup19);
            tableGroup18.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("=Fields.DefinitionID")});
            tableGroup18.Name = "DefinitionText";
            tableGroup17.ChildGroups.Add(tableGroup18);
            tableGroup17.Name = "Group6";
            tableGroup17.ReportItem = this.textBox21;
            tableGroup9.ChildGroups.Add(tableGroup10);
            tableGroup9.ChildGroups.Add(tableGroup17);
            tableGroup9.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("=Fields.AttributeID")});
            tableGroup9.Name = "AttributeText";
            tableGroup8.ChildGroups.Add(tableGroup9);
            tableGroup8.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("=Fields.StandardID")});
            tableGroup8.Name = "StandardID";
            tableGroup8.ReportItem = this.textBox3;
            tableGroup8.Sortings.AddRange(new Telerik.Reporting.Data.Sorting[] {
            new Telerik.Reporting.Data.Sorting("=Fields.StandardID", Telerik.Reporting.Data.SortDirection.Asc)});
            this.crosstab1.RowGroups.Add(tableGroup8);
            this.crosstab1.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(25.997888565063477D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.481230229139328D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.crosstab1.NeedDataSource += new System.EventHandler(this.DetailEvaluationReport_NeedDataSource);
            //
            // textBox4
            //
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.71000033617019653D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox4.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox4.Value = "=IIF(Fields.ScoringModeTypeReport=4,Fields.Zero+\" (\"+Format(\'{0:N0}\',Fields.ZeroP" +
    "er)+\"%)\",Fields.NO+\" (\"+Format(\'{0:N0}\',Fields.NoPer)+\"%)\")";
            //
            // textBox13
            //
            this.textBox13.Name = "textBox13";
            this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70791780948638916D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19373022019863129D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox13.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox13.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox13.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox13.StyleName = "";
            this.textBox13.Value = resources.GetString("textBox13.Value");
            //
            // textBox16
            //
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox16.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox16.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox16.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox16.StyleName = "";
            this.textBox16.Value = resources.GetString("textBox16.Value");
            //
            // textBox22
            //
            this.textBox22.Name = "textBox22";
            this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox22.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox22.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox22.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox22.StyleName = "";
            this.textBox22.Value = "= IIf(Fields.FourExist=1,IIf(Fields.ScoringModeTypeReport=4,Fields.Three+\" (\"+For" +
    "mat(\'{0:N0}\',Fields.ThreePer)+\"%)\",\' \'),IIf(Fields.ThreeExist=1,Fields.[N/A],\' \'" +
    "))\r\n\r\n\r\n\r\n\r\n\r\n";
            //
            // textBox26
            //
            this.textBox26.Name = "textBox26";
            this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox26.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox26.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox26.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox26.StyleName = "";
            this.textBox26.Value = "=IIf(Fields.ScoringModeTypeReport=4,Fields.Four+\" (\"+Format(\'{0:N0}\',Fields.FourP" +
    "er)+\"%)\",\" \")";
            //
            // textBox33
            //
            this.textBox33.Name = "textBox33";
            this.textBox33.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox33.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox33.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox33.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox33.StyleName = "";
            this.textBox33.Value = "=IIf(Fields.FourExist=1,IIf(Fields.ScoringModeTypeReport=4,Fields.Five+\" (\"+CInt(" +
    "Fields.FivePer)+\"%)\",Fields.Yes+\" (\"+Format(\'{0:N0}\',Fields.YesPer)+\"%)\"),\" \")\r\n" +
    "\r\n\r\n\r\n\r\n\r\n";
            //
            // textBox39
            //
            this.textBox39.Name = "textBox39";
            this.textBox39.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19373023509979248D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox39.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox39.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox39.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox39.StyleName = "";
            this.textBox39.Value = "=IIf(Fields.FourExist=1,IIf(Fields.ScoringModeTypeReport=1,\' \',IIf(Fields.Scoring" +
    "ModeTypeReport=5,\' \',Fields.[N/A])),\' \')";
            //
            // textBox71
            //
            this.textBox71.Name = "textBox71";
            this.textBox71.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.8034007549285889D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox71.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox71.StyleName = "";
            this.textBox71.Value = "";
            //
            // textBox72
            //
            this.textBox72.Name = "textBox72";
            this.textBox72.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7981112003326416D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox72.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox72.StyleName = "";
            //
            // textBox73
            //
            this.textBox73.Name = "textBox73";
            this.textBox73.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox73.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox73.StyleName = "";
            //
            // textBox74
            //
            this.textBox74.Name = "textBox74";
            this.textBox74.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox74.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox74.StyleName = "";
            //
            // textBox75
            //
            this.textBox75.Name = "textBox75";
            this.textBox75.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox75.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox75.StyleName = "";
            //
            // textBox76
            //
            this.textBox76.Name = "textBox76";
            this.textBox76.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox76.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox76.StyleName = "";
            //
            // textBox77
            //
            this.textBox77.Name = "textBox77";
            this.textBox77.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999998331069946D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.28749999403953552D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox77.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox77.StyleName = "";
            //
            // sqlDataSource1
            //
            this.sqlDataSource1.ConnectionString = "Aspire";
            this.sqlDataSource1.Name = "sqlDataSource1";
            this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
            new Telerik.Reporting.SqlDataSourceParameter("@StandardID", System.Data.DbType.Int32, "=Parameters.StandardID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@UnitID", System.Data.DbType.Int32, "=Parameters.UnitID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@TeamID", System.Data.DbType.Int32, "=Parameters.TeamID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@UserID", System.Data.DbType.Int32, "=Parameters.UserID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@FromDate", System.Data.DbType.Date, "= CDate(Parameters.DateFrom.Value)"),
            new Telerik.Reporting.SqlDataSourceParameter("@ToDate", System.Data.DbType.Date, "= CDate(Parameters.DateTo.Value)"),
            new Telerik.Reporting.SqlDataSourceParameter("@CategoryID", System.Data.DbType.Int32, "=Parameters.CategoryID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@IsEvalDate", System.Data.DbType.Int32, "=Parameters.IsEvalDate.Value")});
            this.sqlDataSource1.SelectCommand = "up_TrainingNeedAnalysis_Final";
            this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
            //
            // pageFooterSection1
            //
            this.pageFooterSection1.Height = new Telerik.Reporting.Drawing.Unit(0.27708128094673157D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox29,
            this.textBox31,
            this.textBox30});
            this.pageFooterSection1.Name = "pageFooterSection1";
            this.pageFooterSection1.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            //
            // textBox29
            //
            this.textBox29.Format = "{0:f}";
            this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.0041666030883789062D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.05000000074505806D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox29.Name = "textBox29";
            this.textBox29.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.5957546234130859D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.22708098590373993D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox29.Style.Font.Name = "Tahoma";
            this.textBox29.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox29.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox29.Value = "= Now()";
            //
            // textBox31
            //
            this.textBox31.Format = "{0:dd MMM yyyy}";
            this.textBox31.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(8.0873489379882812D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.05000000074505806D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox31.Name = "textBox31";
            this.textBox31.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.602611780166626D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.20000012218952179D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox31.Style.Font.Name = "Tahoma";
            this.textBox31.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox31.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox31.Value = "Page {PageNumber} of {PageCount}";
            //
            // textBox30
            //
            this.textBox30.Format = "{0:f}";
            this.textBox30.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.5999999046325684D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.05000000074505806D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox30.Name = "textBox30";
            this.textBox30.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.4872698783874512D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.227081298828125D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox30.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox30.Style.Font.Name = "Tahoma";
            this.textBox30.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox30.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox30.Value = "=Parameters.TenantName.Value";
            //
            // textBox18
            //
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.2484989166259766D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.3500000536441803D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox18.Value = "= Fields.Score";
            //
            // table3
            //
            this.table3.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.2484989166259766D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table3.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.3500000536441803D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table3.Body.SetCellContent(0, 0, this.textBox18);
            this.table3.ColumnGroups.Add(tableGroup26);
            this.table3.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox18});
            this.table3.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.6082141399383545D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(3.6999607086181641D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.table3.Name = "table3";
            tableGroup27.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("")});
            tableGroup27.Name = "DetailGroup";
            this.table3.RowGroups.Add(tableGroup27);
            this.table3.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.2484989166259766D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.3500000536441803D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.table3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.table3.Style.Padding.Left = new Telerik.Reporting.Drawing.Unit(0.05000000074505806D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.table3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            //
            // textBox17
            //
            this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(4.0999999046325684D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(2.4999606609344482D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox17.Name = "textBox17";
            this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.7000001072883606D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.20000012218952179D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox17.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            this.textBox17.Value = "textBox17";
            //
            // sqlDataSource2
            //
            this.sqlDataSource2.ConnectionString = "Aspire";
            this.sqlDataSource2.Name = "sqlDataSource2";
            this.sqlDataSource2.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
            new Telerik.Reporting.SqlDataSourceParameter("@StandardID", System.Data.DbType.Int32, "=Parameters.StandardID.Value")});
            this.sqlDataSource2.SelectCommand = "up_GetScoringModeDetails";
            this.sqlDataSource2.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
            //
            // reportHeaderSection1
            //
            this.reportHeaderSection1.Height = new Telerik.Reporting.Drawing.Unit(1.6000000238418579D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.reportHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox42,
            this.textBox47,
            this.textBox49,
            this.textBox50,
            this.textBox51,
            this.textBox52,
            this.table2});
            this.reportHeaderSection1.Name = "reportHeaderSection1";
            this.reportHeaderSection1.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.reportHeaderSection1.Style.Font.Name = "Tahoma";
            this.reportHeaderSection1.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            //
            // textBox42
            //
            this.textBox42.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.0041666030883789062D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.099999986588954926D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox42.Name = "textBox42";
            this.textBox42.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(10.685793876647949D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.30000004172325134D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox42.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(121)))), ((int)(((byte)(191)))));
            this.textBox42.Style.Font.Bold = true;
            this.textBox42.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(16D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox42.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox42.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox42.Value = "= Parameters.lblTNAHeader.Value";
            //
            // textBox47
            //
            this.textBox47.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.18999999761581421D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(1D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox47.Name = "textBox47";
            this.textBox47.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.6999211311340332D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox47.Style.Font.Bold = false;
            this.textBox47.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox47.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox47.Value = "= Parameters.lblDateRange.Value +\":\"";
            //
            // textBox49
            //
            this.textBox49.CanShrink = true;
            this.textBox49.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.18999999761581421D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.699999988079071D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox49.Name = "textBox49";
            this.textBox49.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.6999210119247437D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox49.Style.Font.Bold = false;
            this.textBox49.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox49.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox49.Value = "= Parameters.lblStandard.Value+\":\"";
            //
            // textBox50
            //
            this.textBox50.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(1.9299999475479126D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.699999988079071D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox50.Name = "textBox50";
            this.textBox50.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(6.8099226951599121D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox50.Style.Font.Bold = true;
            this.textBox50.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox50.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox50.Value = "= Parameters.StandardName.Value";
            //
            // textBox51
            //
            this.textBox51.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(1.9299999475479126D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(1.2937500476837158D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox51.Name = "textBox51";
            this.textBox51.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.2696888446807861D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox51.Style.Font.Bold = true;
            this.textBox51.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox51.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox51.Value = "= Parameters.CategoryName.Value";
            //
            // textBox52
            //
            this.textBox52.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.18999999761581421D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(1.2899999618530273D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox52.Name = "textBox52";
            this.textBox52.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.6999210119247437D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox52.Style.Font.Bold = false;
            this.textBox52.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox52.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox52.Value = "{Parameters.lblCategory.Value}:";
            //
            // table2
            //
            this.table2.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.1083332300186157D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table2.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(0.26388955116271973D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table2.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.3993057012557983D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table2.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.21810118854045868D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table2.Body.SetCellContent(0, 0, this.textBox57);
            this.table2.Body.SetCellContent(0, 1, this.textBox59);
            this.table2.Body.SetCellContent(0, 2, this.textBox61);
            this.table2.ColumnGroups.Add(tableGroup28);
            this.table2.ColumnGroups.Add(tableGroup29);
            this.table2.ColumnGroups.Add(tableGroup30);
            this.table2.DataSource = this.sqlDataSource3;
            this.table2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox57,
            this.textBox59,
            this.textBox61});
            this.table2.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(1.9299999475479126D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.983982264995575D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.table2.Name = "table2";
            tableGroup31.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("")});
            tableGroup31.Name = "DetailGroup";
            this.table2.RowGroups.Add(tableGroup31);
            this.table2.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.7715284824371338D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.21810118854045868D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.table2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            //
            // textBox57
            //
            this.textBox57.Format = "{0:dd MMM yyyy}";
            this.textBox57.Name = "textBox57";
            this.textBox57.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.1083332300186157D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.21810118854045868D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox57.Style.Font.Bold = true;
            this.textBox57.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox57.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox57.Value = "=IsNull(Parameters.DateFrom.Value,Fields.MinDate)";
            //
            // textBox59
            //
            this.textBox59.Name = "textBox59";
            this.textBox59.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.263889342546463D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.21810118854045868D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox59.Style.Font.Bold = false;
            this.textBox59.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox59.Value = "to";
            //
            // textBox61
            //
            this.textBox61.Format = "{0:dd MMM yyyy}";
            this.textBox61.Name = "textBox61";
            this.textBox61.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.399306058883667D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.21810118854045868D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox61.Style.Font.Bold = true;
            this.textBox61.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox61.Value = "= IsNull(Parameters.DateTo.Value,Fields.MaxDate)";
            //
            // sqlDataSource3
            //
            this.sqlDataSource3.ConnectionString = "Aspire";
            this.sqlDataSource3.Name = "sqlDataSource3";
            this.sqlDataSource3.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
            new Telerik.Reporting.SqlDataSourceParameter("@UnitID", System.Data.DbType.Int32, "=Parameters.UnitID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@TeamID", System.Data.DbType.Int32, "=Parameters.TeamID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@UserID", System.Data.DbType.Int32, "=Parameters.UserID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@StandardID", System.Data.DbType.Int32, "=Parameters.StandardID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@FromDate", System.Data.DbType.Date, "=CDate(Parameters.DateFrom.Value)"),
            new Telerik.Reporting.SqlDataSourceParameter("@ToDate", System.Data.DbType.Date, "=CDate(Parameters.DateTo.Value)"),
            new Telerik.Reporting.SqlDataSourceParameter("@CategoryID", System.Data.DbType.Int32, "=Parameters.CategoryID.Value"),
            new Telerik.Reporting.SqlDataSourceParameter("@IsEvalDate", System.Data.DbType.Int32, "=Parameters.IsEvalDate.Value")});
            this.sqlDataSource3.SelectCommand = "up_TrainingNeedAnalysis_FinalDate";
            this.sqlDataSource3.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
            //
            // textBox44
            //
            this.textBox44.CanGrow = true;
            this.textBox44.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.0071207680739462376D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.049941062927246094D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox44.Name = "textBox44";
            this.textBox44.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(10.685793876647949D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.19999997317790985D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox44.Style.Font.Bold = true;
            this.textBox44.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(11D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox44.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox44.Value = "{Parameters.lblCompleteEvalFor.Value} {Parameters.SelectedLevel.Value}";
            //
            // table1
            //
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(3.0999999046325684D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.table1.Body.SetCellContent(0, 0, this.textBox46);
            this.table1.Body.SetCellContent(0, 1, this.textBox53);
            this.table1.Body.SetCellContent(0, 2, this.textBox54);
            this.table1.Body.SetCellContent(0, 3, this.textBox56);
            this.table1.Body.SetCellContent(0, 4, this.textBox58);
            this.table1.Body.SetCellContent(0, 5, this.textBox60);
            this.table1.Body.SetCellContent(0, 6, this.textBox62);
            this.table1.Body.SetCellContent(0, 7, this.textBox64);
            tableGroup35.Name = "Group1";
            tableGroup36.Name = "Group2";
            tableGroup37.Name = "Group3";
            tableGroup38.Name = "Group4";
            tableGroup39.Name = "Group5";
            this.table1.ColumnGroups.Add(tableGroup32);
            this.table1.ColumnGroups.Add(tableGroup33);
            this.table1.ColumnGroups.Add(tableGroup34);
            this.table1.ColumnGroups.Add(tableGroup35);
            this.table1.ColumnGroups.Add(tableGroup36);
            this.table1.ColumnGroups.Add(tableGroup37);
            this.table1.ColumnGroups.Add(tableGroup38);
            this.table1.ColumnGroups.Add(tableGroup39);
            this.table1.ColumnHeadersPrintOnEveryPage = true;
            this.table1.DataSource = this.sqlDataSource2;
            this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox46,
            this.textBox53,
            this.textBox54,
            this.textBox56,
            this.textBox58,
            this.textBox60,
            this.textBox62,
            this.textBox64});
            this.table1.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(4.0666670799255371D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.3999999463558197D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.table1.Name = "table1";
            tableGroup40.Groupings.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("")});
            tableGroup40.Name = "DetailGroup";
            this.table1.RowGroups.Add(tableGroup40);
            this.table1.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(15.69999885559082D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            //
            // textBox46
            //
            this.textBox46.Name = "textBox46";
            this.textBox46.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.0999999046325684D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox46.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox46.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox46.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox46.Value = "=Fields.ScoringModeText";
            //
            // textBox53
            //
            this.textBox53.Name = "textBox53";
            this.textBox53.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.7999999523162842D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox53.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox53.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox53.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox53.Value = "=IIF(Fields.ScoringModeTypeReport=4,Fields.[0],Fields.NO)";
            //
            // textBox54
            //
            this.textBox54.Name = "textBox54";
            this.textBox54.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866149663925171D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox54.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox54.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox54.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox54.Value = "= IIf(Fields.MaxScoringModeTypeReport=4,IIf(Fields.ScoringModeTypeReport=4,Fields" +
    ".[1],Fields.[Y/N]),IIf(Fields.MaxScoringModeTypeReport=3,Fields.[Y/N],Fields.Yes" +
    "))\r\n";
            //
            // textBox56
            //
            this.textBox56.Name = "textBox56";
            this.textBox56.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866137742996216D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox56.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox56.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox56.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox56.StyleName = "";
            this.textBox56.Value = "= IIf(Fields.MaxScoringModeTypeReport=4,Fields.[2],IIf(Fields.MaxScoringModeTypeR" +
    "eport=3,Fields.Yes,IIf(Fields.ScoringModeTypeReport=2,Fields.[N/A],\" \")))\r\n\r\n\r\n\r" +
    "\n";
            //
            // textBox58
            //
            this.textBox58.Name = "textBox58";
            this.textBox58.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866143703460693D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox58.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox58.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox58.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox58.StyleName = "";
            this.textBox58.Value = "=IIf(Fields.MaxScoringModeTypeReport=4,Fields.[3],IIf(Fields.MaxScoringModeTypeRe" +
    "port=3,Fields.[N/A],\" \"))\r\n";
            //
            // textBox60
            //
            this.textBox60.Name = "textBox60";
            this.textBox60.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866131782531738D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox60.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox60.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox60.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox60.StyleName = "";
            this.textBox60.Value = "=IIf(Fields.ScoringModeTypeReport=4,Fields.[4],\" \")\r\n";
            //
            // textBox62
            //
            this.textBox62.Name = "textBox62";
            this.textBox62.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866131782531738D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox62.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox62.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox62.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox62.StyleName = "";
            this.textBox62.Value = "=IIf(Fields.MaxScoringModeTypeReport=4,IIf(Fields.ScoringModeTypeReport=4,Fields." +
    "[5],Fields.Yes),\" \")\r\n\r\n\r\n\r\n\r\n\r\n";
            //
            // textBox64
            //
            this.textBox64.Name = "textBox64";
            this.textBox64.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.70866143703460693D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.24998034536838532D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox64.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox64.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox64.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            this.textBox64.StyleName = "";
            this.textBox64.Value = "=IIf(Fields.MaxScoringModeTypeReport=4,Fields.[N/A],\" \")\r\n\r\n\r\n";
            //
            // textBox23
            //
            this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(1.795906662940979D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.7000001072883606D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox23.Name = "textBox23";
            this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.42283996939659119D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.15646696090698242D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox23.Style.Font.Bold = true;
            this.textBox23.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox23.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox23.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox23.Value = "Points";
            //
            // textBox28
            //
            this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.2187464237213135D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.7000001072883606D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox28.Name = "textBox28";
            this.textBox28.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(0.67090970277786255D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.15646696090698242D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox28.Style.Font.Bold = true;
            this.textBox28.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox28.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox28.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox28.Value = "AutoFail";
            //
            // textBox35
            //
            this.textBox35.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.8896560668945312D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.7000001072883606D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox35.Name = "textBox35";
            this.textBox35.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.010344386100769D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.15646727383136749D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox35.Style.Font.Bold = true;
            this.textBox35.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox35.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox35.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox35.Value = "Evaluation Count";
            //
            // group1
            //
            this.group1.GroupFooter = this.groupFooterSection1;
            this.group1.GroupHeader = this.groupHeaderSection1;
            this.group1.Name = "group1";
            //
            // groupFooterSection1
            //
            this.groupFooterSection1.Height = new Telerik.Reporting.Drawing.Unit(0.13229165971279144D, Telerik.Reporting.Drawing.UnitType.Cm);
            this.groupFooterSection1.Name = "groupFooterSection1";
            //
            // groupHeaderSection1
            //
            this.groupHeaderSection1.Height = new Telerik.Reporting.Drawing.Unit(2.2859992980957031D, Telerik.Reporting.Drawing.UnitType.Cm);
            this.groupHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox35,
            this.textBox23,
            this.textBox28,
            this.textBox2,
            this.table1,
            this.textBox44});
            this.groupHeaderSection1.Name = "groupHeaderSection1";
            this.groupHeaderSection1.PrintOnEveryPage = true;
            this.groupHeaderSection1.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.groupHeaderSection1.Style.Font.Name = "Tahoma";
            //
            // textBox2
            //
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(10.329333305358887D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.7780002355575562D, Telerik.Reporting.Drawing.UnitType.Cm));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(1.2160383462905884D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(0.15208327770233154D, Telerik.Reporting.Drawing.UnitType.Inch));
            this.textBox2.Style.Font.Bold = true;
            this.textBox2.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
            this.textBox2.StyleName = "";
            this.textBox2.Value = "Scoring Mode";
            //
            // TNAnalysisReport
            //
            this.DataSource = null;
            this.Groups.AddRange(new Telerik.Reporting.Group[] {
            this.group1});
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.groupHeaderSection1,
            this.groupFooterSection1,
            this.detail,
            this.pageFooterSection1,
            this.reportHeaderSection1});
            this.PageSettings.Landscape = true;
            this.PageSettings.Margins.Bottom = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.PageSettings.Margins.Left = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.PageSettings.Margins.Right = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.PageSettings.Margins.Top = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
            reportParameter1.AllowNull = true;
            reportParameter1.Name = "lblfrom";
            reportParameter2.AllowNull = true;
            reportParameter2.Name = "StandardID";
            reportParameter2.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter3.AllowNull = true;
            reportParameter3.Name = "StandardName";
            reportParameter4.AllowNull = true;
            reportParameter4.Name = "CategoryID";
            reportParameter4.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter5.AllowNull = true;
            reportParameter5.Name = "CategoryName";
            reportParameter6.AllowNull = true;
            reportParameter6.Name = "DateTo";
            reportParameter6.Type = Telerik.Reporting.ReportParameterType.DateTime;
            reportParameter7.AllowNull = true;
            reportParameter7.Name = "DateFrom";
            reportParameter7.Type = Telerik.Reporting.ReportParameterType.DateTime;
            reportParameter8.AllowNull = true;
            reportParameter8.Name = "TenantName";
            reportParameter9.AllowNull = true;
            reportParameter9.Name = "SelectedLevel";
            reportParameter10.AllowNull = true;
            reportParameter10.Name = "UserID";
            reportParameter10.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter11.AllowNull = true;
            reportParameter11.Name = "TeamID";
            reportParameter11.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter12.AllowNull = true;
            reportParameter12.Name = "UnitID";
            reportParameter12.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter13.AllowNull = true;
            reportParameter13.Name = "lblTNAHeader";
            reportParameter14.AllowNull = true;
            reportParameter14.Name = "lblCompleteEvalFor";
            reportParameter15.AllowNull = true;
            reportParameter15.Name = "lblStandard";
            reportParameter16.AllowNull = true;
            reportParameter16.Name = "lblto";
            reportParameter17.Name = "lblDateRange";
            reportParameter18.Name = "lblCategory";
            reportParameter19.AllowNull = true;
            reportParameter19.Name = "IsEvalDate";
            reportParameter19.Type = Telerik.Reporting.ReportParameterType.Integer;
            this.ReportParameters.Add(reportParameter1);
            this.ReportParameters.Add(reportParameter2);
            this.ReportParameters.Add(reportParameter3);
            this.ReportParameters.Add(reportParameter4);
            this.ReportParameters.Add(reportParameter5);
            this.ReportParameters.Add(reportParameter6);
            this.ReportParameters.Add(reportParameter7);
            this.ReportParameters.Add(reportParameter8);
            this.ReportParameters.Add(reportParameter9);
            this.ReportParameters.Add(reportParameter10);
            this.ReportParameters.Add(reportParameter11);
            this.ReportParameters.Add(reportParameter12);
            this.ReportParameters.Add(reportParameter13);
            this.ReportParameters.Add(reportParameter14);
            this.ReportParameters.Add(reportParameter15);
            this.ReportParameters.Add(reportParameter16);
            this.ReportParameters.Add(reportParameter17);
            this.ReportParameters.Add(reportParameter18);
            this.ReportParameters.Add(reportParameter19);
            this.Style.BackgroundColor = System.Drawing.Color.White;
            this.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector(typeof(Telerik.Reporting.Table), "Apex.TableNormal")});
            styleRule1.Style.BackgroundColor = System.Drawing.Color.White;
            styleRule1.Style.BorderColor.Default = System.Drawing.Color.Black;
            styleRule1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            styleRule1.Style.BorderWidth.Default = new Telerik.Reporting.Drawing.Unit(1D, Telerik.Reporting.Drawing.UnitType.Pixel);
            styleRule1.Style.Color = System.Drawing.Color.Black;
            styleRule1.Style.Font.Name = "Book Antiqua";
            styleRule1.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
            descendantSelector1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.Table)),
            new Telerik.Reporting.Drawing.StyleSelector(typeof(Telerik.Reporting.ReportItem), "Apex.TableHeader")});
            styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            descendantSelector1});
            styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(103)))), ((int)(((byte)(109)))));
            styleRule2.Style.BorderColor.Default = System.Drawing.Color.Black;
            styleRule2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            styleRule2.Style.BorderWidth.Default = new Telerik.Reporting.Drawing.Unit(1D, Telerik.Reporting.Drawing.UnitType.Pixel);
            styleRule2.Style.Color = System.Drawing.Color.White;
            styleRule2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            descendantSelector2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.Table)),
            new Telerik.Reporting.Drawing.StyleSelector(typeof(Telerik.Reporting.ReportItem), "Apex.TableBody")});
            styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            descendantSelector2});
            styleRule3.Style.BorderColor.Default = System.Drawing.Color.Black;
            styleRule3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            styleRule3.Style.BorderWidth.Default = new Telerik.Reporting.Drawing.Unit(1D, Telerik.Reporting.Drawing.UnitType.Pixel);
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1,
            styleRule2,
            styleRule3});
            this.Width = new Telerik.Reporting.Drawing.Unit(11.562205314636231D, Telerik.Reporting.Drawing.UnitType.Inch);
            this.NeedDataSource += new System.EventHandler(this.DetailEvaluationReport_NeedDataSource);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 
        }
        #endregion
 
        private Telerik.Reporting.DetailSection detail;
        private Telerik.Reporting.PageFooterSection pageFooterSection1;
        private Telerik.Reporting.SqlDataSource sqlDataSource1;
        private Telerik.Reporting.TextBox textBox29;
        private Telerik.Reporting.TextBox textBox31;
        private Telerik.Reporting.Table table3;
        private Telerik.Reporting.TextBox textBox18;
        private Telerik.Reporting.TextBox textBox17;
        private Telerik.Reporting.Crosstab crosstab1;
        private Telerik.Reporting.TextBox textBox4;
        private Telerik.Reporting.TextBox textBox13;
        private Telerik.Reporting.TextBox textBox16;
        private Telerik.Reporting.TextBox textBox22;
        private Telerik.Reporting.TextBox textBox26;
        private Telerik.Reporting.TextBox textBox33;
        private Telerik.Reporting.TextBox textBox39;
        private Telerik.Reporting.TextBox textBox7;
        private Telerik.Reporting.TextBox textBox11;
        private Telerik.Reporting.TextBox textBox19;
        private Telerik.Reporting.TextBox textBox25;
        private Telerik.Reporting.SqlDataSource sqlDataSource2;
        private Telerik.Reporting.TextBox textBox71;
        private Telerik.Reporting.TextBox textBox72;
        private Telerik.Reporting.TextBox textBox73;
        private Telerik.Reporting.TextBox textBox74;
        private Telerik.Reporting.TextBox textBox75;
        private Telerik.Reporting.TextBox textBox76;
        private Telerik.Reporting.TextBox textBox77;
        private Telerik.Reporting.TextBox textBox67;
        private Telerik.Reporting.TextBox textBox68;
        private Telerik.Reporting.TextBox textBox69;
        private Telerik.Reporting.TextBox textBox70;
        private Telerik.Reporting.TextBox textBox21;
        private Telerik.Reporting.TextBox textBox6;
        private Telerik.Reporting.TextBox textBox3;
        private Telerik.Reporting.ReportHeaderSection reportHeaderSection1;
        private Telerik.Reporting.TextBox textBox44;
        private Telerik.Reporting.TextBox textBox23;
        private Telerik.Reporting.TextBox textBox28;
        private Telerik.Reporting.TextBox textBox42;
        private Telerik.Reporting.TextBox textBox47;
        private Telerik.Reporting.TextBox textBox49;
        private Telerik.Reporting.TextBox textBox50;
        private Telerik.Reporting.TextBox textBox51;
        private Telerik.Reporting.TextBox textBox52;
        private Telerik.Reporting.TextBox textBox35;
        private Telerik.Reporting.Table table1;
        private Telerik.Reporting.TextBox textBox46;
        private Telerik.Reporting.TextBox textBox53;
        private Telerik.Reporting.TextBox textBox54;
        private Telerik.Reporting.TextBox textBox56;
        private Telerik.Reporting.TextBox textBox58;
        private Telerik.Reporting.TextBox textBox60;
        private Telerik.Reporting.TextBox textBox62;
        private Telerik.Reporting.TextBox textBox64;
        private Telerik.Reporting.TextBox textBox32;
        private Telerik.Reporting.TextBox textBox34;
        private Telerik.Reporting.TextBox textBox36;
        private Telerik.Reporting.TextBox textBox37;
        private Telerik.Reporting.Table table2;
        private Telerik.Reporting.TextBox textBox57;
        private Telerik.Reporting.TextBox textBox59;
        private Telerik.Reporting.TextBox textBox61;
        private Telerik.Reporting.SqlDataSource sqlDataSource3;
        private Telerik.Reporting.Group group1;
        private Telerik.Reporting.GroupFooterSection groupFooterSection1;
        private Telerik.Reporting.GroupHeaderSection groupHeaderSection1;
        private Telerik.Reporting.TextBox textBox30;
        private Telerik.Reporting.TextBox textBox38;
        private Telerik.Reporting.TextBox textBox2;
    }
}

Peter
Telerik team
 answered on 27 Oct 2011
0 answers
152 views
Hi,

I have two problems about the table control:
1)I'm trying to display the table rows in different pages, but unfirtunatily, all rows are displayed in one page in the HTML Preview mode (In the normal Preview mode the table rows are displayed in defferent pages - REQUIRED situation). Can you please explain to me how to do that?
2) By trying to export the report to pdf file, all report items are exported except to the above table (View attached screen-shots), why? and how can I handle this issue?

Below is the table design code:
//
            // subTasksTable
            //
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(0.99269747734069824D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(0.76236891746521D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(0.65212559700012207D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(2.5210821628570557D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(2.1588101387023926D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.5260298252105713D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(new Telerik.Reporting.Drawing.Unit(1.5722570419311523D, Telerik.Reporting.Drawing.UnitType.Inch)));
            this.subTasksTable.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.66027981042861938D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.subTasksTable.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(new Telerik.Reporting.Drawing.Unit(0.92489641904830933D, Telerik.Reporting.Drawing.UnitType.Cm)));
            this.subTasksTable.Body.SetCellContent(0, 1, this.textBox1);
            this.subTasksTable.Body.SetCellContent(1, 1, this.textBox2);
            this.subTasksTable.Body.SetCellContent(0, 3, this.textBox3);
            this.subTasksTable.Body.SetCellContent(1, 3, this.textBox4);
            this.subTasksTable.Body.SetCellContent(1, 2, this.textBox5);
            this.subTasksTable.Body.SetCellContent(0, 2, this.textBox6);
            this.subTasksTable.Body.SetCellContent(0, 4, this.textBox7);
            this.subTasksTable.Body.SetCellContent(1, 4, this.textBox8);
            this.subTasksTable.Body.SetCellContent(0, 5, this.textBox9);
            this.subTasksTable.Body.SetCellContent(1, 5, this.textBox10);
            this.subTasksTable.Body.SetCellContent(0, 0, this.textBox11);
            this.subTasksTable.Body.SetCellContent(1, 0, this.textBox12);
            this.subTasksTable.Body.SetCellContent(0, 6, this.textBox13);
            this.subTasksTable.Body.SetCellContent(1, 6, this.textBox14);
            tableGroup1.Name = "Group3";
            tableGroup5.Name = "Group1";
            tableGroup6.Name = "Group2";
            tableGroup7.Name = "Group4";
            this.subTasksTable.ColumnGroups.Add(tableGroup1);
            this.subTasksTable.ColumnGroups.Add(tableGroup2);
            this.subTasksTable.ColumnGroups.Add(tableGroup3);
            this.subTasksTable.ColumnGroups.Add(tableGroup4);
            this.subTasksTable.ColumnGroups.Add(tableGroup5);
            this.subTasksTable.ColumnGroups.Add(tableGroup6);
            this.subTasksTable.ColumnGroups.Add(tableGroup7);
            this.subTasksTable.DataMember = "";
            this.subTasksTable.DataSource = this.subTasksDataSet;
            this.subTasksTable.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox1,
            this.textBox2,
            this.textBox3,
            this.textBox4,
            this.textBox5,
            this.textBox6,
            this.textBox7,
            this.textBox8,
            this.textBox9,
            this.textBox10,
            this.textBox11,
            this.textBox12,
            this.textBox13,
            this.textBox14});
            this.subTasksTable.KeepTogether = false;
            this.subTasksTable.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.2539999783039093D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(7.619999885559082D, Telerik.Reporting.Drawing.UnitType.Cm));
            this.subTasksTable.Name = "subTasksTable";
            tableGroup9.Grouping.AddRange(new Telerik.Reporting.Data.Grouping[] {
            new Telerik.Reporting.Data.Grouping("")});
            tableGroup9.Name = "detailGroup";
            this.subTasksTable.RowGroups.Add(tableGroup8);
            this.subTasksTable.RowGroups.Add(tableGroup9);
            this.subTasksTable.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(10.185371398925781D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(1.5851762294769287D, Telerik.Reporting.Drawing.UnitType.Cm));
            this.subTasksTable.ItemDataBinding += new System.EventHandler(this.subTasksTable_ItemDataBinding);
            this.subTasksTable.ItemDataBound += new System.EventHandler(this.subTasksTable_ItemDataBound);


Please, I need your help,

Regards,
Bader
Bader
Top achievements
Rank 1
 asked on 26 Oct 2011
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?