Пример #1
0
        private void ReadDetailReportBand(XtraReportBase xtraReport, DetailReportBand band, StiPage page)
        {
            detailLevel++;
            StiPage tempPage = new StiPage(report);

            string storeDataSourceName = currentDataSourceName;

            currentDataSourceName = band.DataMember;

            ProcessBands(band, band.Controls, tempPage);

            //StiDataBand masterBand = page.Components[page.Components.Count - 1] as StiDataBand;
            //if (masterBand != null)
            //{
            //    foreach (StiComponent comp in tempPage.Components)
            //    {
            //        StiDataBand dataBand = comp as StiDataBand;
            //        if (dataBand != null)
            //        {
            //            dataBand.MasterComponent = masterBand;
            //        }
            //    }
            //}

            //page.Components.AddRange(tempPage.Components);
            SortBands(tempPage);
            page.Components.Add(tempPage);

            currentDataSourceName = storeDataSourceName;

            detailLevel--;
        }
        public void GivenTheParentReportHasADetailReportBandWithADatamemberOfDogs()
        {
            _parentReport.Bands.Add(new DetailBand());
            _detailReport = new DetailReportBand();
            _detailReport.DataMember = "Dogs";
            _detailReport.Level = 0;
            _detailReport.Name = "DetailReport";

            _parentReport.Bands.Add(_detailReport);
        }
Пример #3
0
        public void GivenTheParentReportHasADetailReportBandWithADatamemberOfDogs()
        {
            _parentReport.Bands.Add(new DetailBand());
            _detailReport            = new DetailReportBand();
            _detailReport.DataMember = "Dogs";
            _detailReport.Level      = 0;
            _detailReport.Name       = "DetailReport";

            _parentReport.Bands.Add(_detailReport);
        }
        private XtraReportBase CreateReportForTable(XtraReportBase parentReport, DataTable dataTable, string dataPath)
        {
            DetailReportBand detailReport = new DetailReportBand();
            DetailBand       detailBand   = new DetailBand();

            detailBand.Height = 25;
            detailReport.Bands.Add(detailBand);
            parentReport.Bands.Add(detailReport);
            AddDataFieldsToBand(dataTable, detailBand, dataPath, false);
            detailReport.DataMember = dataPath;

            return(detailReport);
        }
Пример #5
0
        protected virtual DetailReportBand CreateContainerBand(string dataMember)
        {
            var result = new DetailReportBand
            {
                HeightF = 0F
            };

            result.DataSource = this.Report.DataSource;
            result.InitializeDataMember(this.Report.JoinWithDataMember(dataMember));

            if (this.Report is DetailReportBand)
            {
                result.Level = ((DetailReportBand)this.Report).Level + 1;
            }

            this.Report.Bands.Add(result);

            return(result);
        }
        public void combine_parent_datasourcepath_with_band_memberpath()
        {
            var factory = new ReportFactory();
            var designContext = TestHelper.CreateDesignerContext();

            // Parent Report
            var report = factory.GetNewReport();
            report.Name = "parentreport";
            var definition = TestHelper.NorthwindDataSource;
            definition.DataSourceRelationPath = "[0]";
            report.ChangeDesignTimeDatasource(definition, designContext);

            // Subreport Container
            var detailReportBand = new DetailReportBand();
            detailReportBand.DataMember = "OrderDetails";
            report.Bands.Add(detailReportBand);

            var path = detailReportBand.GetFullDataMemberPath();
            Assert.AreEqual("[0].OrderDetails", path);
        }
        private void CreateDetailReportBasedOnDetailReportBand(XtraReport report)
        {
            //Create a Detail Report
            DetailReportBand detailReport = new DetailReportBand();

            report.Bands.Add(detailReport);
            //Init Styles at the level of the RootReport
            InitStyles(report);

            //Generate the DataMember based on data relations
            NwindDataSet ds = report.DataSource as NwindDataSet;
            string       detailDataMember = string.Format("{0}.{1}", ds.Tables[report.DataMember].TableName,
                                                          ds.Relations[0].RelationName);

            detailReport.DataSource = ds;
            detailReport.DataMember = detailDataMember;

            //Create bands
            CreateReportHeader(detailReport, "Orders", Color.Gold, 16);
            CreateDetailBand(detailReport, ds.Orders, detailDataMember, Color.Transparent, true);
        }
Пример #8
0
        private void doAcceptance()
        {
            XtraReport mReport = new XtraReport();

            mReport.LoadLayout(Application.StartupPath + "\\Report\\" + this.comboBox1.Text); //报表模板文件

            DataTable taskError = new DataTable();

            if (ReportDia.wwcxmTable != null)
            {
                taskError = ReportDia.wwcxmTable;
            }
            taskError.TableName = "taskError";
            DataTable checkError = new DataTable();
            DataTable attrError  = AttrDia.attrErrorTable;

            if (attrError != null)
            {
                checkError = attrError;
            }
            DataTable topotable = TopoDia.topoErrorTable;

            if (topotable != null)
            {
                checkError.Merge(topotable);
                checkError.TableName = "checkError";
            }
            //查找组件
            DetailReportBand DetailReport  = mReport.FindControl("DetailReport", true) as DetailReportBand;
            DetailReportBand DetailReport1 = mReport.FindControl("DetailReport1", true) as DetailReportBand;
            DetailBand       Detail1       = mReport.FindControl("Detail1", true) as DetailBand;
            DetailBand       Detail2       = mReport.FindControl("Detail2", true) as DetailBand;
            XRLabel          xrLabel4      = mReport.FindControl("XRLabel4", true) as XRLabel;  //联系人
            XRLabel          xrLabel5      = mReport.FindControl("XRLabel5", true) as XRLabel;  //联系方式
            XRLabel          xrLabel11     = mReport.FindControl("XRLabel11", true) as XRLabel; //检查人

            DetailReport.DataSource  = taskError;
            DetailReport1.DataSource = checkError;
            mReport.ShowPreviewDialog();
        }
Пример #9
0
        private XtraReport CreateReport()
        {
            XtraReport report = new XtraReport();

            DetailBand detail = new DetailBand();

            detail.Height = 30;
            report.Bands.Add(detail);

            DetailReportBand detailReport1 = new DetailReportBand();

            report.Bands.Add(detailReport1);

            DetailBand detail1 = new DetailBand();

            detail1.Height = 30;
            detailReport1.Bands.Add(detail1);

            DetailReportBand detailReport2 = new DetailReportBand();

            detailReport1.Bands.Add(detailReport2);

            DetailBand detail2 = new DetailBand();

            detail2.Height = 30;
            detailReport2.Bands.Add(detail2);

            report.DataSource        = CreateData();
            detailReport1.DataMember = "Products";
            detailReport2.DataMember = "Products.OrderDetails";

            detail.Controls.Add(CreateBoundLabel("CompanyName", Color.Gold, 0));
            detail1.Controls.Add(CreateBoundLabel("Products.ProductName", Color.Aqua, 100));
            detail2.Controls.Add(CreateBoundLabel("Products.OrderDetails.Quantity", Color.Pink, 200));

            return(report);
        }
Пример #10
0
        public static Tuple <MyReportBase, XRSubreport, MyReportBase, IDesignerContext> GetParentAndNestedSubreport()
        {
            var factory = new ReportFactory();

            // Parent Report
            var parentReport = factory.GetNewReport("parentReport");

            // Subreport
            var subreport = factory.GetNewReport("subreport");

            // Order-Details Band
            var detailReport = new DetailReportBand()
            {
                DataMember = "Order_Details"
            };
            var detailBand = new DetailBand();

            parentReport.Bands.Add(detailReport);
            detailReport.Bands.Add(detailBand);

            // Insert Subreport into Subreport Container... for Runtime Testing
            var subreportContainer = new XRSubreport()
            {
                ReportSource = subreport
            };

            detailBand.Controls.Add(subreportContainer);

            // Datasource MUST be set AFTER the Detail Band has been added!!  Otherwise detailband gets empty object[] as its datasource
            var designContext = TestHelper.CreateDesignerContext();

            parentReport.ChangeDesignTimeDatasource(TestHelper.NorthwindDataSource, designContext);
            Assert.IsNotNull(parentReport.DataSource);

            return(new Tuple <MyReportBase, XRSubreport, MyReportBase, IDesignerContext>(parentReport, subreportContainer, subreport, designContext));
        }
        public void combine_parent_datasourcepath_with_band_memberpath()
        {
            var factory       = new ReportFactory();
            var designContext = TestHelper.CreateDesignerContext();

            // Parent Report
            var report = factory.GetNewReport();

            report.Name = "parentreport";
            var definition = TestHelper.NorthwindDataSource;

            definition.DataSourceRelationPath = "[0]";
            report.ChangeDesignTimeDatasource(definition, designContext);

            // Subreport Container
            var detailReportBand = new DetailReportBand();

            detailReportBand.DataMember = "OrderDetails";
            report.Bands.Add(detailReportBand);

            var path = detailReportBand.GetFullDataMemberPath();

            Assert.AreEqual("[0].OrderDetails", path);
        }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "XtraReport1.resx";

        this.Detail                  = new DevExpress.XtraReports.UI.DetailBand();
        this.xrLabel4                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1           = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel2                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5                = new DevExpress.XtraReports.UI.XRLabel();
        this.dataSet11               = new DataSet1();
        this.DetailReport            = new DevExpress.XtraReports.UI.DetailReportBand();
        this.Detail1                 = new DevExpress.XtraReports.UI.DetailBand();
        this.xrLabel3                = new DevExpress.XtraReports.UI.XRLabel();
        this.productsTableAdapter1   = new DataSet1TableAdapters.ProductsTableAdapter();
        this.categoriesTableAdapter1 = new DataSet1TableAdapters.CategoriesTableAdapter();
        this.ReportHeader            = new DevExpress.XtraReports.UI.ReportHeaderBand();
        ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel4,
            this.xrPictureBox1,
            this.xrLabel2,
            this.xrLabel1
        });
        this.Detail.Height        = 69;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel4
        //
        this.xrLabel4.BackColor = System.Drawing.Color.LightBlue;
        this.xrLabel4.Location  = new System.Drawing.Point(0, 0);
        this.xrLabel4.Name      = "xrLabel4";
        this.xrLabel4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.Size      = new System.Drawing.Size(17, 17);
        this.xrLabel4.StylePriority.UseBackColor = false;
        this.xrLabel4.Text          = "-";
        this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrLabel4.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrLabel4_BeforePrint);
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Image", null, "Categories.Picture", "")
        });
        this.xrPictureBox1.Location = new System.Drawing.Point(483, 0);
        this.xrPictureBox1.Name     = "xrPictureBox1";
        this.xrPictureBox1.Size     = new System.Drawing.Size(158, 58);
        this.xrPictureBox1.Sizing   = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
        //
        // xrLabel2
        //
        this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.Description", "")
        });
        this.xrLabel2.Location = new System.Drawing.Point(75, 33);
        this.xrLabel2.Name     = "xrLabel2";
        this.xrLabel2.Padding  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.Size     = new System.Drawing.Size(250, 25);
        this.xrLabel2.Text     = "xrLabel2";
        //
        // xrLabel1
        //
        this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryName", "")
        });
        this.xrLabel1.Location = new System.Drawing.Point(75, 0);
        this.xrLabel1.Name     = "xrLabel1";
        this.xrLabel1.Padding  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.Size     = new System.Drawing.Size(158, 25);
        this.xrLabel1.Text     = "xrLabel1";
        this.xrLabel1.Font     = new Font(this.Font.FontFamily.ToString(), 12, FontStyle.Bold);
        //
        // xrLabel5
        //
        this.xrLabel5.Font                       = new System.Drawing.Font("Times New Roman", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
        this.xrLabel5.ForeColor                  = System.Drawing.Color.Blue;
        this.xrLabel5.Location                   = new System.Drawing.Point(275, 0);
        this.xrLabel5.Name                       = "xrLabel5";
        this.xrLabel5.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.Size                       = new System.Drawing.Size(100, 33);
        this.xrLabel5.StylePriority.UseFont      = false;
        this.xrLabel5.StylePriority.UseForeColor = false;
        this.xrLabel5.Text                       = "Catalog";
        //
        // dataSet11
        //
        this.dataSet11.DataSetName             = "DataSet1";
        this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // DetailReport
        //
        this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail1
        });
        this.DetailReport.DataMember   = "Products";
        this.DetailReport.DataSource   = this.dataSet11;
        this.DetailReport.Level        = 0;
        this.DetailReport.Name         = "DetailReport";
        this.DetailReport.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport_BeforePrint);
        //
        // Detail1
        //
        this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel3
        });
        this.Detail1.Height = 25;
        this.Detail1.Name   = "Detail1";
        //
        // xrLabel3
        //
        this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ProductName", "")
        });
        this.xrLabel3.Location = new System.Drawing.Point(225, 0);
        this.xrLabel3.Name     = "xrLabel3";
        this.xrLabel3.Padding  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.Size     = new System.Drawing.Size(192, 25);
        this.xrLabel3.Text     = "xrLabel3";
        //
        // productsTableAdapter1
        //
        this.productsTableAdapter1.ClearBeforeFill = true;
        //
        // categoriesTableAdapter1
        //
        this.categoriesTableAdapter1.ClearBeforeFill = true;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel5
        });
        this.ReportHeader.Height = 33;
        this.ReportHeader.Name   = "ReportHeader";
        //
        // XtraReport1
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.DetailReport,
            this.ReportHeader
        });
        this.DataAdapter = this.categoriesTableAdapter1;
        this.DataSource  = this.dataSet11;
        this.Version     = "8.1";
        ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Пример #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column12            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column13            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression13  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column14            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression14  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery2        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column15            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression15  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column16            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression16  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column17            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression17  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column18            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression18  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column19            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression19  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(OrdersReport));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLine1
     });
     this.Detail.HeightF       = 104F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 9F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "Shipped Date";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 33F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "Ship Address";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(6F, 57F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Order ID";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(6F, 81F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel4.StyleName     = "FieldCaption";
     this.xrLabel4.Text          = "Order Date";
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ShippedDate]")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(174F, 9F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel5.StyleName     = "DataField";
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ShipAddress]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(174F, 33F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel6.StyleName     = "DataField";
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrderID]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(174F, 57F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel7.StyleName     = "DataField";
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrderDate]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(174F, 81F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel8.StyleName     = "DataField";
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 3F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // TopMargin
     //
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "nwind";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "OrderID";
     table1.Name                   = "Orders";
     columnExpression1.Table       = table1;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "CustomerID";
     columnExpression2.Table       = table1;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "EmployeeID";
     columnExpression3.Table       = table1;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "OrderDate";
     columnExpression4.Table       = table1;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "RequiredDate";
     columnExpression5.Table       = table1;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "ShippedDate";
     columnExpression6.Table       = table1;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "ShipVia";
     columnExpression7.Table       = table1;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "Freight";
     columnExpression8.Table       = table1;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "ShipName";
     columnExpression9.Table       = table1;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "ShipAddress";
     columnExpression10.Table      = table1;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "ShipCity";
     columnExpression11.Table      = table1;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "ShipRegion";
     columnExpression12.Table      = table1;
     column12.Expression           = columnExpression12;
     columnExpression13.ColumnName = "ShipPostalCode";
     columnExpression13.Table      = table1;
     column13.Expression           = columnExpression13;
     columnExpression14.ColumnName = "ShipCountry";
     columnExpression14.Table      = table1;
     column14.Expression           = columnExpression14;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Columns.Add(column12);
     selectQuery1.Columns.Add(column13);
     selectQuery1.Columns.Add(column14);
     selectQuery1.MetaSerializable = "<Meta X=\"140\" Y=\"20\" Width=\"100\" Height=\"275\" />";
     selectQuery1.Name             = "Orders";
     selectQuery1.Tables.Add(table1);
     columnExpression15.ColumnName = "OrderID";
     table2.Name = "OrderDetails";
     columnExpression15.Table      = table2;
     column15.Expression           = columnExpression15;
     columnExpression16.ColumnName = "ProductID";
     columnExpression16.Table      = table2;
     column16.Expression           = columnExpression16;
     columnExpression17.ColumnName = "UnitPrice";
     columnExpression17.Table      = table2;
     column17.Expression           = columnExpression17;
     columnExpression18.ColumnName = "Quantity";
     columnExpression18.Table      = table2;
     column18.Expression           = columnExpression18;
     columnExpression19.ColumnName = "Discount";
     columnExpression19.Table      = table2;
     column19.Expression           = columnExpression19;
     selectQuery2.Columns.Add(column15);
     selectQuery2.Columns.Add(column16);
     selectQuery2.Columns.Add(column17);
     selectQuery2.Columns.Add(column18);
     selectQuery2.Columns.Add(column19);
     selectQuery2.MetaSerializable = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"122\" />";
     selectQuery2.Name             = "OrderDetails";
     selectQuery2.Tables.Add(table2);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         selectQuery2
     });
     masterDetailInfo1.DetailQueryName   = "OrderDetails";
     relationColumnInfo1.NestedKeyColumn = "OrderID";
     relationColumnInfo1.ParentKeyColumn = "OrderID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName = "Orders";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29.00001F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(5.999999F, 6.00001F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(271.3333F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName        = "PageInfo";
     this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9
     });
     this.reportHeaderBand1.HeightF = 51F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(638F, 33F);
     this.xrLabel9.StyleName     = "Title";
     this.xrLabel9.Text          = "Orders Report\r\n";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.Title.ForeColor   = System.Drawing.Color.Maroon;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Maroon;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader1
     });
     this.DetailReport.DataMember = "Orders.OrdersOrderDetails";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10
     });
     this.Detail1.HeightF                 = 23F;
     this.Detail1.KeepTogether            = true;
     this.Detail1.MultiColumn.ColumnCount = 2;
     this.Detail1.Name = "Detail1";
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[UnitPrice]")
     });
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(520.8333F, 0F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(123.1667F, 23F);
     this.xrLabel12.Text          = "xrLabel12";
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Quantity]")
     });
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(420.8333F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.Text          = "xrLabel11";
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ProductID]")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(320.8333F, 0F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.Text          = "xrLabel10";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13
     });
     this.GroupHeader1.HeightF         = 23F;
     this.GroupHeader1.KeepTogether    = true;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrLabel15
     //
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(520.8333F, 0F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(123.1667F, 23F);
     this.xrLabel15.Text          = "UnitPrice";
     //
     // xrLabel14
     //
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(420.8333F, 0F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel14.Text          = "Quantity";
     //
     // xrLabel13
     //
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(320.8332F, 0F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel13.Text          = "ProductID";
     //
     // OrdersReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Orders";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column12            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column13            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression13  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column14            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression14  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column15            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression15  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column16            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression16  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column17            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression17  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column18            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression18  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column19            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression19  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column20            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression20  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column21            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression21  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column22            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression22  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column23            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression23  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column24            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression24  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column25            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression25  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column26            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression26  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column27            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression27  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column28            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression28  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column29            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression29  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column30            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression30  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column31            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression31  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column32            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression32  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column33            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression33  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column34            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression34  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column35            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression35  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column36            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression36  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column37            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression37  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column38            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression38  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column39            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression39  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column40            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression40  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column41            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression41  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column42            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression42  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column43            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression43  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column44            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression44  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column45            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression45  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column46            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression46  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column47            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression47  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column48            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression48  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column49            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression49  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column50            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression50  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column51            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression51  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(Test));
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.DetailReport    = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1         = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
     this.startdate       = new DevExpress.XtraReports.Parameters.Parameter();
     this.endDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.Null            = new DevExpress.XtraReports.Parameters.Parameter();
     this.formattingRule2 = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrLabel4        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.table1          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell32     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell37     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell39     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7    = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.HeightF = 4.208342F;
     this.Detail.Name    = "Detail";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.HeightF = 28.08332F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2
     });
     this.DetailReport.DataMember = "Sys_User.Sys_Usersp_LeaveHistory";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.FormattingRules.Add(this.formattingRule2);
     this.DetailReport.Level = 0;
     this.DetailReport.Name  = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 35.29164F;
     this.Detail1.Name    = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel1
     });
     this.GroupHeader2.HeightF = 40.66668F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // formattingRule1
     //
     this.formattingRule1.DataMember         = "Sys_User.Sys_Usersp_leavedetail";
     this.formattingRule1.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
     this.formattingRule1.Name = "formattingRule1";
     //
     // startdate
     //
     this.startdate.Description = "startdate";
     this.startdate.Name        = "startdate";
     this.startdate.Type        = typeof(System.DateTime);
     this.startdate.ValueInfo   = "2018-01-01";
     //
     // endDate
     //
     this.endDate.Description = "endDate";
     this.endDate.Name        = "endDate";
     this.endDate.Type        = typeof(System.DateTime);
     this.endDate.ValueInfo   = "2018-12-01";
     //
     // Null
     //
     this.Null.AllowNull   = true;
     this.Null.Description = "Null";
     this.Null.Name        = "Null";
     this.Null.Type        = typeof(long);
     this.Null.Visible     = false;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition          = "[DataSource.RowCount] = 0";
     this.formattingRule2.DataMember         = "Sys_User.Sys_Usersp_leaveledger";
     this.formattingRule2.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
     this.formattingRule2.Name = "formattingRule2";
     //
     // xrLabel4
     //
     this.xrLabel4.Font                  = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(3.787879F, 9.999997F);
     this.xrLabel4.Multiline             = true;
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(135.2958F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Employee Name";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(139.0836F, 9.999997F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(198.5221F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // table1
     //
     this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.table1.Font          = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(797.9999F, 25.99999F);
     this.table1.StylePriority.UseBorders       = false;
     this.table1.StylePriority.UseFont          = false;
     this.table1.StylePriority.UseTextAlignment = false;
     this.table1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // tableRow1
     //
     this.tableRow1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell32,
         this.tableCell37,
         this.tableCell39
     });
     this.tableRow1.Font      = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Bold);
     this.tableRow1.ForeColor = System.Drawing.Color.Black;
     this.tableRow1.Name      = "tableRow1";
     this.tableRow1.StylePriority.UseBackColor     = false;
     this.tableRow1.StylePriority.UseFont          = false;
     this.tableRow1.StylePriority.UseForeColor     = false;
     this.tableRow1.StylePriority.UseTextAlignment = false;
     this.tableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableRow1.Weight        = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Font                  = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Bold);
     this.tableCell1.Multiline             = true;
     this.tableCell1.Name                  = "tableCell1";
     this.tableCell1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell1.StylePriority.UseFont = false;
     this.tableCell1.Text                  = "Employee";
     this.tableCell1.Weight                = 0.99983972568290391D;
     //
     // tableCell2
     //
     this.tableCell2.Multiline = true;
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(4, 2, 0, 0, 100F);
     this.tableCell2.StylePriority.UsePadding       = false;
     this.tableCell2.StylePriority.UseTextAlignment = false;
     this.tableCell2.Text          = "Type";
     this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell2.Weight        = 1.2885844209098571D;
     //
     // tableCell32
     //
     this.tableCell32.Multiline = true;
     this.tableCell32.Name      = "tableCell32";
     this.tableCell32.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell32.StylePriority.UsePadding       = false;
     this.tableCell32.StylePriority.UseTextAlignment = false;
     this.tableCell32.Text          = "Total";
     this.tableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell32.Weight        = 0.93463408399160786D;
     //
     // tableCell37
     //
     this.tableCell37.Multiline = true;
     this.tableCell37.Name      = "tableCell37";
     this.tableCell37.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell37.StylePriority.UsePadding       = false;
     this.tableCell37.StylePriority.UseTextAlignment = false;
     this.tableCell37.Text          = "Availed";
     this.tableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell37.Weight        = 0.77035953664128543D;
     //
     // tableCell39
     //
     this.tableCell39.Multiline = true;
     this.tableCell39.Name      = "tableCell39";
     this.tableCell39.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell39.StylePriority.UsePadding       = false;
     this.tableCell39.StylePriority.UseTextAlignment = false;
     this.tableCell39.Text          = "Balance";
     this.tableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell39.Weight        = 0.67164770597723078D;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(797.9999F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Weight    = 1.7103135246041881D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Title]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Weight    = 2.2042351969465597D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Entitled]")
     });
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Weight = 1.5987728487515451D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Availed]")
     });
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Weight = 1.3177674300063476D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Balance]")
     });
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Weight = 1.1489109872998291D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "UserId";
     table2.Name                   = "Sys_User";
     columnExpression1.Table       = table2;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "CNIC";
     columnExpression2.Table       = table2;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "CreatedAt";
     columnExpression3.Table       = table2;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "DOB";
     columnExpression4.Table       = table2;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "DateCreated";
     columnExpression5.Table       = table2;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "Deleted";
     columnExpression6.Table       = table2;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "EditedAt";
     columnExpression7.Table       = table2;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "EditedBy";
     columnExpression8.Table       = table2;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "Email";
     columnExpression9.Table       = table2;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "FirstName";
     columnExpression10.Table      = table2;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "Gender";
     columnExpression11.Table      = table2;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "IdentityId";
     columnExpression12.Table      = table2;
     column12.Expression           = columnExpression12;
     columnExpression13.ColumnName = "LastName";
     columnExpression13.Table      = table2;
     column13.Expression           = columnExpression13;
     columnExpression14.ColumnName = "Phone";
     columnExpression14.Table      = table2;
     column14.Expression           = columnExpression14;
     columnExpression15.ColumnName = "RoleID";
     columnExpression15.Table      = table2;
     column15.Expression           = columnExpression15;
     columnExpression16.ColumnName = "BranchId";
     columnExpression16.Table      = table2;
     column16.Expression           = columnExpression16;
     columnExpression17.ColumnName = "CityId";
     columnExpression17.Table      = table2;
     column17.Expression           = columnExpression17;
     columnExpression18.ColumnName = "CompanyId";
     columnExpression18.Table      = table2;
     column18.Expression           = columnExpression18;
     columnExpression19.ColumnName = "CountryId";
     columnExpression19.Table      = table2;
     column19.Expression           = columnExpression19;
     columnExpression20.ColumnName = "DepartmentId";
     columnExpression20.Table      = table2;
     column20.Expression           = columnExpression20;
     columnExpression21.ColumnName = "PayrollId";
     columnExpression21.Table      = table2;
     column21.Expression           = columnExpression21;
     columnExpression22.ColumnName = "Address";
     columnExpression22.Table      = table2;
     column22.Expression           = columnExpression22;
     columnExpression23.ColumnName = "GratuityId";
     columnExpression23.Table      = table2;
     column23.Expression           = columnExpression23;
     columnExpression24.ColumnName = "BankId";
     columnExpression24.Table      = table2;
     column24.Expression           = columnExpression24;
     columnExpression25.ColumnName = "BloodGroup";
     columnExpression25.Table      = table2;
     column25.Expression           = columnExpression25;
     columnExpression26.ColumnName = "CNICExpiry";
     columnExpression26.Table      = table2;
     column26.Expression           = columnExpression26;
     columnExpression27.ColumnName = "CostCenterId";
     columnExpression27.Table      = table2;
     column27.Expression           = columnExpression27;
     columnExpression28.ColumnName = "FatherName";
     columnExpression28.Table      = table2;
     column28.Expression           = columnExpression28;
     columnExpression29.ColumnName = "MasterPayrollId";
     columnExpression29.Table      = table2;
     column29.Expression           = columnExpression29;
     columnExpression30.ColumnName = "PfPaymentId";
     columnExpression30.Table      = table2;
     column30.Expression           = columnExpression30;
     columnExpression31.ColumnName = "GroupId";
     columnExpression31.Table      = table2;
     column31.Expression           = columnExpression31;
     columnExpression32.ColumnName = "HomePhone";
     columnExpression32.Table      = table2;
     column32.Expression           = columnExpression32;
     columnExpression33.ColumnName = "UserSalaryId";
     columnExpression33.Table      = table2;
     column33.Expression           = columnExpression33;
     columnExpression34.ColumnName = "MaritalStatus";
     columnExpression34.Table      = table2;
     column34.Expression           = columnExpression34;
     columnExpression35.ColumnName = "POB";
     columnExpression35.Table      = table2;
     column35.Expression           = columnExpression35;
     columnExpression36.ColumnName = "PermanentAddress";
     columnExpression36.Table      = table2;
     column36.Expression           = columnExpression36;
     columnExpression37.ColumnName = "ReligionId";
     columnExpression37.Table      = table2;
     column37.Expression           = columnExpression37;
     columnExpression38.ColumnName = "UserCompanyId";
     columnExpression38.Table      = table2;
     column38.Expression           = columnExpression38;
     columnExpression39.ColumnName = "PhotoFilePath";
     columnExpression39.Table      = table2;
     column39.Expression           = columnExpression39;
     columnExpression40.ColumnName = "UserPhotoId";
     columnExpression40.Table      = table2;
     column40.Expression           = columnExpression40;
     columnExpression41.ColumnName = "BloggerProfile";
     columnExpression41.Table      = table2;
     column41.Expression           = columnExpression41;
     columnExpression42.ColumnName = "FacebookUrl";
     columnExpression42.Table      = table2;
     column42.Expression           = columnExpression42;
     columnExpression43.ColumnName = "GooglePlusUrl";
     columnExpression43.Table      = table2;
     column43.Expression           = columnExpression43;
     columnExpression44.ColumnName = "InstagramUrl";
     columnExpression44.Table      = table2;
     column44.Expression           = columnExpression44;
     columnExpression45.ColumnName = "LinkedinUrl";
     columnExpression45.Table      = table2;
     column45.Expression           = columnExpression45;
     columnExpression46.ColumnName = "PinterestUrl";
     columnExpression46.Table      = table2;
     column46.Expression           = columnExpression46;
     columnExpression47.ColumnName = "TwitterUrl";
     columnExpression47.Table      = table2;
     column47.Expression           = columnExpression47;
     columnExpression48.ColumnName = "YoutubeUrl";
     columnExpression48.Table      = table2;
     column48.Expression           = columnExpression48;
     columnExpression49.ColumnName = "FullName";
     columnExpression49.Table      = table2;
     column49.Expression           = columnExpression49;
     columnExpression50.ColumnName = "SectionId";
     columnExpression50.Table      = table2;
     column50.Expression           = columnExpression50;
     columnExpression51.ColumnName = "UserLevel";
     columnExpression51.Table      = table2;
     column51.Expression           = columnExpression51;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Columns.Add(column12);
     selectQuery1.Columns.Add(column13);
     selectQuery1.Columns.Add(column14);
     selectQuery1.Columns.Add(column15);
     selectQuery1.Columns.Add(column16);
     selectQuery1.Columns.Add(column17);
     selectQuery1.Columns.Add(column18);
     selectQuery1.Columns.Add(column19);
     selectQuery1.Columns.Add(column20);
     selectQuery1.Columns.Add(column21);
     selectQuery1.Columns.Add(column22);
     selectQuery1.Columns.Add(column23);
     selectQuery1.Columns.Add(column24);
     selectQuery1.Columns.Add(column25);
     selectQuery1.Columns.Add(column26);
     selectQuery1.Columns.Add(column27);
     selectQuery1.Columns.Add(column28);
     selectQuery1.Columns.Add(column29);
     selectQuery1.Columns.Add(column30);
     selectQuery1.Columns.Add(column31);
     selectQuery1.Columns.Add(column32);
     selectQuery1.Columns.Add(column33);
     selectQuery1.Columns.Add(column34);
     selectQuery1.Columns.Add(column35);
     selectQuery1.Columns.Add(column36);
     selectQuery1.Columns.Add(column37);
     selectQuery1.Columns.Add(column38);
     selectQuery1.Columns.Add(column39);
     selectQuery1.Columns.Add(column40);
     selectQuery1.Columns.Add(column41);
     selectQuery1.Columns.Add(column42);
     selectQuery1.Columns.Add(column43);
     selectQuery1.Columns.Add(column44);
     selectQuery1.Columns.Add(column45);
     selectQuery1.Columns.Add(column46);
     selectQuery1.Columns.Add(column47);
     selectQuery1.Columns.Add(column48);
     selectQuery1.Columns.Add(column49);
     selectQuery1.Columns.Add(column50);
     selectQuery1.Columns.Add(column51);
     selectQuery1.MetaSerializable = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"904\" />";
     selectQuery1.Name             = "Sys_User";
     selectQuery1.Tables.Add(table2);
     storedProcQuery1.MetaSerializable = "<Meta X=\"140\" Y=\"20\" Width=\"100\" Height=\"173\" />";
     storedProcQuery1.Name             = "sp_LeaveHistory";
     queryParameter1.Name  = "@fromdate";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?startdate", typeof(System.DateTime));
     queryParameter2.Name  = "@todate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?endDate", typeof(System.DateTime));
     queryParameter3.Name  = "@companyid";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter4.Name  = "@countryid";
     queryParameter4.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter5.Name  = "@branchid";
     queryParameter5.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter6.Name  = "@cityid";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.StoredProcName = "sp_LeaveHistory";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         storedProcQuery1
     });
     masterDetailInfo1.DetailQueryName   = "sp_LeaveHistory";
     relationColumnInfo1.NestedKeyColumn = "UserId";
     relationColumnInfo1.ParentKeyColumn = "UserId";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName = "Sys_User";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Test
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Sys_User";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(10, 26, 100, 100);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.startdate,
         this.endDate,
         this.Null
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #15
0
        private void CreateDetailReport(XtraReport report, string dataMember)
        {
            // Create a detail report band and bind it to data.
            DetailReportBand detailReportBand = new DetailReportBand();

            report.Bands.Add(detailReportBand);
            detailReportBand.DataSource = report.DataSource;
            detailReportBand.DataMember = dataMember;

            // Add a header to the detail report.
            ReportHeaderBand detailReportHeader = new ReportHeaderBand();

            detailReportBand.Bands.Add(detailReportHeader);

            XRTable tableHeader = new XRTable();

            tableHeader.BeginInit();
            tableHeader.Rows.Add(new XRTableRow());
            tableHeader.Borders       = BorderSide.All;
            tableHeader.BorderColor   = Color.DarkGray;
            tableHeader.Font          = new Font("Tahoma", 10, System.Drawing.FontStyle.Bold);
            tableHeader.Padding       = 10;
            tableHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;

            XRTableCell cellHeader1 = new XRTableCell();

            cellHeader1.Text = "Product Name";
            XRTableCell cellHeader2 = new XRTableCell();

            cellHeader2.Text          = "Unit Price";
            cellHeader2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;

            tableHeader.Rows[0].Cells.AddRange(new XRTableCell[] { cellHeader1, cellHeader2 });
            detailReportHeader.Height = tableHeader.Height;
            detailReportHeader.Controls.Add(tableHeader);

            // Adjust the table width.
            tableHeader.BeforePrint += tableHeader_BeforePrint;
            tableHeader.EndInit();

            // Create a detail band.
            XRTable tableDetail = new XRTable();

            tableDetail.BeginInit();
            tableDetail.Rows.Add(new XRTableRow());
            tableDetail.Borders       = BorderSide.Left | BorderSide.Right | BorderSide.Bottom;
            tableDetail.BorderColor   = Color.DarkGray;
            tableDetail.Font          = new Font("Tahoma", 10);
            tableDetail.Padding       = 10;
            tableDetail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;

            XRTableCell cellDetail1 = new XRTableCell();
            XRTableCell cellDetail2 = new XRTableCell();

            cellDetail2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            if (Settings.Default.UserDesignerOptions.DataBindingMode == DataBindingMode.Bindings)
            {
                cellDetail1.DataBindings.Add("Text", report.DataSource, dataMember + ".ProductName");
                cellDetail2.DataBindings.Add("Text", report.DataSource, dataMember + ".UnitPrice", "{0:$0.00}");
            }
            else
            {
                cellDetail1.ExpressionBindings.Add(new ExpressionBinding("BeforePrint", "Text", "[ProductName]"));
                cellDetail2.ExpressionBindings.Add(new ExpressionBinding("BeforePrint", "Text",
                                                                         "FormatString('{0:$0.00}', [UnitPrice])"));
            }

            tableDetail.Rows[0].Cells.AddRange(new XRTableCell[] { cellDetail1, cellDetail2 });

            DetailBand detailBand = new DetailBand();

            detailBand.Height = tableDetail.Height;
            detailReportBand.Bands.Add(detailBand);
            detailBand.Controls.Add(tableDetail);

            // Adjust the table width.
            tableDetail.BeforePrint += tableDetail_BeforePrint;
            tableDetail.EndInit();

            // Create and assign different odd and even styles.
            XRControlStyle oddStyle  = new XRControlStyle();
            XRControlStyle evenStyle = new XRControlStyle();

            oddStyle.BackColor = Color.WhiteSmoke;
            oddStyle.StyleUsing.UseBackColor = true;
            oddStyle.Name = "OddStyle";

            evenStyle.BackColor = Color.White;
            evenStyle.StyleUsing.UseBackColor = true;
            evenStyle.Name = "EvenStyle";

            report.StyleSheet.AddRange(new XRControlStyle[] { oddStyle, evenStyle });

            tableDetail.OddStyleName  = "OddStyle";
            tableDetail.EvenStyleName = "EvenStyle";
        }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "ActMainReport.resx";
         this.components = new System.ComponentModel.Container();
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.tblActHeader = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.hdrTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.tblGroupDate = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.tblActHeader1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailDocuments = new DevExpress.XtraReports.UI.DetailBand();
         this.tblDocument = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.tblActSummary = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cfOnDate = new DevExpress.XtraReports.UI.CalculatedField();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.BackColor = System.Drawing.Color.Thistle;
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblActs.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActs.StylePriority.UseBackColor = false;
         this.tblActs.StylePriority.UseBorders = false;
         this.tblActs.StylePriority.UseTextAlignment = false;
         this.tblActs.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.cellTotalCost,
         this.cellPaidOn,
         this.cellLeftOn,
         this.cellApproval1,
         this.cellKailasPaid1,
         this.cellKailasDue,
         this.cellPaidDue,
         this.cellApproval2,
         this.cellKailasPaid2,
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell5});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.Weight = 0.33707868689518711D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.Weight = 0.22471907062271032D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.Weight = 0.22471913729657511D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseFont = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.Weight = 0.37453185898241342D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell8.Weight = 0.13108616421673858D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell9.Weight = 0.074906378701990128D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.074906375725478314D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.13108615379894739D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.14981274624206087D;
         //
         // cellTotalCost
         //
         this.cellTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost", "{0:#.00}")});
         this.cellTotalCost.Name = "cellTotalCost";
         this.cellTotalCost.StylePriority.UseTextAlignment = false;
         this.cellTotalCost.Tag = "TotalCost";
         this.cellTotalCost.Text = "cellTotalCost";
         this.cellTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellTotalCost.Weight = 0.093632966308272114D;
         //
         // cellPaidOn
         //
         this.cellPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn", "{0:#.00}")});
         this.cellPaidOn.Name = "cellPaidOn";
         this.cellPaidOn.StylePriority.UseTextAlignment = false;
         this.cellPaidOn.Tag = "PaidOn";
         this.cellPaidOn.Text = "cellPaidOn";
         this.cellPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidOn.Weight = 0.093632966122240036D;
         //
         // cellLeftOn
         //
         this.cellLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn", "{0:#.00}")});
         this.cellLeftOn.Name = "cellLeftOn";
         this.cellLeftOn.StylePriority.UseTextAlignment = false;
         this.cellLeftOn.Tag = "LeftOn";
         this.cellLeftOn.Text = "cellLeftOn";
         this.cellLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellLeftOn.Weight = 0.093632966029224107D;
         //
         // cellApproval1
         //
         this.cellApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1", "{0:#.00}")});
         this.cellApproval1.Name = "cellApproval1";
         this.cellApproval1.StylePriority.UseTextAlignment = false;
         this.cellApproval1.Tag = "Approval1";
         this.cellApproval1.Text = "cellApproval1";
         this.cellApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval1.Weight = 0.093632965982716088D;
         //
         // cellKailasPaid1
         //
         this.cellKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1", "{0:#.00}")});
         this.cellKailasPaid1.Name = "cellKailasPaid1";
         this.cellKailasPaid1.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid1.Tag = "KailasPaid1";
         this.cellKailasPaid1.Text = "cellKailasPaid1";
         this.cellKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid1.Weight = 0.093632965959462189D;
         //
         // cellKailasDue
         //
         this.cellKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue", "{0:#.00}")});
         this.cellKailasDue.Name = "cellKailasDue";
         this.cellKailasDue.StylePriority.UseTextAlignment = false;
         this.cellKailasDue.Tag = "KailasDue";
         this.cellKailasDue.Text = "cellKailasDue";
         this.cellKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasDue.Weight = 0.093632965947835156D;
         //
         // cellPaidDue
         //
         this.cellPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue", "{0:#.00}")});
         this.cellPaidDue.Name = "cellPaidDue";
         this.cellPaidDue.StylePriority.UseTextAlignment = false;
         this.cellPaidDue.Tag = "PaidDue";
         this.cellPaidDue.Text = "cellPaidDue";
         this.cellPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidDue.Weight = 0.093632965942021584D;
         //
         // cellApproval2
         //
         this.cellApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2", "{0:#.00}")});
         this.cellApproval2.Name = "cellApproval2";
         this.cellApproval2.StylePriority.UseTextAlignment = false;
         this.cellApproval2.Tag = "Approval2";
         this.cellApproval2.Text = "cellApproval2";
         this.cellApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval2.Weight = 0.093632965939114854D;
         //
         // cellKailasPaid2
         //
         this.cellKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2", "{0:#.00}")});
         this.cellKailasPaid2.Name = "cellKailasPaid2";
         this.cellKailasPaid2.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid2.Tag = "KailasPaid2";
         this.cellKailasPaid2.Text = "cellKailasPaid2";
         this.cellKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid2.Weight = 0.093632965937661489D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryCalculated", "{0:#.00}")});
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Tag = "SalaryCalculated";
         this.xrTableCell22.Text = "cellSalaryCalculated";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell22.Weight = 0.093632961067487558D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryPaidDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseTextAlignment = false;
         this.xrTableCell23.Tag = "SalaryPaidDate";
         this.xrTableCell23.Text = "cellSalaryPaidDate";
         this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell23.Weight = 0.11235955169479248D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CalculatedMain", "{0:#.00}")});
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseTextAlignment = false;
         this.xrTableCell24.Tag = "CalculatedMain";
         this.xrTableCell24.Text = "cellCalculatedMain";
         this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell24.Weight = 0.093632959367995469D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidMainDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Tag = "PaidMainDate";
         this.xrTableCell5.Text = "cellPaidMainDate";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.13483126121907518D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 50F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActHeader});
         this.ReportHeader.HeightF = 75.00001F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // tblActHeader
         //
         this.tblActHeader.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader.Name = "tblActHeader";
         this.tblActHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.tblActHeader.SizeF = new System.Drawing.SizeF(1602F, 75.00001F);
         this.tblActHeader.StylePriority.UseBorders = false;
         this.tblActHeader.StylePriority.UseFont = false;
         this.tblActHeader.StylePriority.UseTextAlignment = false;
         this.tblActHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44,
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.hdrTotalCost,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56,
         this.xrTableCell57,
         this.xrTableCell58,
         this.xrTableCell59,
         this.xrTableCell60,
         this.xrTableCell61});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseBorders = false;
         this.xrTableCell40.Text = "Працівник";
         this.xrTableCell40.Weight = 0.33707868689518711D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.StylePriority.UseBorders = false;
         this.xrTableCell41.Text = "Населений пункт";
         this.xrTableCell41.Weight = 0.22471907062271032D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.StylePriority.UseBorders = false;
         this.xrTableCell42.Text = "Адреса";
         this.xrTableCell42.Weight = 0.22471913729657511D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseBorders = false;
         this.xrTableCell43.Text = "Замовник";
         this.xrTableCell43.Weight = 0.37453185898241342D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.StylePriority.UseBorders = false;
         this.xrTableCell44.StylePriority.UseTextAlignment = false;
         this.xrTableCell44.Text = "Телефон";
         this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell44.Weight = 0.13108616421673858D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "К-сть ділянок";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.074906378701990128D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.StylePriority.UseTextAlignment = false;
         this.xrTableCell46.Text = "К-сть актів";
         this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell46.Weight = 0.074906375725478314D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.StylePriority.UseTextAlignment = false;
         this.xrTableCell47.Text = "Категорія";
         this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell47.Weight = 0.13108615379894739D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Статус";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell48.Weight = 0.14981274624206087D;
         //
         // hdrTotalCost
         //
         this.hdrTotalCost.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.hdrTotalCost.Name = "hdrTotalCost";
         this.hdrTotalCost.StylePriority.UseBorders = false;
         this.hdrTotalCost.StylePriority.UseTextAlignment = false;
         this.hdrTotalCost.Tag = "TotalCost";
         this.hdrTotalCost.Text = "Загальна вартість робіт";
         this.hdrTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.hdrTotalCost.Weight = 0.093632966308272114D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.StylePriority.UseTextAlignment = false;
         this.xrTableCell50.Tag = "PaidOn";
         this.xrTableCell50.Text = "Аванс";
         this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell50.Weight = 0.093632966122240036D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.StylePriority.UseTextAlignment = false;
         this.xrTableCell51.Tag = "LeftOn";
         this.xrTableCell51.Text = "Залишено на місці";
         this.xrTableCell51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell51.Weight = 0.093632966029224107D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseTextAlignment = false;
         this.xrTableCell52.Tag = "Approval1";
         this.xrTableCell52.Text = "Погодження 1";
         this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell52.Weight = 0.093632965982716088D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.StylePriority.UseTextAlignment = false;
         this.xrTableCell53.Tag = "KailasPaid1";
         this.xrTableCell53.Text = "Оплачено на ПП Кайлас-К";
         this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell53.Weight = 0.093632965959462189D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.StylePriority.UseTextAlignment = false;
         this.xrTableCell54.Tag = "KailasDue";
         this.xrTableCell54.Text = "Заборгованість по ПП Кайлас-К";
         this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell54.Weight = 0.093632965947835156D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.StylePriority.UseTextAlignment = false;
         this.xrTableCell55.Tag = "PaidDue";
         this.xrTableCell55.Text = "Опл. заборгованість (після виїзду)";
         this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell55.Weight = 0.093632965942021584D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.StylePriority.UseTextAlignment = false;
         this.xrTableCell56.Tag = "Approval2";
         this.xrTableCell56.Text = "Погодження 2";
         this.xrTableCell56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell56.Weight = 0.093632965939114854D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.StylePriority.UseBorders = false;
         this.xrTableCell57.StylePriority.UseTextAlignment = false;
         this.xrTableCell57.Tag = "KailasPaid2";
         this.xrTableCell57.Text = "Оплачено на ПП Кайлас-К 2";
         this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell57.Weight = 0.093632965937661489D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.StylePriority.UseBorders = false;
         this.xrTableCell58.StylePriority.UseTextAlignment = false;
         this.xrTableCell58.Tag = "SalaryCalculated";
         this.xrTableCell58.Text = "Нараховано";
         this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell58.Weight = 0.093632961067487558D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.StylePriority.UseBorders = false;
         this.xrTableCell59.StylePriority.UseTextAlignment = false;
         this.xrTableCell59.Tag = "SalaryPaidDate";
         this.xrTableCell59.Text = "Оплочено";
         this.xrTableCell59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell59.Weight = 0.11235955169479248D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.StylePriority.UseBorders = false;
         this.xrTableCell60.StylePriority.UseTextAlignment = false;
         this.xrTableCell60.Tag = "CalculatedMain";
         this.xrTableCell60.Text = "Нараховано ХМЛ";
         this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell60.Weight = 0.093632959367995469D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseBorders = false;
         this.xrTableCell61.StylePriority.UseTextAlignment = false;
         this.xrTableCell61.Tag = "PaidMainDate";
         this.xrTableCell61.Text = "Оплочено ХМЛ";
         this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell61.Weight = 0.13483126121907518D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblGroupDate,
         this.tblActHeader1});
         this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("cfOnDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WholePage;
         this.GroupHeader1.HeightF = 30.5F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // tblGroupDate
         //
         this.tblGroupDate.BackColor = System.Drawing.Color.PapayaWhip;
         this.tblGroupDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblGroupDate.LocationFloat = new DevExpress.Utils.PointFloat(0F, 15.5F);
         this.tblGroupDate.Name = "tblGroupDate";
         this.tblGroupDate.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblGroupDate.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblGroupDate.StylePriority.UseBackColor = false;
         this.tblGroupDate.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Left;
         this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 0, 0, 0, 100F);
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseFont = false;
         this.xrTableCell1.StylePriority.UsePadding = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "Дата виїзду:";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell1.Weight = 0.056179775280898875D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Right;
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseFont = false;
         this.xrTableCell3.StylePriority.UsePadding = false;
         this.xrTableCell3.Weight = 0.9438202247191011D;
         //
         // tblActHeader1
         //
         this.tblActHeader1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader1.Name = "tblActHeader1";
         this.tblActHeader1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.tblActHeader1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActHeader1.StylePriority.UseBorders = false;
         this.tblActHeader1.StylePriority.UseFont = false;
         this.tblActHeader1.StylePriority.UseTextAlignment = false;
         this.tblActHeader1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell20,
         this.xrTableCell21,
         this.xrTableCell26,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30,
         this.xrTableCell31,
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "1";
         this.xrTableCell13.Weight = 0.33707868689518711D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "2";
         this.xrTableCell14.Weight = 0.22471907062271032D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Text = "3";
         this.xrTableCell15.Weight = 0.22471913729657511D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.Text = "4";
         this.xrTableCell16.Weight = 0.37453185898241342D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.StylePriority.UseTextAlignment = false;
         this.xrTableCell17.Text = "5";
         this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell17.Weight = 0.13108616421673858D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseBorders = false;
         this.xrTableCell18.StylePriority.UseTextAlignment = false;
         this.xrTableCell18.Text = "6";
         this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell18.Weight = 0.074906378701990128D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.StylePriority.UseTextAlignment = false;
         this.xrTableCell19.Text = "7";
         this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell19.Weight = 0.074906375725478314D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseBorders = false;
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "8";
         this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell20.Weight = 0.13108615379894739D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "9";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.14981274624206087D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseBorders = false;
         this.xrTableCell26.StylePriority.UseTextAlignment = false;
         this.xrTableCell26.Tag = "TotalCost";
         this.xrTableCell26.Text = "10";
         this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell26.Weight = 0.093632966308272114D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Tag = "PaidOn";
         this.xrTableCell28.Text = "11";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell28.Weight = 0.093632966122240036D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.Tag = "LeftOn";
         this.xrTableCell29.Text = "12";
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell29.Weight = 0.093632966029224107D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Tag = "Approval1";
         this.xrTableCell30.Text = "13";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell30.Weight = 0.093632965982716088D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Tag = "KailasPaid1";
         this.xrTableCell31.Text = "14";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell31.Weight = 0.093632965959462189D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Tag = "KailasDue";
         this.xrTableCell32.Text = "15";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.093632965947835156D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Tag = "PaidDue";
         this.xrTableCell33.Text = "16";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.093632965942021584D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Tag = "Approval2";
         this.xrTableCell34.Text = "17";
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell34.Weight = 0.093632965939114854D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Tag = "KailasPaid2";
         this.xrTableCell35.Text = "18";
         this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell35.Weight = 0.093632965937661489D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Tag = "SalaryCalculated";
         this.xrTableCell36.Text = "19";
         this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell36.Weight = 0.093632961067487558D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseBorders = false;
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Tag = "SalaryPaidDate";
         this.xrTableCell37.Text = "20";
         this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell37.Weight = 0.11235955169479248D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseBorders = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Tag = "CalculatedMain";
         this.xrTableCell38.Text = "21";
         this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell38.Weight = 0.093632959367995469D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.StylePriority.UseBorders = false;
         this.xrTableCell39.StylePriority.UseTextAlignment = false;
         this.xrTableCell39.Tag = "PaidMainDate";
         this.xrTableCell39.Text = "22";
         this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell39.Weight = 0.13483126121907518D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailDocuments,
         this.GroupHeader2,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Documents";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailDocuments
         //
         this.detailDocuments.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblDocument});
         this.detailDocuments.HeightF = 15F;
         this.detailDocuments.KeepTogether = true;
         this.detailDocuments.MultiColumn.ColumnSpacing = 10F;
         this.detailDocuments.MultiColumn.ColumnWidth = 400F;
         this.detailDocuments.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
         this.detailDocuments.Name = "detailDocuments";
         this.detailDocuments.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailDocuments_BeforePrint);
         //
         // tblDocument
         //
         this.tblDocument.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblDocument.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblDocument.Name = "tblDocument";
         this.tblDocument.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.tblDocument.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblDocument.StylePriority.UseBorders = false;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell62,
         this.xrTableCell64,
         this.xrTableCell65});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocumentName")});
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell62.StylePriority.UsePadding = false;
         this.xrTableCell62.Text = "xrTableCell62";
         this.xrTableCell62.Weight = 1.5D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocValue")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.StylePriority.UseTextAlignment = false;
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell64.Weight = 0.5D;
         //
         // xrTableCell65
         //
         this.xrTableCell65.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.Comment")});
         this.xrTableCell65.Name = "xrTableCell65";
         this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell65.StylePriority.UsePadding = false;
         this.xrTableCell65.StylePriority.UseTextAlignment = false;
         this.xrTableCell65.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell65.Weight = 6.01D;
         //
         // GroupHeader2
         //
         this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("GroupName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 15F;
         this.GroupHeader2.KeepTogether = true;
         this.GroupHeader2.Name = "GroupHeader2";
         this.GroupHeader2.RepeatEveryPage = true;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.xrTable1.StylePriority.UseBackColor = false;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell63});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.GroupName")});
         this.xrTableCell63.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.StylePriority.UseBorders = false;
         this.xrTableCell63.StylePriority.UseFont = false;
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 1D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.HeightF = 3F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // GroupFooter2
         //
         this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActSummary});
         this.GroupFooter2.HeightF = 15F;
         this.GroupFooter2.Name = "GroupFooter2";
         //
         // tblActSummary
         //
         this.tblActSummary.BackColor = System.Drawing.Color.PaleGoldenrod;
         this.tblActSummary.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActSummary.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActSummary.Name = "tblActSummary";
         this.tblActSummary.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.tblActSummary.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActSummary.StylePriority.UseBackColor = false;
         this.tblActSummary.StylePriority.UseBorders = false;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell25,
         this.sumTotalCost,
         this.sumPaidOn,
         this.sumLeftOn,
         this.sumApproval1,
         this.sumKailasPaid1,
         this.sumKailasDue,
         this.sumPaidDue,
         this.sumApproval2,
         this.sumKailasPaid2,
         this.xrTableCell27});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.StylePriority.UsePadding = false;
         this.xrTableCell49.StylePriority.UseTextAlignment = false;
         this.xrTableCell49.Text = "Всього за";
         this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell49.Weight = 1.5730338221632141D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseBorders = false;
         this.xrTableCell25.Weight = 0.14981261978435156D;
         //
         // sumTotalCost
         //
         this.sumTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost")});
         this.sumTotalCost.Name = "sumTotalCost";
         this.sumTotalCost.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:#.00}";
         xrSummary1.IgnoreNullValues = true;
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumTotalCost.Summary = xrSummary1;
         this.sumTotalCost.Tag = "TotalCost";
         this.sumTotalCost.Text = "sumTotalCost";
         this.sumTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumTotalCost.Weight = 0.093633073099543551D;
         //
         // sumPaidOn
         //
         this.sumPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn")});
         this.sumPaidOn.Name = "sumPaidOn";
         this.sumPaidOn.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:#.00}";
         xrSummary2.IgnoreNullValues = true;
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidOn.Summary = xrSummary2;
         this.sumPaidOn.Text = "sumPaidOn";
         this.sumPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidOn.Weight = 0.093632958801498078D;
         //
         // sumLeftOn
         //
         this.sumLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn")});
         this.sumLeftOn.Name = "sumLeftOn";
         this.sumLeftOn.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:#.00}";
         xrSummary3.IgnoreNullValues = true;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumLeftOn.Summary = xrSummary3;
         this.sumLeftOn.Tag = "PaidOn";
         this.sumLeftOn.Text = "sumLeftOn";
         this.sumLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumLeftOn.Weight = 0.0936330730995435D;
         //
         // sumApproval1
         //
         this.sumApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1")});
         this.sumApproval1.Name = "sumApproval1";
         this.sumApproval1.StylePriority.UseTextAlignment = false;
         xrSummary4.FormatString = "{0:#.00}";
         xrSummary4.IgnoreNullValues = true;
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval1.Summary = xrSummary4;
         this.sumApproval1.Tag = "Approval1";
         this.sumApproval1.Text = "sumApproval1";
         this.sumApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval1.Weight = 0.09363295880149819D;
         //
         // sumKailasPaid1
         //
         this.sumKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1")});
         this.sumKailasPaid1.Name = "sumKailasPaid1";
         this.sumKailasPaid1.StylePriority.UseTextAlignment = false;
         xrSummary5.FormatString = "{0:#.00}";
         xrSummary5.IgnoreNullValues = true;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid1.Summary = xrSummary5;
         this.sumKailasPaid1.Tag = "KailasPaid1";
         this.sumKailasPaid1.Text = "sumKailasPaid1";
         this.sumKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid1.Weight = 0.093633187397588968D;
         //
         // sumKailasDue
         //
         this.sumKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue")});
         this.sumKailasDue.Name = "sumKailasDue";
         this.sumKailasDue.StylePriority.UseTextAlignment = false;
         xrSummary6.FormatString = "{0:#.00}";
         xrSummary6.IgnoreNullValues = true;
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasDue.Summary = xrSummary6;
         this.sumKailasDue.Tag = "KailasDue";
         this.sumKailasDue.Text = "sumKailasDue";
         this.sumKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasDue.Weight = 0.093632730205407244D;
         //
         // sumPaidDue
         //
         this.sumPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue")});
         this.sumPaidDue.Name = "sumPaidDue";
         this.sumPaidDue.StylePriority.UseTextAlignment = false;
         xrSummary7.FormatString = "{0:#.00}";
         xrSummary7.IgnoreNullValues = true;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidDue.Summary = xrSummary7;
         this.sumPaidDue.Tag = "PaidDue";
         this.sumPaidDue.Text = "sumPaidDue";
         this.sumPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidDue.Weight = 0.093633187397588913D;
         //
         // sumApproval2
         //
         this.sumApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2")});
         this.sumApproval2.Name = "sumApproval2";
         this.sumApproval2.StylePriority.UseTextAlignment = false;
         xrSummary8.FormatString = "{0:#.00}";
         xrSummary8.IgnoreNullValues = true;
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval2.Summary = xrSummary8;
         this.sumApproval2.Tag = "Approval2";
         this.sumApproval2.Text = "sumApproval2";
         this.sumApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval2.Weight = 0.093632730205407272D;
         //
         // sumKailasPaid2
         //
         this.sumKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2")});
         this.sumKailasPaid2.Name = "sumKailasPaid2";
         this.sumKailasPaid2.StylePriority.UseTextAlignment = false;
         xrSummary9.FormatString = "{0:#.00}";
         xrSummary9.IgnoreNullValues = true;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid2.Summary = xrSummary9;
         this.sumKailasPaid2.Tag = "KailasPaid2";
         this.sumKailasPaid2.Text = "sumKailasPaid2";
         this.sumKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid2.Weight = 0.093633187397588968D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Weight = 0.43445647164676959D;
         //
         // cfOnDate
         //
         this.cfOnDate.Expression = "GetDate([MeteringDate])";
         this.cfOnDate.Name = "cfOnDate";
         //
         // ActMainReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.DetailReport,
         this.GroupFooter2});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.cfOnDate});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(26, 26, 50, 50);
         this.PageHeight = 1169;
         this.PageWidth = 1654;
         this.PaperKind = System.Drawing.Printing.PaperKind.A3;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.Version = "15.1";
         this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ActMainReport_BeforePrint);
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptMultiInvoicesToPrint.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.header = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrOrderNum = new DevExpress.XtraReports.UI.XRTableCell();
     this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
     this.colDonVi = new DevExpress.XtraReports.UI.XRTableCell();
     this.colSoLuong = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPercent = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrDiscount = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPayment = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.dsMultiInvoicesToPrint1 = new dsMultiInvoicesToPrint();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.invoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.InvoicesSelectByWhereTableAdapter();
     this.productsInInvoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.ProductsInInvoicesSelectByWhereTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.header});
     this.Detail.HeightF = 106.2084F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoiceNo", "Số: {0}")});
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 27.50006F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 16F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.9580771F, 43.50004F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(746.9168F, 20F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable7
     //
     this.xrTable7.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(9.999903F, 70.20839F);
     this.xrTable7.Name = "xrTable7";
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
     this.xrTable7.SizeF = new System.Drawing.SizeF(731.7083F, 36F);
     this.xrTable7.StylePriority.UseFont = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell25,
         this.xrTableCell24,
         this.xrTableCell7,
         this.xrTableCell19});
     this.xrTableRow8.Name = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "Khách hàng: ";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight = 0.76041707714783124D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.Weight = 1.6354165423495146D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseFont = false;
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "Điện thoại:";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell25.Weight = 0.62583404093619488D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Phone")});
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.Text = "xrTableCell24";
     this.xrTableCell24.Weight = 1.1164577939005926D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text = "Địa chỉ: ";
     this.xrTableCell7.Weight = 0.51395781087784642D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CustomerAddress")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.Weight = 2.6649996045159052D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27,
         this.xrTableCell28,
         this.xrTableCell29});
     this.xrTableRow9.Name = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.StylePriority.UseFont = false;
     this.xrTableCell26.Text = "Địa chỉ: ";
     this.xrTableCell26.Weight = 0.76041707714783124D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.DeliveryAddress")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.Weight = 3.377708655696229D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.StylePriority.UsePadding = false;
     this.xrTableCell28.Text = "Ngày: ";
     this.xrTableCell28.Weight = 0.51395721385922755D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CurrentDate", "{0:dd/MM/yyyy}")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.Weight = 2.664999923024598D;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.Snow;
     this.xrTable1.BorderColor = System.Drawing.Color.Black;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.BorderWidth = 1;
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(749.5835F, 25F);
     this.xrTable1.StylePriority.UseBackColor = false;
     this.xrTable1.StylePriority.UseBorderColor = false;
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseBorderWidth = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell22,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell20,
         this.xrTableCell17,
         this.xrTableCell5});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "STT";
     this.xrTableCell1.Weight = 0.36560024648643036D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders = false;
     this.xrTableCell2.Text = "Tên Hàng Hoá";
     this.xrTableCell2.Weight = 2.3565548083905545D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.Text = "Trọng lượng";
     this.xrTableCell22.Weight = 0.78342919997407734D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders = false;
     this.xrTableCell3.Text = "ĐVT";
     this.xrTableCell3.Weight = 0.47005750662449247D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Text = "Đơn giá bán";
     this.xrTableCell4.Weight = 0.78969598039839828D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "Số lượng bán";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.85288598746242816D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.Text = "Tặng";
     this.xrTableCell20.Weight = 0.44682014695324773D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Text = "Thành tiền";
     this.xrTableCell5.Weight = 1.0048792922737211D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 0F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.HeightF = 5.625057F;
     this.PageHeader.Name = "PageHeader";
     //
     // header
     //
     this.header.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 0F);
     this.header.Name = "header";
     this.header.SizeF = new System.Drawing.SizeF(748.9584F, 27.50006F);
     //
     // xrTable2
     //
     this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth = 1;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(749.5835F, 20F);
     this.xrTable2.StylePriority.UseBorderDashStyle = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrOrderNum,
         this.colHangHoa,
         this.colDonVi,
         this.colSoLuong,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell12,
         this.xrTableCell35,
         this.xrTableCell31});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrOrderNum
     //
     this.xrOrderNum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrOrderNum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.RowIn" +
                 "dex")});
     this.xrOrderNum.Name = "xrOrderNum";
     this.xrOrderNum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrOrderNum.StylePriority.UseBorders = false;
     this.xrOrderNum.StylePriority.UsePadding = false;
     this.xrOrderNum.StylePriority.UseTextAlignment = false;
     this.xrOrderNum.Text = "xrOrderNum";
     this.xrOrderNum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrOrderNum.Weight = 0.36458328247070315D;
     //
     // colHangHoa
     //
     this.colHangHoa.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.produ" +
                 "ctname")});
     this.colHangHoa.Name = "colHangHoa";
     this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colHangHoa.StylePriority.UseBorders = false;
     this.colHangHoa.StylePriority.UsePadding = false;
     this.colHangHoa.StylePriority.UseTextAlignment = false;
     this.colHangHoa.Text = "colHangHoa";
     this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.colHangHoa.Weight = 2.3499999233670534D;
     //
     // colDonVi
     //
     this.colDonVi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colDonVi.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Style" +
                 "")});
     this.colDonVi.Name = "colDonVi";
     this.colDonVi.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colDonVi.StylePriority.UseBorders = false;
     this.colDonVi.StylePriority.UsePadding = false;
     this.colDonVi.Text = "colDonVi";
     this.colDonVi.Weight = 0.78125038790315038D;
     //
     // colSoLuong
     //
     this.colSoLuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colSoLuong.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Unit")});
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colSoLuong.StylePriority.UseBorders = false;
     this.colSoLuong.StylePriority.UsePadding = false;
     this.colSoLuong.Text = "colSoLuong";
     this.colSoLuong.Weight = 0.46875033858450066D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Curre" +
                 "ntPrice", "{0:n0}")});
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UseBorders = false;
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:0.00 VND}";
     this.xrTableCell11.Summary = xrSummary1;
     this.xrTableCell11.Text = "xrTableCell11";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.Weight = 0.78749918670705688D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Quant" +
                 "ity", "{0:n0}")});
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell30.StylePriority.UsePadding = false;
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.Text = "xrTableCell30";
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell30.Weight = 0.85051490427718135D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Bonus" +
                 "", "{0:n0}")});
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight = 0.4455766067495005D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total" +
                 "", "{0:n0}")});
     this.xrTableCell31.Name = "xrTableCell31";
     this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell31.StylePriority.UsePadding = false;
     this.xrTableCell31.StylePriority.UseTextAlignment = false;
     this.xrTableCell31.Text = "[InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total]";
     this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell31.Weight = 1.0020843341075598D;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Notes")});
     this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(9.041818F, 111.7916F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(578.4171F, 16F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // xrTable3
     //
     this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth = 1;
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow4,
         this.xrTableRow5});
     this.xrTable3.SizeF = new System.Drawing.SizeF(749.5835F, 60F);
     this.xrTable3.StylePriority.UseBorderDashStyle = false;
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseBorderWidth = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell10,
         this.xrSum});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.Weight = 5.6337398317540881D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Weight = 0.89610777590259483D;
     //
     // xrSum
     //
     this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.FinalTotal", "{0:n0}")});
     this.xrSum.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrSum.Name = "xrSum";
     this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrSum.StylePriority.UseFont = false;
     this.xrSum.StylePriority.UsePadding = false;
     this.xrSum.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:n0}";
     this.xrSum.Summary = xrSummary2;
     this.xrSum.Text = "xrSum";
     this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrSum.Weight = 1.0076542233980046D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrPercent,
         this.xrTableCell13,
         this.xrDiscount});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseFont = false;
     this.xrTableCell18.Text = "Chiết khấu:";
     this.xrTableCell18.Weight = 4.7784974502941386D;
     //
     // xrPercent
     //
     this.xrPercent.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPercent.Name = "xrPercent";
     this.xrPercent.StylePriority.UseFont = false;
     this.xrPercent.StylePriority.UseTextAlignment = false;
     this.xrPercent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPercent.Weight = 0.855243157122188D;
     this.xrPercent.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrPercent_BeforePrint);
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 0.89610592194689409D;
     //
     // xrDiscount
     //
     this.xrDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Discount", "{0:n0}")});
     this.xrDiscount.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrDiscount.Name = "xrDiscount";
     this.xrDiscount.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrDiscount.StylePriority.UseFont = false;
     this.xrDiscount.StylePriority.UsePadding = false;
     this.xrDiscount.StylePriority.UseTextAlignment = false;
     this.xrDiscount.Text = "xrDiscount";
     this.xrDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrDiscount.Weight = 1.0076553016914669D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell36,
         this.xrTableCell34,
         this.xrPayment});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseFont = false;
     this.xrTableCell32.Text = "Số tiền phải thanh toán:";
     this.xrTableCell32.Weight = 4.7784974502941386D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.Weight = 0.85524315712218835D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.Weight = 0.89610592533963673D;
     //
     // xrPayment
     //
     this.xrPayment.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Payment", "{0:n0}")});
     this.xrPayment.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPayment.Name = "xrPayment";
     this.xrPayment.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrPayment.StylePriority.UseFont = false;
     this.xrPayment.StylePriority.UsePadding = false;
     this.xrPayment.StylePriority.UseTextAlignment = false;
     this.xrPayment.Text = "[InvoicesSelectByWhere.Payment]";
     this.xrPayment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPayment.Weight = 1.0076552982987241D;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 132.7916F);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text = "Nhân viên bán hàng";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(8.208816F, 91.79157F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(64.58333F, 16.00001F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.Text = "Ghi chú: ";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Seller")});
     this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 192.5001F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(130F, 16.00002F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.SellerPhone")});
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(593.0836F, 208.5001F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(129.0001F, 16F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable6
     //
     this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 60.00001F);
     this.xrTable6.Name = "xrTable6";
     this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
     this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
     this.xrTable6.StylePriority.UseBorders = false;
     this.xrTable6.StylePriority.UseFont = false;
     this.xrTable6.StylePriority.UseTextAlignment = false;
     this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight = 1.0847216847737626D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
     this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:0.00 VND}";
     this.xrTableCell9.Summary = xrSummary3;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight = 5.4152783152262369D;
     //
     // lbchu
     //
     this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.lbchu.Name = "lbchu";
     this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbchu.SizeF = new System.Drawing.SizeF(623.7981F, 20F);
     this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
     //
     // GroupFooter2
     //
     this.GroupFooter2.HeightF = 20.45835F;
     this.GroupFooter2.Name = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 132.7916F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text = "Nhân viên giao hàng";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.DeliverPhone")});
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 208.5001F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Deliver")});
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 192.5001F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(72.79218F, 91.79156F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(514.6667F, 16F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "- Vui lòng kiểm tra kỹ hàng trước khi nhận. Nhân viên bán hàng không được nhận ti" +
         "ền và hàng hóa.";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238F);
     this.xrPageBreak1.Name = "xrPageBreak1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 132.7916F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "Khách hàng";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 208.5001F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // dsMultiInvoicesToPrint1
     //
     this.dsMultiInvoicesToPrint1.DataSetName = "dsMultiInvoicesToPrint";
     this.dsMultiInvoicesToPrint1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2,
         this.GroupFooter3});
     this.DetailReport.DataMember = "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere";
     this.DetailReport.DataSource = this.dsMultiInvoicesToPrint1;
     this.DetailReport.Level = 0;
     this.DetailReport.Name = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail1.HeightF = 20F;
     this.Detail1.Name = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel17,
         this.xrLabel4,
         this.xrTable3,
         this.xrLabel20,
         this.xrLabel3,
         this.xrLabel5,
         this.xrPageBreak1,
         this.xrLabel1,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel9,
         this.xrLabel11});
     this.GroupFooter3.HeightF = 250F;
     this.GroupFooter3.Name = "GroupFooter3";
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.Text = "CK(%)";
     this.xrTableCell17.Weight = 0.44682014695324773D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Disco" +
                 "unt", "{0:n2}")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell35.StylePriority.UsePadding = false;
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell35.Weight = 0.4455766067495005D;
     //
     // invoicesSelectByWhereTableAdapter1
     //
     this.invoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // productsInInvoicesSelectByWhereTableAdapter1
     //
     this.productsInInvoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // rptMultiInvoicesToPrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupFooter2,
         this.DetailReport});
     this.DataAdapter = this.productsInInvoicesSelectByWhereTableAdapter1;
     this.DataMember = "InvoicesSelectByWhere";
     this.DataSource = this.dsMultiInvoicesToPrint1;
     this.Margins = new System.Drawing.Printing.Margins(49, 50, 20, 0);
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(ParentHoursReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PatientName       = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName      = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.CaseID            = new DevExpress.XtraReports.Parameters.Parameter();
     this.StartDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.EndDate           = new DevExpress.XtraReports.Parameters.Parameter();
     this.BCBAName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.BCBASignature     = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderSignature = new DevExpress.XtraReports.UI.CalculatedField();
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel31         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel30         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1  = new DevExpress.XtraReports.UI.CalculatedField();
     this.FinalizationID    = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderID        = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProviderTypeLabel = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName     = "DataField";
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.Visible       = false;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Dpi           = 100F;
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(423.1246F, 9.999974F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(33.48204F, 18.37179F);
     this.xrLabel18.StyleName     = "FieldCaption";
     this.xrLabel18.Text          = "Hrs";
     //
     // xrLabel13
     //
     this.xrLabel13.Dpi           = 100F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(323.7936F, 9.999974F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(75.00002F, 18.37179F);
     this.xrLabel13.StyleName     = "FieldCaption";
     this.xrLabel13.Text          = "Time Out";
     //
     // xrLabel10
     //
     this.xrLabel10.Dpi           = 100F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(225.5297F, 9.999974F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(71.18059F, 18.37179F);
     this.xrLabel10.StyleName     = "FieldCaption";
     this.xrLabel10.Text          = "Time In";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(124.7159F, 9.999974F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(72.68874F, 18.37179F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Date";
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi           = 100F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(480.4332F, 9.999974F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(56.95837F, 18.37178F);
     this.xrLabel8.StyleName     = "FieldCaption";
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Service";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 1.041635F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLine2
     //
     this.xrLine2.Dpi           = 100F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(5.999947F, 28.37181F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(696F, 2F);
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 45.66663F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi           = 100F;
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(81.74996F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrPictureBox1,
         this.xrLabel19,
         this.xrLabel2,
         this.xrLabel17
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 207.1488F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(512.6127F, 174.5655F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(51.86224F, 20.66664F);
     this.xrLabel22.StyleName                      = "Title";
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "through";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.StartDate", "{0:M/d/yyyy}")
     });
     this.xrLabel21.Dpi           = 100F;
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(411.2205F, 174.5655F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text          = "xrLabel21";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel20
     //
     this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.EndDate", "{0:M/d/yyyy}")
     });
     this.xrLabel20.Dpi           = 100F;
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(564.4752F, 174.5655F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.Text          = "xrLabel20";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(6.000019F, 1.999991F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                   = 100F;
     this.xrLabel19.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel19.LocationFloat         = new DevExpress.Utils.PointFloat(174.75F, 18.66668F);
     this.xrLabel19.Multiline             = true;
     this.xrLabel19.Name                  = "xrLabel19";
     this.xrLabel19.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                 = new System.Drawing.SizeF(308.9399F, 105.2917F);
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                            " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                            "ppliedabc.com";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.PatientName")
     });
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(401.0257F, 143.5655F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(276.4063F, 31F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi           = 100F;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 143.5655F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(276.8622F, 38.99998F);
     this.xrLabel17.StyleName     = "Title";
     this.xrLabel17.Text          = "Patient Hours Detail";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 24F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_PatientHoursReportDetail";
     this.PatientName.Expression = "[PatientLastName] + \', \' + [PatientFirstName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderName.Expression = "[ProviderLastName] + \', \' + [ProviderFirstName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "CoreConnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "webreports_PatientHoursReportDetail";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter2.Name  = "@StartDate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter3.Name  = "@EndDate";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "webreports.PatientHoursReportDetail";
     storedProcQuery2.Name           = "webreports_PatientHoursReportDetailSignatures";
     queryParameter4.Name            = "@CaseID";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter5.Name            = "@StartDate";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter6.Name            = "@EndDate";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.Parameters.Add(queryParameter5);
     storedProcQuery2.Parameters.Add(queryParameter6);
     storedProcQuery2.StoredProcName = "webreports.PatientHoursReportDetailSignatures";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // CaseID
     //
     this.CaseID.Description = "Case ID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "0";
     //
     // StartDate
     //
     this.StartDate.Description = "Start Date";
     this.StartDate.Name        = "StartDate";
     this.StartDate.Type        = typeof(System.DateTime);
     //
     // EndDate
     //
     this.EndDate.Description = "End Date";
     this.EndDate.Name        = "EndDate";
     this.EndDate.Type        = typeof(System.DateTime);
     //
     // BCBAName
     //
     this.BCBAName.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBAName.Expression = "[reportedBCBALastName] + \', \' + [reportedBCBAFirstName]";
     this.BCBAName.Name       = "BCBAName";
     //
     // BCBASignature
     //
     this.BCBASignature.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBASignature.Expression = "[reportedBCBAFirstName] + \' \' + [reportedBCBALastName]";
     this.BCBASignature.Name       = "BCBASignature";
     //
     // ProviderSignature
     //
     this.ProviderSignature.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderSignature.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderSignature.Name       = "ProviderSignature";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader
     });
     this.DetailReport1.DataMember   = "webreports_PatientHoursReportDetail";
     this.DetailReport1.DataSource   = this.sqlDataSource1;
     this.DetailReport1.Dpi          = 100F;
     this.DetailReport1.FilterString = "[ProviderID] = ?ProviderID";
     this.DetailReport1.Level        = 0;
     this.DetailReport1.Name         = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16,
         this.xrLabel12,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel1,
         this.xrLabel28
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ID")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(41.24997F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(59.50743F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ServiceCode")
     });
     this.xrLabel12.Dpi                   = 100F;
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(480.4332F, 0F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(56.95837F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTotal")
     });
     this.xrLabel9.Dpi                   = 100F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(423.1246F, 0F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(33.48203F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "xrLabel9";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeOut", "{0:h:mm tt}")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(323.7936F, 0F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(75.00002F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeIn", "{0:h:mm tt}")
     });
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(225.5295F, 0F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(71.1806F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel28.Dpi                            = 100F;
     this.xrLabel28.Font                           = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(124.7159F, 0F);
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(72.68874F, 15F);
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "xrLabel11";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel8,
         this.xrLabel3,
         this.xrLabel10,
         this.xrLabel13,
         this.xrLabel18,
         this.xrLine1,
         this.xrLine2
     });
     this.GroupHeader2.Dpi             = 100F;
     this.GroupHeader2.HeightF         = 31.25F;
     this.GroupHeader2.Name            = "GroupHeader2";
     this.GroupHeader2.RepeatEveryPage = true;
     //
     // xrLabel15
     //
     this.xrLabel15.Dpi           = 100F;
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(41.24997F, 9.999974F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(59.50743F, 18.37179F);
     this.xrLabel15.StyleName     = "FieldCaption";
     this.xrLabel15.Text          = "ID";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel31,
         this.xrLabel30,
         this.xrLine3,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 86.12499F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLabel31
     //
     this.xrLabel31.Dpi                   = 100F;
     this.xrLabel31.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLabel31.LocationFloat         = new DevExpress.Utils.PointFloat(510.7407F, 55.25004F);
     this.xrLabel31.Name                  = "xrLabel31";
     this.xrLabel31.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.SizeF                 = new System.Drawing.SizeF(89.58331F, 23F);
     this.xrLabel31.StyleName             = "Title";
     this.xrLabel31.StylePriority.UseFont = false;
     this.xrLabel31.Text                  = "Signature ID:";
     //
     // xrLabel30
     //
     this.xrLabel30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.FinalizationID")
     });
     this.xrLabel30.Dpi           = 100F;
     this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(600.324F, 55.25004F);
     this.xrLabel30.Name          = "xrLabel30";
     this.xrLabel30.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.SizeF         = new System.Drawing.SizeF(101.6758F, 23F);
     this.xrLabel30.Text          = "xrLabel30";
     //
     // xrLine3
     //
     this.xrLine3.Dpi           = 100F;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 9.999974F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                   = 100F;
     this.xrLabel27.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel27.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.25002F);
     this.xrLabel27.Name                  = "xrLabel27";
     this.xrLabel27.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                 = new System.Drawing.SizeF(175.8206F, 23F);
     this.xrLabel27.StyleName             = "Title";
     this.xrLabel27.StylePriority.UseFont = false;
     this.xrLabel27.Text                  = "Electronically signed:";
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.LatestSignoffDate")
     });
     this.xrLabel26.Dpi           = 100F;
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(510.7407F, 32.25002F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(191.2593F, 23F);
     this.xrLabel26.Text          = "xrLabel26";
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderSignature")
     });
     this.xrLabel25.Dpi                            = 100F;
     this.xrLabel25.Font                           = new System.Drawing.Font("Kunstler Script", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel25.LocationFloat                  = new DevExpress.Utils.PointFloat(213.3768F, 20.41664F);
     this.xrLabel25.Name                           = "xrLabel25";
     this.xrLabel25.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                          = new System.Drawing.SizeF(283.3333F, 44.875F);
     this.xrLabel25.StylePriority.UseFont          = false;
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     this.xrLabel25.Text                           = "xrLabel25";
     this.xrLabel25.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel23,
         this.xrLabel24
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 69.79166F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderTypeLabel")
     });
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(157.9349F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "xrLabel23";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderName")
     });
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.99999F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(389.5833F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "xrLabel24";
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember  = "webreports_PatientHoursReportDetailSignatures";
     this.calculatedField1.DisplayName = "ProviderSignature";
     this.calculatedField1.Expression  = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.calculatedField1.Name        = "calculatedField1";
     //
     // FinalizationID
     //
     this.FinalizationID.DataMember = "webreports_PatientHoursReportDetail";
     this.FinalizationID.Expression = "ToInt(Rnd() * 100000)";
     this.FinalizationID.Name       = "FinalizationID";
     //
     // ProviderID
     //
     this.ProviderID.Description = "Provider ID";
     this.ProviderID.Name        = "ProviderID";
     this.ProviderID.Type        = typeof(int);
     this.ProviderID.ValueInfo   = "0";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderTypeLabel.Expression = "Iif([ProviderTypeCode] = \'BCBA\', \'BCBA\', \'Behavior Technician\')";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // ParentHoursReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.BCBAName,
         this.BCBASignature,
         this.ProviderSignature,
         this.calculatedField1,
         this.FinalizationID,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(74, 64, 100, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.StartDate,
         this.EndDate,
         this.ProviderID
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "16.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppGroupHeaderBand1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppDetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter3 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.HeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelstrMemberName = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelMembershipID = new DevExpress.XtraReports.UI.XRLabel();
     this.ppChildReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel29,
     this.xrLabel28});
     this.Detail.Font = new System.Drawing.Font("Arial", 8.5F);
     this.Detail.Height = 18;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.mAmount", "{0:$0.00}")});
     this.xrLabel29.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel29.Location = new System.Drawing.Point(208, 0);
     this.xrLabel29.Name = "xrLabel29";
     this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.Size = new System.Drawing.Size(92, 17);
     this.xrLabel29.Text = "xrLabel29";
     this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.strPaymentCode", "")});
     this.xrLabel28.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel28.Location = new System.Drawing.Point(25, 0);
     this.xrLabel28.Name = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.Size = new System.Drawing.Size(158, 17);
     this.xrLabel28.Text = "xrLabel28";
     this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel1.Location = new System.Drawing.Point(25, 92);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.Size = new System.Drawing.Size(92, 17);
     this.xrLabel1.Text = "Membership ID:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail1});
     this.DetailReport1.DataMember = "TblReceipt.Receipt_ReceiptFreebie_Relation";
     this.DetailReport1.Level = 2;
     this.DetailReport1.Name = "DetailReport1";
     this.DetailReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel43,
     this.xrLabel16,
     this.xrLabel15});
     this.Detail1.Height = 25;
     this.Detail1.Name = "Detail1";
     this.Detail1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel43
     //
     this.xrLabel43.Location = new System.Drawing.Point(25, 0);
     this.xrLabel43.Name = "xrLabel43";
     this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.Size = new System.Drawing.Size(83, 25);
     this.xrLabel43.Text = "Free Product :";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strDescription", "")});
     this.xrLabel16.Location = new System.Drawing.Point(108, 0);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.Size = new System.Drawing.Size(283, 25);
     this.xrLabel16.Text = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strItemCode", "")});
     this.xrLabel15.Location = new System.Drawing.Point(392, 0);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.Size = new System.Drawing.Size(100, 25);
     this.xrLabel15.Text = "xrLabel15";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel15.Visible = false;
     //
     // ppGroupHeaderBand1
     //
     this.ppGroupHeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppGroupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("strReceiptNo", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.ppGroupHeaderBand1.Height = 0;
     this.ppGroupHeaderBand1.Name = "ppGroupHeaderBand1";
     this.ppGroupHeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppGroupHeaderBand1.RepeatEveryPage = true;
     this.ppGroupHeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel21.Location = new System.Drawing.Point(25, 75);
     this.xrLabel21.Name = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.Size = new System.Drawing.Size(92, 17);
     this.xrLabel21.Text = "Total Payable:";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strFooter1", "")});
     this.xrLabel47.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel47.Location = new System.Drawing.Point(25, 42);
     this.xrLabel47.Multiline = true;
     this.xrLabel47.Name = "xrLabel47";
     this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.Size = new System.Drawing.Size(308, 17);
     this.xrLabel47.Text = "xrLabel34";
     this.xrLabel47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine2
     //
     this.xrLine2.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine2.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine2.Location = new System.Drawing.Point(8, 100);
     this.xrLine2.Name = "xrLine2";
     this.xrLine2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine2.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mNettAmount", "{0:$0.00}")});
     this.xrLabel25.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel25.Location = new System.Drawing.Point(208, 42);
     this.xrLabel25.Name = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.Size = new System.Drawing.Size(100, 14);
     this.xrLabel25.Text = "xrLabel25";
     this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.nQuantity", "")});
     this.xrLabel10.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel10.Location = new System.Drawing.Point(25, 0);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.Size = new System.Drawing.Size(17, 17);
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppDetailBand1
     //
     this.ppDetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel14,
     this.xrPanel1,
     this.xrLabel13,
     this.xrLabel11,
     this.xrLabel10});
     this.ppDetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppDetailBand1.Height = 47;
     this.ppDetailBand1.Name = "ppDetailBand1";
     this.ppDetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppDetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strFreebieCode", "")});
     this.xrLabel14.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel14.Location = new System.Drawing.Point(208, 33);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.Size = new System.Drawing.Size(117, 14);
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel17,
     this.xrLabel42,
     this.xrLabel44});
     this.xrPanel1.Location = new System.Drawing.Point(192, 17);
     this.xrPanel1.Name = "xrPanel1";
     this.xrPanel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrPanel1.Size = new System.Drawing.Size(141, 16);
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.Location = new System.Drawing.Point(58, 0);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.Size = new System.Drawing.Size(8, 25);
     this.xrLabel17.Text = ")";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel42.Location = new System.Drawing.Point(0, 0);
     this.xrLabel42.Name = "xrLabel42";
     this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.Size = new System.Drawing.Size(16, 25);
     this.xrLabel42.Text = "($";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.DiscountAmt", "")});
     this.xrLabel44.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel44.Location = new System.Drawing.Point(17, 0);
     this.xrLabel44.Name = "xrLabel44";
     this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.Size = new System.Drawing.Size(41, 16);
     this.xrLabel44.Text = "ItemdiscountAmt";
     this.xrLabel44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.mUnitPrice", "{0:$0.00}")});
     this.xrLabel13.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel13.Location = new System.Drawing.Point(208, 0);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.Size = new System.Drawing.Size(116, 15);
     this.xrLabel13.Text = "xrLabel13";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strDescription", "")});
     this.xrLabel11.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel11.Location = new System.Drawing.Point(42, 0);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.Size = new System.Drawing.Size(141, 19);
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel4.Location = new System.Drawing.Point(25, 125);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.Size = new System.Drawing.Size(83, 17);
     this.xrLabel4.Text = "Cashier ID:";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel22,
     this.xrLabel41,
     this.xrLabel12,
     this.xrLine3,
     this.xrLine2,
     this.xrLabel30,
     this.xrLabel27,
     this.xrLabel26,
     this.xrLabel25,
     this.xrLabel24,
     this.xrLabel23,
     this.xrLabel21,
     this.xrLabel20,
     this.xrLabel18,
     this.xrLabel19});
     this.ReportFooter.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter.Height = 125;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mSubTotal", "{0:$0.00}")});
     this.xrLabel22.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel22.Location = new System.Drawing.Point(208, 8);
     this.xrLabel22.Name = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.Size = new System.Drawing.Size(116, 17);
     this.xrLabel22.Text = "xrLabel22";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel41
     //
     this.xrLabel41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GstTax", "")});
     this.xrLabel41.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel41.Location = new System.Drawing.Point(25, 58);
     this.xrLabel41.Name = "xrLabel41";
     this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel41.Size = new System.Drawing.Size(17, 16);
     this.xrLabel41.Text = "xrLabel41";
     this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel12.Location = new System.Drawing.Point(25, 8);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.Size = new System.Drawing.Size(75, 17);
     this.xrLabel12.Text = "SubTotal:";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine3
     //
     this.xrLine3.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine3.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine3.Location = new System.Drawing.Point(8, 0);
     this.xrLine3.Name = "xrLine3";
     this.xrLine3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine3.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel30
     //
     this.xrLabel30.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel30.Location = new System.Drawing.Point(25, 108);
     this.xrLabel30.Name = "xrLabel30";
     this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.Size = new System.Drawing.Size(92, 17);
     this.xrLabel30.Text = "TENDERED:";
     this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mTotalAmount", "{0:$0.00}")});
     this.xrLabel27.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel27.Location = new System.Drawing.Point(208, 75);
     this.xrLabel27.Name = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.Size = new System.Drawing.Size(100, 23);
     this.xrLabel27.Text = "xrLabel27";
     this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mGSTAmount", "{0:$0.00}")});
     this.xrLabel26.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel26.Location = new System.Drawing.Point(208, 58);
     this.xrLabel26.Name = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.Size = new System.Drawing.Size(100, 16);
     this.xrLabel26.Text = "xrLabel26";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.DiscountAmt", "{0:$0.00}")});
     this.xrLabel24.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel24.Location = new System.Drawing.Point(208, 25);
     this.xrLabel24.Name = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.Size = new System.Drawing.Size(100, 16);
     this.xrLabel24.Text = "xrLabel24";
     this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strFreebieCode", "")});
     this.xrLabel23.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel23.Location = new System.Drawing.Point(117, 25);
     this.xrLabel23.Name = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.Size = new System.Drawing.Size(91, 16);
     this.xrLabel23.Text = "xrLabel23";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel20.Location = new System.Drawing.Point(42, 58);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.Size = new System.Drawing.Size(67, 17);
     this.xrLabel20.Text = "% GST:";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel18.Location = new System.Drawing.Point(25, 25);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.Size = new System.Drawing.Size(83, 17);
     this.xrLabel18.Text = "Bill Discount:";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel19.Location = new System.Drawing.Point(25, 42);
     this.xrLabel19.Name = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.Size = new System.Drawing.Size(75, 17);
     this.xrLabel19.Text = "Nett Value:";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.ReportFooter1});
     this.DetailReport.DataMember = "TblReceipt.Receipt_ReceiptPayment_Relation";
     this.DetailReport.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailReport.Level = 1;
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter1
     //
     this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel49,
     this.xrLabel48,
     this.xrLabel7,
     this.xrLabel6});
     this.ReportFooter1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter1.Height = 49;
     this.ReportFooter1.Name = "ReportFooter1";
     this.ReportFooter1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.ReportFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportFooter1_BeforePrint);
     //
     // xrLabel49
     //
     this.xrLabel49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mOutstandingAmount", "{0:$0.00}")});
     this.xrLabel49.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel49.Location = new System.Drawing.Point(208, 17);
     this.xrLabel49.Name = "xrLabel49";
     this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.Size = new System.Drawing.Size(75, 17);
     this.xrLabel49.Text = "xrLabel36";
     this.xrLabel49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel48
     //
     this.xrLabel48.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel48.Location = new System.Drawing.Point(25, 17);
     this.xrLabel48.Name = "xrLabel48";
     this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.Size = new System.Drawing.Size(183, 17);
     this.xrLabel48.Text = "OutStanding Amount :";
     this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel7.Location = new System.Drawing.Point(25, 0);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Size = new System.Drawing.Size(183, 17);
     this.xrLabel7.Text = "GST Collected For this Bill:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GSTPaid", "{0:$0.00}")});
     this.xrLabel6.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel6.Location = new System.Drawing.Point(208, 0);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Size = new System.Drawing.Size(75, 17);
     this.xrLabel6.Text = "xrLabel36";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine4
     //
     this.xrLine4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine4.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine4.Location = new System.Drawing.Point(8, 0);
     this.xrLine4.Name = "xrLine4";
     this.xrLine4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine4.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel31
     //
     this.xrLabel31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader1", "")});
     this.xrLabel31.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel31.Location = new System.Drawing.Point(25, 0);
     this.xrLabel31.Name = "xrLabel31";
     this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.Size = new System.Drawing.Size(317, 17);
     this.xrLabel31.Text = "xrLabel31";
     this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter3
     //
     this.ReportFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel47,
     this.xrLabel40,
     this.xrLine4,
     this.xrLabel36,
     this.xrLabel35});
     this.ReportFooter3.Name = "ReportFooter3";
     //
     // xrLabel40
     //
     this.xrLabel40.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel40.Location = new System.Drawing.Point(25, 67);
     this.xrLabel40.Multiline = true;
     this.xrLabel40.Name = "xrLabel40";
     this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel40.Size = new System.Drawing.Size(308, 17);
     this.xrLabel40.Text = "Amore Fitness is an award winning company and its once again cerfitied ISO9001:20" +
         "08 for quality assurance and service execellence";
     this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.RewardPoint", "")});
     this.xrLabel36.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel36.Location = new System.Drawing.Point(208, 17);
     this.xrLabel36.Name = "xrLabel36";
     this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.Size = new System.Drawing.Size(100, 17);
     this.xrLabel36.Text = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel35
     //
     this.xrLabel35.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel35.Location = new System.Drawing.Point(25, 17);
     this.xrLabel35.Name = "xrLabel35";
     this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.Size = new System.Drawing.Size(200, 17);
     this.xrLabel35.Text = "BALANCE REWARDS POINTS: ";
     this.xrLabel35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel45,
     this.xrLabel46});
     this.Detail3.Height = 25;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_FreePackage_Relation.strDescription", "")});
     this.xrLabel45.Location = new System.Drawing.Point(108, 0);
     this.xrLabel45.Name = "xrLabel45";
     this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.Size = new System.Drawing.Size(284, 25);
     this.xrLabel45.Text = "xrLabel45";
     this.xrLabel45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel46
     //
     this.xrLabel46.Location = new System.Drawing.Point(25, 0);
     this.xrLabel46.Name = "xrLabel46";
     this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.Size = new System.Drawing.Size(100, 25);
     this.xrLabel46.Text = "Free Package :";
     this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailBand1
     //
     this.DetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLine1,
     this.xrLabel9});
     this.DetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailBand1.Height = 25;
     this.DetailBand1.Name = "DetailBand1";
     this.DetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine1
     //
     this.xrLine1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine1.Location = new System.Drawing.Point(8, 17);
     this.xrLine1.Name = "xrLine1";
     this.xrLine1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine1.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel9.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel9.Location = new System.Drawing.Point(42, 0);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.Size = new System.Drawing.Size(100, 17);
     this.xrLabel9.Text = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel9.Visible = false;
     //
     // xrLabel33
     //
     this.xrLabel33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader3", "")});
     this.xrLabel33.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel33.Location = new System.Drawing.Point(25, 33);
     this.xrLabel33.Name = "xrLabel33";
     this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel33.Size = new System.Drawing.Size(317, 16);
     this.xrLabel33.Text = "xrLabel33";
     this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nSalespersonID", "")});
     this.xrLabel3.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel3.Location = new System.Drawing.Point(117, 108);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.Size = new System.Drawing.Size(108, 19);
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel39
     //
     this.xrLabel39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel39.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel39.Location = new System.Drawing.Point(33, 142);
     this.xrLabel39.Name = "xrLabel39";
     this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel39.Size = new System.Drawing.Size(75, 17);
     this.xrLabel39.Text = "xrLabel6";
     this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.dtDate", "{0:dddd, dd MMMM yyyy}")});
     this.xrLabel37.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel37.Location = new System.Drawing.Point(108, 142);
     this.xrLabel37.Name = "xrLabel37";
     this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.Size = new System.Drawing.Size(234, 17);
     this.xrLabel37.Text = "xrLabel37";
     this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel32
     //
     this.xrLabel32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader2", "")});
     this.xrLabel32.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel32.Location = new System.Drawing.Point(25, 17);
     this.xrLabel32.Name = "xrLabel32";
     this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel32.Size = new System.Drawing.Size(317, 17);
     this.xrLabel32.Text = "xrLabel32";
     this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel2.Location = new System.Drawing.Point(25, 108);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.Size = new System.Drawing.Size(92, 17);
     this.xrLabel2.Text = "Salesperson ID:";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail3,
     this.ReportFooter3});
     this.DetailReport3.DataMember = "TblReceipt.Receipt_FreePackage_Relation";
     this.DetailReport3.Level = 3;
     this.DetailReport3.Name = "DetailReport3";
     //
     // HeaderBand1
     //
     this.HeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel8,
     this.xrLabel39,
     this.xrLabel38,
     this.xrLabel37,
     this.xrLabel34,
     this.xrLabel33,
     this.xrLabel32,
     this.xrLabel31,
     this.xrLabel5,
     this.xrLabel4,
     this.xrLabel3,
     this.xrLabel2,
     this.xrLabelstrMemberName,
     this.xrLabelMembershipID,
     this.xrLabel1});
     this.HeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.HeaderBand1.Height = 159;
     this.HeaderBand1.Name = "HeaderBand1";
     this.HeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.HeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader5", "")});
     this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel8.Location = new System.Drawing.Point(25, 67);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.Size = new System.Drawing.Size(317, 17);
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel38
     //
     this.xrLabel38.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel38.Location = new System.Drawing.Point(25, 142);
     this.xrLabel38.Name = "xrLabel38";
     this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.Size = new System.Drawing.Size(17, 17);
     this.xrLabel38.Text = "#";
     this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel34
     //
     this.xrLabel34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader4", "")});
     this.xrLabel34.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel34.Location = new System.Drawing.Point(25, 50);
     this.xrLabel34.Name = "xrLabel34";
     this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel34.Size = new System.Drawing.Size(317, 17);
     this.xrLabel34.Text = "xrLabel34";
     this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nCashierID", "")});
     this.xrLabel5.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel5.Location = new System.Drawing.Point(117, 125);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.Size = new System.Drawing.Size(83, 19);
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelstrMemberName
     //
     this.xrLabelstrMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMemberName", "")});
     this.xrLabelstrMemberName.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelstrMemberName.Location = new System.Drawing.Point(167, 92);
     this.xrLabelstrMemberName.Name = "xrLabelstrMemberName";
     this.xrLabelstrMemberName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelstrMemberName.Size = new System.Drawing.Size(109, 17);
     this.xrLabelstrMemberName.Text = "Member Name";
     this.xrLabelstrMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelMembershipID
     //
     this.xrLabelMembershipID.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMembershipID", "")});
     this.xrLabelMembershipID.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelMembershipID.Location = new System.Drawing.Point(117, 92);
     this.xrLabelMembershipID.Name = "xrLabelMembershipID";
     this.xrLabelMembershipID.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelMembershipID.Size = new System.Drawing.Size(58, 17);
     this.xrLabelMembershipID.Text = "xrLabelMembershipID";
     this.xrLabelMembershipID.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppChildReport1
     //
     this.ppChildReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.ppDetailBand1,
     this.ReportFooter});
     this.ppChildReport1.DataMember = "TblReceipt.Receipt_ReceiptEntries_Relation";
     this.ppChildReport1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppChildReport1.Name = "ppChildReport1";
     this.ppChildReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppChildReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Receipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.DetailBand1,
     this.HeaderBand1,
     this.ppGroupHeaderBand1,
     this.ppChildReport1,
     this.DetailReport,
     this.DetailReport1,
     this.DetailReport3});
     this.DataMember = "TblReceipt";
     this.Margins = new System.Drawing.Printing.Margins(0, 48, 0, 12);
     this.PageHeight = 900;
     this.PageWidth = 544;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.PreviewRowCount = 100;
     this.Version = "8.3";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(BillingReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo2   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     this.Detail                = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.CaseID                = new DevExpress.XtraReports.Parameters.Parameter();
     this.firstDayOfMonthPeriod = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblReportID           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1         = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel26             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter            = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel2              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BillingReportDS       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.DetailReport          = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel24             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1               = new DevExpress.XtraReports.UI.XRLine();
     this.xrPanel2              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel6              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9              = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1         = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel18             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12             = new DevExpress.XtraReports.UI.XRLabel();
     this.PatientName           = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderTypeLabel     = new DevExpress.XtraReports.UI.CalculatedField();
     this.BillingRef            = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 16.75002F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 20.83333F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // CaseID
     //
     this.CaseID.Description = "CaseID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "383";
     this.CaseID.Visible     = false;
     //
     // firstDayOfMonthPeriod
     //
     this.firstDayOfMonthPeriod.Name      = "firstDayOfMonthPeriod";
     this.firstDayOfMonthPeriod.Type      = typeof(System.DateTime);
     this.firstDayOfMonthPeriod.ValueInfo = "2016-05-01";
     this.firstDayOfMonthPeriod.Visible   = false;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportID,
         this.xrLabel27,
         this.xrLabel1,
         this.xrPictureBox1,
         this.xrLabel26
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 136.25F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblReportID
     //
     this.lblReportID.Dpi                        = 100F;
     this.lblReportID.Font                       = new System.Drawing.Font("Trebuchet MS", 14F);
     this.lblReportID.ForeColor                  = System.Drawing.Color.Red;
     this.lblReportID.LocationFloat              = new DevExpress.Utils.PointFloat(649.5993F, 0F);
     this.lblReportID.Name                       = "lblReportID";
     this.lblReportID.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportID.SizeF                      = new System.Drawing.SizeF(100F, 23F);
     this.lblReportID.StylePriority.UseFont      = false;
     this.lblReportID.StylePriority.UseForeColor = false;
     this.lblReportID.Text                       = "PREVIEW";
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                            = 100F;
     this.xrLabel27.Font                           = new System.Drawing.Font("Trebuchet MS", 14F);
     this.xrLabel27.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 0F);
     this.xrLabel27.Name                           = "xrLabel27";
     this.xrLabel27.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                          = new System.Drawing.SizeF(138.7019F, 23F);
     this.xrLabel27.StylePriority.UseFont          = false;
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     this.xrLabel27.Text                           = "Billing Report:";
     this.xrLabel27.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(168.75F, 16.66667F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(328.2852F, 105.2917F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                           " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                           "ppliedabc.com";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.firstDayOfMonthPeriod, "Text", "{0:MMMM, yyyy}")
     });
     this.xrLabel26.Dpi                            = 100F;
     this.xrLabel26.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel26.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 23F);
     this.xrLabel26.Name                           = "xrLabel26";
     this.xrLabel26.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF                          = new System.Drawing.SizeF(138.7019F, 23.00001F);
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrLabel2,
         this.xrPageInfo1
     });
     this.PageFooter.Dpi     = 100F;
     this.PageFooter.HeightF = 25F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                   = 100F;
     this.xrPageInfo2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageInfo2.Name                  = "xrPageInfo2";
     this.xrPageInfo2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo              = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                 = new System.Drawing.SizeF(212.9808F, 23F);
     this.xrPageInfo2.StylePriority.UseFont = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                   = 100F;
     this.xrLabel2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(640.625F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(35.41667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Page";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                   = 100F;
     this.xrPageInfo1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo1.LocationFloat         = new DevExpress.Utils.PointFloat(676.0417F, 0F);
     this.xrPageInfo1.Name                  = "xrPageInfo1";
     this.xrPageInfo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                 = new System.Drawing.SizeF(63.95831F, 23F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // BillingReportDS
     //
     this.BillingReportDS.ConnectionName = "CoreConnection";
     this.BillingReportDS.Name           = "BillingReportDS";
     storedProcQuery1.Name = "webreports_BillingCaseInfo";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "webreports.BillingCaseInfo";
     storedProcQuery2.Name           = "webreports_BillingProviderInfo";
     queryParameter2.Name            = "@CaseID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter3.Name            = "@FirstDayOfMonth";
     queryParameter3.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter4.Name            = "@BillingRef";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.Parameters.Add(queryParameter3);
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.StoredProcName = "webreports.BillingProviderInfo";
     storedProcQuery3.Name           = "webreports_BillingHoursInfo";
     queryParameter5.Name            = "@CaseID";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter6.Name            = "@FirstDayOfMonth";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter7.Name            = "@BillingRef";
     queryParameter7.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery3.Parameters.Add(queryParameter5);
     storedProcQuery3.Parameters.Add(queryParameter6);
     storedProcQuery3.Parameters.Add(queryParameter7);
     storedProcQuery3.StoredProcName = "webreports.BillingHoursInfo";
     this.BillingReportDS.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2,
         storedProcQuery3
     });
     masterDetailInfo1.DetailQueryName   = "webreports_BillingProviderInfo";
     relationColumnInfo1.NestedKeyColumn = "CaseID";
     relationColumnInfo1.ParentKeyColumn = "CaseID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName   = "webreports_BillingCaseInfo";
     masterDetailInfo2.DetailQueryName   = "webreports_BillingHoursInfo";
     relationColumnInfo2.NestedKeyColumn = "ProviderID";
     relationColumnInfo2.ParentKeyColumn = "ProviderID";
     masterDetailInfo2.KeyColumns.Add(relationColumnInfo2);
     masterDetailInfo2.MasterQueryName = "webreports_BillingProviderInfo";
     this.BillingReportDS.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1,
         masterDetailInfo2
     });
     this.BillingReportDS.ResultSchemaSerializable = resources.GetString("BillingReportDS.ResultSchemaSerializable");
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1
     });
     this.DetailReport.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.DetailReport.DataSource = this.BillingReportDS;
     this.DetailReport.Dpi        = 100F;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19,
         this.xrLine1,
         this.xrPanel2,
         this.xrPanel1,
         this.xrLabel11,
         this.xrLabel9
     });
     this.Detail1.Dpi     = 100F;
     this.Detail1.HeightF = 128.9295F;
     this.Detail1.Name    = "Detail1";
     //
     // xrLabel24
     //
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(480.1284F, 105.9295F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(269.8717F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "Notes";
     //
     // xrLabel23
     //
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 105.9295F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "Service";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 105.9295F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(55.12814F, 23F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Hours";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Dpi                            = 100F;
     this.xrLabel21.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 105.9295F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Time Out";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Dpi                            = 100F;
     this.xrLabel20.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91676F, 105.9295F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Time In";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                            = 100F;
     this.xrLabel19.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(9.781275E-05F, 105.9295F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Date";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(9.781275E-05F, 98.15387F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(750F, 2F);
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel5
     });
     this.xrPanel2.Dpi           = 100F;
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(400F, 52.15385F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi                            = 100F;
     this.xrLabel17.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 22.99998F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(70.12836F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Phone #:";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel7
     //
     this.xrLabel7.Dpi                            = 100F;
     this.xrLabel7.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(70.12833F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Phone #:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderPrimaryPhone")
     });
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 22.99998F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00002F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "xrLabel8";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientPhone")
     });
     this.xrLabel5.Dpi                   = 100F;
     this.xrLabel5.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 0F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00001F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "xrLabel5";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel10
     });
     this.xrPanel1.Dpi           = 100F;
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(89.98392F, 52.15385F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderName")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 22.99998F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientName")
     });
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 0F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "xrLabel4";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi                            = 100F;
     this.xrLabel3.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 0F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Patient Name:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeLabel")
     });
     this.xrLabel10.Dpi                            = 100F;
     this.xrLabel10.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 22.99998F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Dpi                   = 100F;
     this.xrLabel11.Font                  = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(366.7467F, 10.00001F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Hours";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeCode")
     });
     this.xrLabel9.Dpi                            = 100F;
     this.xrLabel9.Font                           = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(145.5128F, 10.00001F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(221.234F, 31.01283F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "xrLabel9";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                     "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo";
     this.DetailReport1.DataSource = this.BillingReportDS;
     this.DetailReport1.Dpi        = 100F;
     this.DetailReport1.Level      = 0;
     this.DetailReport1.Name       = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23.80127F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursBillable")
     });
     this.xrLabel18.Dpi                            = 100F;
     this.xrLabel18.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 0F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(55.1282F, 23F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "xrLabel18";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursNotes")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(480.1283F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(269.8719F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.ServiceName")
     });
     this.xrLabel15.Dpi                   = 100F;
     this.xrLabel15.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 0F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "xrLabel15";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeOut")
     });
     this.xrLabel14.Dpi                            = 100F;
     this.xrLabel14.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 0F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "xrLabel14";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeIn")
     });
     this.xrLabel13.Dpi                            = 100F;
     this.xrLabel13.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91681F, 0F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel12.Dpi                            = 100F;
     this.xrLabel12.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "xrLabel12";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_BillingCaseInfo";
     this.PatientName.Expression = "[PatientFirstName] + \' \' + [PatientLastName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.ProviderName.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                         "fo";
     this.ProviderTypeLabel.Expression = "[ProviderTypeCode] + \':\'";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // BillingRef
     //
     this.BillingRef.Description = "Parameter1";
     this.BillingRef.Name        = "BillingRef";
     this.BillingRef.ValueInfo   = "PREVIEW";
     this.BillingRef.Visible     = false;
     //
     // BillingReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.DetailReport
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.BillingReportDS
     });
     this.DataMember = "webreports_BillingCaseInfo";
     this.DataSource = this.BillingReportDS;
     this.Margins    = new System.Drawing.Printing.Margins(49, 51, 17, 21);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.firstDayOfMonthPeriod,
         this.BillingRef
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #21
0
        private void CreateDetailReport(XtraReport report, string dataMember)
        {
            // Create a detail report band and bind it to data.
            DetailReportBand detailReportBand = new DetailReportBand();

            report.Bands.Add(detailReportBand);
            detailReportBand.DataSource = report.DataSource;
            detailReportBand.DataMember = dataMember;

            // ---------Add a header to the detail report.---------------
            ReportHeaderBand detailReportHeader = new ReportHeaderBand();

            detailReportBand.Bands.Add(detailReportHeader);

            XRTable tableHeader = new XRTable();

            tableHeader.BeginInit();
            tableHeader.Rows.Add(new XRTableRow());

            //tableHeader.Borders = BorderSide.All;
            tableHeader.BorderColor   = Color.DarkGray;
            tableHeader.Font          = new Font("Tahoma", 9, System.Drawing.FontStyle.Bold);
            tableHeader.Padding       = 10;
            tableHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;

            XRTableCell cellHeader1 = new XRTableCell();

            cellHeader1.Text = "";
            XRTableCell cellHeader2 = new XRTableCell();

            cellHeader2.Text = "Hours";
            XRTableCell cellHeader3 = new XRTableCell();

            cellHeader3.Text = "Salary";
            //cellHeader2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            XRTableCell cellHeader4 = new XRTableCell();

            cellHeader4.Text = "Exp. Hours";
            XRTableCell cellHeader5 = new XRTableCell();

            cellHeader5.Text = "Time In";
            XRTableCell cellHeader6 = new XRTableCell();

            cellHeader6.Text = "Time Out";
            XRTableCell cellHeader7 = new XRTableCell();

            cellHeader7.Text = "Breaks";
            XRTableCell cellHeader8 = new XRTableCell();

            cellHeader8.Text = "Status";

            tableHeader.Rows[0].Cells.AddRange(new XRTableCell[] { cellHeader1, cellHeader2, cellHeader3, cellHeader4, cellHeader5, cellHeader6, cellHeader7, cellHeader8 });
            detailReportHeader.Height = tableHeader.Height;
            detailReportHeader.Controls.Add(tableHeader);

            // Adjust the table width.
            tableHeader.BeforePrint += tableHeader_BeforePrint;
            tableHeader.EndInit();

            //------------ Create the Header (TimeLogs Listing) detail band.--------------
            XRTable tableDetail = new XRTable();

            tableDetail.BeginInit();

            tableDetail.Rows.Add(new XRTableRow());
            tableDetail.Borders       = ((DevExpress.XtraPrinting.BorderSide)(BorderSide.Top | BorderSide.Left | BorderSide.Right | BorderSide.Bottom));
            tableDetail.BorderColor   = Color.DarkGray;
            tableDetail.Font          = new Font("Tahoma", 9);
            tableDetail.Padding       = 10;
            tableDetail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;

            XRTableCell cellDetail1 = new XRTableCell();

            cellDetail1.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".WeekDay")
            });
            cellDetail1.WidthF = 108f;

            XRTableCell cellDetail2 = new XRTableCell();

            cellDetail2.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TotalHours")
            });

            XRTableCell cellDetail3 = new XRTableCell();

            cellDetail3.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TotalSalary")
            });
            //cellDetail3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;

            XRTableCell cellDetail4 = new XRTableCell();

            cellDetail4.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".ExpectedHoursString")
            });
            //cellDetail4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;

            XRTableCell cellDetail5 = new XRTableCell();

            cellDetail5.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TimeIn")
            });
            //cellDetail5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            cellDetail5.EvaluateBinding += DateTimeFormatting_EvaluateBinding;

            XRTableCell cellDetail6 = new XRTableCell();

            cellDetail6.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TimeOut")
            });
            cellDetail6.EvaluateBinding += DateTimeFormatting_EvaluateBinding;

            XRTableCell cellDetail7 = new XRTableCell();

            cellDetail7.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".Breaks")
            });

            XRTableCell cellDetail8 = new XRTableCell();

            cellDetail8.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".Status")
            });
            cellDetail8.Font             = new Font("Tahoma", 8, FontStyle.Regular);
            cellDetail8.EvaluateBinding += CellDetail8_EvaluateBinding;

            tableDetail.Rows[0].Cells.AddRange(new XRTableCell[] { cellDetail1, cellDetail2, cellDetail3, cellDetail4, cellDetail5, cellDetail6, cellDetail7, cellDetail8 });

            DetailBand detailBand = new DetailBand();

            detailBand.Height = tableDetail.Height;
            detailReportBand.Bands.Add(detailBand);
            detailBand.Controls.Add(tableDetail);

            // Adjust the table width.
            tableDetail.BeforePrint += tableDetail_BeforePrint;
            tableDetail.EndInit();

            //---------Add a footer to the detail report.-------------
            ReportFooterBand detailReportFooter = new ReportFooterBand();

            detailReportBand.Bands.Add(detailReportFooter);

            XRTable tableFooter = new XRTable();

            tableFooter.BeginInit();
            tableFooter.Rows.Add(new XRTableRow());

            //tableHeader.Borders = BorderSide.All;
            tableFooter.BorderColor   = Color.DarkGray;
            tableFooter.Font          = new Font("Tahoma", 9, System.Drawing.FontStyle.Bold);
            tableFooter.Padding       = 10;
            tableFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            tableFooter.Borders       = ((DevExpress.XtraPrinting.BorderSide)(BorderSide.Top | BorderSide.Left | BorderSide.Right | BorderSide.Bottom));

            XRSummary summary1 = new XRSummary();

            summary1.Func             = SummaryFunc.Sum;
            summary1.Running          = SummaryRunning.Report;
            summary1.IgnoreNullValues = true;
            //summary1.FormatString = "Total: {0}";

            XRTableCell cellFooter1 = new XRTableCell();

            cellFooter1.Text   = "";
            cellFooter1.WidthF = 108f;

            XRTableCell cellFooter2 = new XRTableCell();

            cellFooter2.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TotalHours")
            });
            cellHeader2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            cellFooter2.Summary       = summary1;

            XRSummary summary2 = new XRSummary();

            summary2.Running          = SummaryRunning.Report;
            summary2.Func             = SummaryFunc.Sum;
            summary2.IgnoreNullValues = true;
            //summary2.FormatString = "Total: {0:$0.00}";

            XRTableCell cellFooter3 = new XRTableCell();

            cellFooter3.DataBindings.AddRange(new XRBinding[] {
                new XRBinding("Text", report.DataSource, dataMember + ".TotalSalary")
            });
            cellFooter3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            cellFooter3.Summary       = summary2;

            XRTableCell cellFooter4 = new XRTableCell();

            cellFooter4.Text = "";
            XRTableCell cellFooter5 = new XRTableCell();

            cellFooter5.Text = "";
            XRTableCell cellFooter6 = new XRTableCell();

            cellFooter6.Text = "";
            XRTableCell cellFooter7 = new XRTableCell();

            cellFooter7.Text = "";
            XRTableCell cellFooter8 = new XRTableCell();

            cellFooter8.Text = "";

            tableFooter.Rows[0].Cells.AddRange(new XRTableCell[] { cellFooter1, cellFooter2, cellFooter3, cellFooter4, cellFooter5, cellFooter6, cellFooter7, cellFooter8 });
            detailReportFooter.Height = tableFooter.Height;
            detailReportFooter.Controls.Add(tableFooter);

            // Adjust the table width.
            tableFooter.BeforePrint += tableHeader_BeforePrint; //just copy from tableHeader
            tableFooter.EndInit();
        }
Пример #22
0
        private void InitializeComponent()
        {
            components = new Container();
            var resources = new ComponentResourceManager(typeof(EmployeeProfile));

            topMarginBand1           = new TopMarginBand();
            xrPictureBox1            = new XRPictureBox();
            detailBand1              = new DetailBand();
            xrTable3                 = new XRTable();
            xrTableRow13             = new XRTableRow();
            xrTableCell20            = new XRTableCell();
            xrTableCell21            = new XRTableCell();
            xrTableRow14             = new XRTableRow();
            xrTableCell22            = new XRTableCell();
            xrTableCell23            = new XRTableCell();
            xrTableRow15             = new XRTableRow();
            xrTableCell24            = new XRTableCell();
            xrTableCell25            = new XRTableCell();
            xrTableRow16             = new XRTableRow();
            xrTableCell26            = new XRTableCell();
            xrTableCell27            = new XRTableCell();
            xrTableRow17             = new XRTableRow();
            xrTableCell28            = new XRTableCell();
            xrTableCell29            = new XRTableCell();
            xrTable2                 = new XRTable();
            xrTableRow8              = new XRTableRow();
            xrTableCell15            = new XRTableCell();
            xrTableRow7              = new XRTableRow();
            xrTableCell14            = new XRTableCell();
            xrTableRow9              = new XRTableRow();
            xrTableCell16            = new XRTableCell();
            xrPictureBox2            = new XRPictureBox();
            bottomMarginBand1        = new BottomMarginBand();
            xrPageInfo2              = new XRPageInfo();
            xrPageInfo1              = new XRPageInfo();
            parameterId              = new Parameter();
            ReportHeader             = new ReportHeaderBand();
            xrTable1                 = new XRTable();
            xrTableRow1              = new XRTableRow();
            xrTableCell1             = new XRTableCell();
            xrTableCell2             = new XRTableCell();
            xrTableCell3             = new XRTableCell();
            DetailReport             = new DetailReportBand();
            Detail                   = new DetailBand();
            xrTable5                 = new XRTable();
            xrTableRow3              = new XRTableRow();
            xrTableCell7             = new XRTableCell();
            xrTableCell8             = new XRTableCell();
            xrTableRow4              = new XRTableRow();
            xrTableCell9             = new XRTableCell();
            xrTableCell10            = new XRTableCell();
            ReportHeader1            = new ReportHeaderBand();
            xrTable4                 = new XRTable();
            xrTableRow2              = new XRTableRow();
            xrTableCell4             = new XRTableCell();
            xrTableCell5             = new XRTableCell();
            xrTableCell6             = new XRTableCell();
            bindingSource1           = new BindingSource(components);
            ShowEvaluationsParameter = new Parameter();
            bindingSource2           = new BindingSource(components);
            DetailReport1            = new DetailReportBand();
            Detail1                  = new DetailBand();
            xrTable7                 = new XRTable();
            xrTableRow6              = new XRTableRow();
            xrTableCell17            = new XRTableCell();
            xrTableCell18            = new XRTableCell();
            xrTableRow10             = new XRTableRow();
            xrTableCell19            = new XRTableCell();
            xrTableCell30            = new XRTableCell();
            ReportHeader2            = new ReportHeaderBand();
            xrTable6                 = new XRTable();
            xrTableRow5              = new XRTableRow();
            xrTableCell11            = new XRTableCell();
            xrTableCell12            = new XRTableCell();
            xrTableCell13            = new XRTableCell();
            DetailReport2            = new DetailReportBand();
            Detail2                  = new DetailBand();
            xrTable9                 = new XRTable();
            xrTableRow12             = new XRTableRow();
            xrTableCell37            = new XRTableCell();
            xrTableCell34            = new XRTableCell();
            xrTableRow18             = new XRTableRow();
            xrTableCell35            = new XRTableCell();
            ReportHeader3            = new ReportHeaderBand();
            xrTable8                 = new XRTable();
            xrTableRow11             = new XRTableRow();
            xrTableCell31            = new XRTableCell();
            xrTableCell32            = new XRTableCell();
            xrTableCell33            = new XRTableCell();
            xrTableCell38            = new XRTableCell();
            ((ISupportInitialize)xrTable3).BeginInit();
            ((ISupportInitialize)xrTable2).BeginInit();
            ((ISupportInitialize)xrTable1).BeginInit();
            ((ISupportInitialize)xrTable5).BeginInit();
            ((ISupportInitialize)xrTable4).BeginInit();
            ((ISupportInitialize)bindingSource1).BeginInit();
            ((ISupportInitialize)bindingSource2).BeginInit();
            ((ISupportInitialize)xrTable7).BeginInit();
            ((ISupportInitialize)xrTable6).BeginInit();
            ((ISupportInitialize)xrTable9).BeginInit();
            ((ISupportInitialize)xrTable8).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            //
            // topMarginBand1
            //
            topMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPictureBox1
            });
            topMarginBand1.Font    = new Font("Segoe UI", 9.75F);
            topMarginBand1.HeightF = 160F;
            topMarginBand1.Name    = "topMarginBand1";
            topMarginBand1.StylePriority.UseFont = false;
            //
            // xrPictureBox1
            //
            xrPictureBox1.Image                    = (Image)resources.GetObject("xrPictureBox1.Image");
            xrPictureBox1.LocationFloat            = new PointFloat(373.765F, 0F);
            xrPictureBox1.Name                     = "xrPictureBox1";
            xrPictureBox1.Padding                  = new PaddingInfo(0, 0, 0, 0, 100F);
            xrPictureBox1.SizeF                    = new SizeF(442.9017F, 160F);
            xrPictureBox1.Sizing                   = ImageSizeMode.Squeeze;
            xrPictureBox1.StylePriority.UsePadding = false;
            //
            // detailBand1
            //
            detailBand1.Controls.AddRange(new XRControl[]
            {
                xrTable3,
                xrTable2,
                xrPictureBox2
            });
            detailBand1.HeightF      = 308.9286F;
            detailBand1.KeepTogether = true;
            detailBand1.Name         = "detailBand1";
            //
            // xrTable3
            //
            xrTable3.LocationFloat = new PointFloat(179.1667F, 181.25F);
            xrTable3.Name          = "xrTable3";
            xrTable3.Padding       = new PaddingInfo(2, 0, 0, 0, 100F);
            xrTable3.Rows.AddRange(new[]
            {
                xrTableRow13,
                xrTableRow14,
                xrTableRow15,
                xrTableRow16,
                xrTableRow17
            });
            xrTable3.SizeF = new SizeF(461.5F, 114.1369F);
            xrTable3.StylePriority.UsePadding = false;
            //
            // xrTableRow13
            //
            xrTableRow13.Cells.AddRange(new[]
            {
                xrTableCell20,
                xrTableCell21
            });
            xrTableRow13.Name   = "xrTableRow13";
            xrTableRow13.Weight = 0.65333328891811748D;
            //
            // xrTableCell20
            //
            xrTableCell20.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableCell20.Name      = "xrTableCell20";
            xrTableCell20.StylePriority.UseForeColor = false;
            xrTableCell20.Text   = "ADRESSE";
            xrTableCell20.Weight = 1.5238964537134105D;
            //
            // xrTableCell21
            //
            xrTableCell21.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableCell21.Name      = "xrTableCell21";
            xrTableCell21.StylePriority.UseForeColor = false;
            xrTableCell21.Text   = "TELEPHONE";
            xrTableCell21.Weight = 1.4761035462865895D;
            //
            // xrTableRow14
            //
            xrTableRow14.Cells.AddRange(new[]
            {
                xrTableCell22,
                xrTableCell23
            });
            xrTableRow14.Name   = "xrTableRow14";
            xrTableRow14.Weight = 0.47484509486472504D;
            //
            // xrTableCell22
            //
            xrTableCell22.Name   = "xrTableCell22";
            xrTableCell22.Text   = "[Address.Line]";
            xrTableCell22.Weight = 1.5238964675999105D;
            //
            // xrTableCell23
            //
            xrTableCell23.Name   = "xrTableCell23";
            xrTableCell23.Text   = "[MobilePhone] (Mobile)";
            xrTableCell23.Weight = 1.4761035324000895D;
            //
            // xrTableRow15
            //
            xrTableRow15.Cells.AddRange(new[]
            {
                xrTableCell24,
                xrTableCell25
            });
            xrTableRow15.Name   = "xrTableRow15";
            xrTableRow15.Weight = 1.2140452917989133D;
            //
            // xrTableCell24
            //
            xrTableCell24.Name   = "xrTableCell24";
            xrTableCell24.Text   = "[Address.CityLine]";
            xrTableCell24.Weight = 1.5238964514898998D;
            //
            // xrTableCell25
            //
            xrTableCell25.Name   = "xrTableCell25";
            xrTableCell25.Text   = "[HomePhone] (Fixe)";
            xrTableCell25.Weight = 1.4761035485101002D;
            //
            // xrTableRow16
            //
            xrTableRow16.Cells.AddRange(new[]
            {
                xrTableCell26,
                xrTableCell27
            });
            xrTableRow16.Name   = "xrTableRow16";
            xrTableRow16.Weight = 0.56444328332196525D;
            //
            // xrTableCell26
            //
            xrTableCell26.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableCell26.Name      = "xrTableCell26";
            xrTableCell26.StylePriority.UseForeColor = false;
            xrTableCell26.Text   = "EMAIL";
            xrTableCell26.Weight = 1.5238964900469829D;
            //
            // xrTableCell27
            //
            xrTableCell27.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableCell27.Name      = "xrTableCell27";
            xrTableCell27.StylePriority.UseForeColor = false;
            xrTableCell27.Text   = "SKYPE";
            xrTableCell27.Weight = 1.4761035099530171D;
            //
            // xrTableRow17
            //
            xrTableRow17.Cells.AddRange(new[]
            {
                xrTableCell28,
                xrTableCell29
            });
            xrTableRow17.Name   = "xrTableRow17";
            xrTableRow17.Weight = 0.50222112518535189D;
            //
            // xrTableCell28
            //
            xrTableCell28.Name   = "xrTableCell28";
            xrTableCell28.Text   = "[Email]";
            xrTableCell28.Weight = 1.523896534941128D;
            //
            // xrTableCell29
            //
            xrTableCell29.Name   = "xrTableCell29";
            xrTableCell29.Text   = "[Skype]";
            xrTableCell29.Weight = 1.476103465058872D;
            //
            // xrTable2
            //
            xrTable2.LocationFloat = new PointFloat(179.1667F, 14.58333F);
            xrTable2.Name          = "xrTable2";
            xrTable2.Padding       = new PaddingInfo(2, 0, 0, 0, 100F);
            xrTable2.Rows.AddRange(new[]
            {
                xrTableRow8,
                xrTableRow7,
                xrTableRow9
            });
            xrTable2.SizeF = new SizeF(462.5F, 129.6131F);
            xrTable2.StylePriority.UsePadding = false;
            //
            // xrTableRow8
            //
            xrTableRow8.Cells.AddRange(new[]
            {
                xrTableCell15
            });
            xrTableRow8.Name   = "xrTableRow8";
            xrTableRow8.Weight = 1.3733330546061278D;
            //
            // xrTableCell15
            //
            xrTableCell15.Font                       = new Font("Segoe UI", 26.25F);
            xrTableCell15.ForeColor                  = Color.FromArgb(234, 178, 144);
            xrTableCell15.Name                       = "xrTableCell15";
            xrTableCell15.StylePriority.UseFont      = false;
            xrTableCell15.StylePriority.UseForeColor = false;
            xrTableCell15.Text                       = "[Prefix].[FullName]";
            xrTableCell15.Weight                     = 3D;
            //
            // xrTableRow7
            //
            xrTableRow7.Cells.AddRange(new[]
            {
                xrTableCell14
            });
            xrTableRow7.Name   = "xrTableRow7";
            xrTableRow7.Weight = 1.7263104059547862D;
            //
            // xrTableCell14
            //
            xrTableCell14.Font                       = new Font("Segoe UI", 14.25F);
            xrTableCell14.ForeColor                  = Color.FromArgb(127, 127, 127);
            xrTableCell14.Name                       = "xrTableCell14";
            xrTableCell14.StylePriority.UseFont      = false;
            xrTableCell14.StylePriority.UseForeColor = false;
            xrTableCell14.Text                       = "[TItle]";
            xrTableCell14.Weight                     = 3D;
            //
            // xrTableRow9
            //
            xrTableRow9.Cells.AddRange(new[]
            {
                xrTableCell16
            });
            xrTableRow9.Name   = "xrTableRow9";
            xrTableRow9.Weight = 0.57521688842586149D;
            //
            // xrTableCell16
            //
            xrTableCell16.Name   = "xrTableCell16";
            xrTableCell16.Text   = "[PersonalProfile]";
            xrTableCell16.Weight = 3D;
            //
            // xrPictureBox2
            //
            xrPictureBox2.BorderColor = Color.FromArgb(217, 217, 217);
            xrPictureBox2.Borders     = BorderSide.Left | BorderSide.Top
                                        | BorderSide.Right
                                        | BorderSide.Bottom;
            xrPictureBox2.BorderWidth = 2F;
            xrPictureBox2.DataBindings.AddRange(new[]
            {
                new XRBinding("Image", null, "Photo")
            });
            xrPictureBox2.LocationFloat = new PointFloat(10.00001F, 10.00001F);
            xrPictureBox2.Name          = "xrPictureBox2";
            xrPictureBox2.SizeF         = new SizeF(154.5417F, 205F);
            xrPictureBox2.Sizing        = ImageSizeMode.ZoomImage;
            xrPictureBox2.StylePriority.UseBorderColor = false;
            xrPictureBox2.StylePriority.UseBorders     = false;
            xrPictureBox2.StylePriority.UseBorderWidth = false;
            //
            // bottomMarginBand1
            //
            bottomMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPageInfo2,
                xrPageInfo1
            });
            bottomMarginBand1.HeightF = 127F;
            bottomMarginBand1.Name    = "bottomMarginBand1";
            //
            // xrPageInfo2
            //
            xrPageInfo2.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo2.Format        = "{0:MMMM dd, yyyy}";
            xrPageInfo2.LocationFloat = new PointFloat(544.5415F, 18.00003F);
            xrPageInfo2.Name          = "xrPageInfo2";
            xrPageInfo2.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo2.PageInfo      = PageInfo.DateTime;
            xrPageInfo2.SizeF         = new SizeF(99.95856F, 23F);
            xrPageInfo2.StylePriority.UseForeColor = false;
            //
            // xrPageInfo1
            //
            xrPageInfo1.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo1.Format        = "Page {0} of {1}";
            xrPageInfo1.LocationFloat = new PointFloat(2.000014F, 18.00003F);
            xrPageInfo1.Name          = "xrPageInfo1";
            xrPageInfo1.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo1.SizeF         = new SizeF(102.0834F, 23.00008F);
            xrPageInfo1.StylePriority.UseForeColor = false;
            //
            // parameterId
            //
            parameterId.Description = "ParameterId";
            parameterId.Name        = "parameterId";
            parameterId.Type        = typeof(Guid);
            parameterId.Visible     = false;
            //
            // ReportHeader
            //
            ReportHeader.Controls.AddRange(new XRControl[]
            {
                xrTable1
            });
            ReportHeader.HeightF = 41F;
            ReportHeader.Name    = "ReportHeader";
            //
            // xrTable1
            //
            xrTable1.LocationFloat = new PointFloat(0F, 0F);
            xrTable1.Name          = "xrTable1";
            xrTable1.Rows.AddRange(new[]
            {
                xrTableRow1
            });
            xrTable1.SizeF = new SizeF(647.9999F, 28.125F);
            //
            // xrTableRow1
            //
            xrTableRow1.Cells.AddRange(new[]
            {
                xrTableCell1,
                xrTableCell2,
                xrTableCell3
            });
            xrTableRow1.Name   = "xrTableRow1";
            xrTableRow1.Weight = 1D;
            //
            // xrTableCell1
            //
            xrTableCell1.BackColor = Color.LimeGreen;
            xrTableCell1.Font      = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell1.ForeColor = Color.White;
            xrTableCell1.Name      = "xrTableCell1";
            xrTableCell1.Padding   = new PaddingInfo(15, 0, 0, 0, 100F);
            xrTableCell1.StylePriority.UseBackColor     = false;
            xrTableCell1.StylePriority.UseFont          = false;
            xrTableCell1.StylePriority.UseForeColor     = false;
            xrTableCell1.StylePriority.UsePadding       = false;
            xrTableCell1.StylePriority.UseTextAlignment = false;
            xrTableCell1.Text          = "Employé";
            xrTableCell1.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell1.Weight        = 0.79745375929065565D;
            //
            // xrTableCell2
            //
            xrTableCell2.Name   = "xrTableCell2";
            xrTableCell2.Weight = 0.036651192371484773D;
            //
            // xrTableCell3
            //
            xrTableCell3.BackColor = Color.FromArgb(217, 217, 217);
            xrTableCell3.Name      = "xrTableCell3";
            xrTableCell3.StylePriority.UseBackColor = false;
            xrTableCell3.Weight = 2.1658950483378594D;
            //
            // DetailReport
            //
            DetailReport.Bands.AddRange(new Band[]
            {
                Detail,
                ReportHeader1
            });
            DetailReport.DataMember = "Absences";
            DetailReport.DataSource = bindingSource1;
            DetailReport.Expanded   = false;
            DetailReport.Level      = 0;
            DetailReport.Name       = "DetailReport";
            //
            // Detail
            //
            Detail.Controls.AddRange(new XRControl[]
            {
                xrTable5
            });
            Detail.HeightF      = 85.5F;
            Detail.KeepTogether = true;
            Detail.Name         = "Detail";
            //
            // xrTable5
            //
            xrTable5.LocationFloat = new PointFloat(0F, 19.875F);
            xrTable5.Name          = "xrTable5";
            xrTable5.Padding       = new PaddingInfo(4, 0, 2, 0, 100F);
            xrTable5.Rows.AddRange(new[]
            {
                xrTableRow3,
                xrTableRow4
            });
            xrTable5.SizeF = new SizeF(647.9999F, 65.625F);
            xrTable5.StylePriority.UsePadding = false;
            //
            // xrTableRow3
            //
            xrTableRow3.Cells.AddRange(new[]
            {
                xrTableCell7,
                xrTableCell8
            });
            xrTableRow3.Name   = "xrTableRow3";
            xrTableRow3.Weight = 0.52857141212930436D;
            //
            // xrTableCell7
            //
            xrTableCell7.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Absences.StartDate", "{0:M/d/yyyy}")
            });
            xrTableCell7.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell7.Name = "xrTableCell7";
            xrTableCell7.StylePriority.UseFont = false;
            xrTableCell7.Weight = 0.83410493056778723D;
            //
            // xrTableCell8
            //
            xrTableCell8.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Absences.Comment")
            });
            xrTableCell8.Font = new Font("Segoe UI", 11.25F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrTableCell8.Name = "xrTableCell8";
            xrTableCell8.StylePriority.UseFont = false;
            xrTableCell8.Weight = 2.1658950694322128D;
            //
            // xrTableRow4
            //
            xrTableRow4.Cells.AddRange(new[]
            {
                xrTableCell9,
                xrTableCell10
            });
            xrTableRow4.Name   = "xrTableRow4";
            xrTableRow4.Weight = 0.37142861926020571D;
            //
            // xrTableCell9
            //
            xrTableCell9.Name   = "xrTableCell9";
            xrTableCell9.Weight = 0.83410493056778723D;
            //
            // xrTableCell10
            //
            xrTableCell10.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Absences.Comment")
            });
            xrTableCell10.Font = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell10.Name = "xrTableCell10";
            xrTableCell10.StylePriority.UseFont = false;
            xrTableCell10.Weight = 2.1658950694322128D;
            //
            // ReportHeader1
            //
            ReportHeader1.Controls.AddRange(new XRControl[]
            {
                xrTable4
            });
            ReportHeader1.HeightF = 28.125F;
            ReportHeader1.Name    = "ReportHeader1";
            //
            // xrTable4
            //
            xrTable4.LocationFloat = new PointFloat(0F, 0F);
            xrTable4.Name          = "xrTable4";
            xrTable4.Rows.AddRange(new[]
            {
                xrTableRow2
            });
            xrTable4.SizeF = new SizeF(647.9999F, 28.125F);
            //
            // xrTableRow2
            //
            xrTableRow2.Cells.AddRange(new[]
            {
                xrTableCell4,
                xrTableCell5,
                xrTableCell6
            });
            xrTableRow2.Name   = "xrTableRow2";
            xrTableRow2.Weight = 1D;
            //
            // xrTableCell4
            //
            xrTableCell4.BackColor = Color.LimeGreen;
            xrTableCell4.Font      = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell4.ForeColor = Color.White;
            xrTableCell4.Name      = "xrTableCell4";
            xrTableCell4.Padding   = new PaddingInfo(15, 0, 0, 0, 100F);
            xrTableCell4.StylePriority.UseBackColor     = false;
            xrTableCell4.StylePriority.UseFont          = false;
            xrTableCell4.StylePriority.UseForeColor     = false;
            xrTableCell4.StylePriority.UsePadding       = false;
            xrTableCell4.StylePriority.UseTextAlignment = false;
            xrTableCell4.Text          = "Absences";
            xrTableCell4.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell4.Weight        = 0.79745375929065565D;
            //
            // xrTableCell5
            //
            xrTableCell5.Name   = "xrTableCell5";
            xrTableCell5.Weight = 0.036651192371484773D;
            //
            // xrTableCell6
            //
            xrTableCell6.BackColor = Color.FromArgb(217, 217, 217);
            xrTableCell6.Name      = "xrTableCell6";
            xrTableCell6.StylePriority.UseBackColor = false;
            xrTableCell6.Weight = 2.1658950483378594D;
            //
            // bindingSource1
            //
            bindingSource1.DataSource = typeof(Employee);
            //
            // ShowEvaluationsParameter
            //
            ShowEvaluationsParameter.Description = "ShowEvaluations";
            ShowEvaluationsParameter.Name        = "ShowEvaluationsParameter";
            ShowEvaluationsParameter.Type        = typeof(bool);
            ShowEvaluationsParameter.ValueInfo   = "True";
            ShowEvaluationsParameter.Visible     = false;
            //
            // DetailReport1
            //
            DetailReport1.Bands.AddRange(new Band[]
            {
                Detail1,
                ReportHeader2
            });
            DetailReport1.DataMember = "AssignedLeaves";
            DetailReport1.DataSource = bindingSource1;
            DetailReport1.Level      = 1;
            DetailReport1.Name       = "DetailReport1";
            //
            // Detail1
            //
            Detail1.Controls.AddRange(new XRControl[]
            {
                xrTable7
            });
            Detail1.HeightF = 65.625F;
            Detail1.Name    = "Detail1";
            //
            // xrTable7
            //
            xrTable7.LocationFloat = new PointFloat(2.000014F, 0F);
            xrTable7.Name          = "xrTable7";
            xrTable7.Padding       = new PaddingInfo(4, 0, 2, 0, 100F);
            xrTable7.Rows.AddRange(new[]
            {
                xrTableRow6,
                xrTableRow10
            });
            xrTable7.SizeF = new SizeF(647.9999F, 65.625F);
            xrTable7.StylePriority.UsePadding = false;
            //
            // xrTableRow6
            //
            xrTableRow6.Cells.AddRange(new[]
            {
                xrTableCell17,
                xrTableCell18
            });
            xrTableRow6.Name   = "xrTableRow6";
            xrTableRow6.Weight = 0.52857141212930436D;
            //
            // xrTableCell17
            //
            xrTableCell17.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "AssignedLeaves.StartDate", "{0:M/d/yyyy}")
            });
            xrTableCell17.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell17.Name = "xrTableCell17";
            xrTableCell17.StylePriority.UseFont = false;
            xrTableCell17.Weight = 0.83410493056778723D;
            //
            // xrTableCell18
            //
            xrTableCell18.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "AssignedLeaves.Subject")
            });
            xrTableCell18.Font = new Font("Segoe UI", 11.25F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrTableCell18.Name = "xrTableCell18";
            xrTableCell18.StylePriority.UseFont = false;
            xrTableCell18.Weight = 2.1658950694322128D;
            //
            // xrTableRow10
            //
            xrTableRow10.Cells.AddRange(new[]
            {
                xrTableCell19,
                xrTableCell30
            });
            xrTableRow10.Name   = "xrTableRow10";
            xrTableRow10.Weight = 0.37142861926020571D;
            //
            // xrTableCell19
            //
            xrTableCell19.Name   = "xrTableCell19";
            xrTableCell19.Weight = 0.83410493056778723D;
            //
            // xrTableCell30
            //
            xrTableCell30.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "AssignedLeaves.Description")
            });
            xrTableCell30.Font = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell30.Name = "xrTableCell30";
            xrTableCell30.StylePriority.UseFont = false;
            xrTableCell30.Weight = 2.1658950694322128D;
            //
            // ReportHeader2
            //
            ReportHeader2.Controls.AddRange(new XRControl[]
            {
                xrTable6
            });
            ReportHeader2.HeightF = 28.125F;
            ReportHeader2.Name    = "ReportHeader2";
            //
            // xrTable6
            //
            xrTable6.LocationFloat = new PointFloat(2.000014F, 0F);
            xrTable6.Name          = "xrTable6";
            xrTable6.Rows.AddRange(new[]
            {
                xrTableRow5
            });
            xrTable6.SizeF = new SizeF(647.9999F, 28.125F);
            //
            // xrTableRow5
            //
            xrTableRow5.Cells.AddRange(new[]
            {
                xrTableCell11,
                xrTableCell12,
                xrTableCell13
            });
            xrTableRow5.Name   = "xrTableRow5";
            xrTableRow5.Weight = 1D;
            //
            // xrTableCell11
            //
            xrTableCell11.BackColor = Color.LimeGreen;
            xrTableCell11.Font      = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell11.ForeColor = Color.White;
            xrTableCell11.Name      = "xrTableCell11";
            xrTableCell11.Padding   = new PaddingInfo(15, 0, 0, 0, 100F);
            xrTableCell11.StylePriority.UseBackColor     = false;
            xrTableCell11.StylePriority.UseFont          = false;
            xrTableCell11.StylePriority.UseForeColor     = false;
            xrTableCell11.StylePriority.UsePadding       = false;
            xrTableCell11.StylePriority.UseTextAlignment = false;
            xrTableCell11.Text          = "Demandes de congés";
            xrTableCell11.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell11.Weight        = 0.79745375929065565D;
            //
            // xrTableCell12
            //
            xrTableCell12.Name   = "xrTableCell12";
            xrTableCell12.Weight = 0.036651192371484773D;
            //
            // xrTableCell13
            //
            xrTableCell13.BackColor = Color.FromArgb(217, 217, 217);
            xrTableCell13.Name      = "xrTableCell13";
            xrTableCell13.StylePriority.UseBackColor = false;
            xrTableCell13.Weight = 2.1658950483378594D;
            //
            // DetailReport2
            //
            DetailReport2.Bands.AddRange(new Band[]
            {
                Detail2,
                ReportHeader3
            });
            DetailReport2.DataMember = "Shifts";
            DetailReport2.DataSource = bindingSource1;
            DetailReport2.Level      = 2;
            DetailReport2.Name       = "DetailReport2";
            //
            // Detail2
            //
            Detail2.Controls.AddRange(new XRControl[]
            {
                xrTable9
            });
            Detail2.HeightF = 66.66666F;
            Detail2.Name    = "Detail2";
            //
            // xrTable9
            //
            xrTable9.LocationFloat = new PointFloat(2.000014F, 0F);
            xrTable9.Name          = "xrTable9";
            xrTable9.Padding       = new PaddingInfo(4, 0, 2, 0, 100F);
            xrTable9.Rows.AddRange(new[]
            {
                xrTableRow12,
                xrTableRow18
            });
            xrTable9.SizeF = new SizeF(647.9999F, 65.625F);
            xrTable9.StylePriority.UsePadding = false;
            //
            // xrTableRow12
            //
            xrTableRow12.Cells.AddRange(new[]
            {
                xrTableCell37,
                xrTableCell34
            });
            xrTableRow12.Name   = "xrTableRow12";
            xrTableRow12.Weight = 0.52857141212930436D;
            //
            // xrTableCell37
            //
            xrTableCell37.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Shifts.Start", "{0:dddd HH:mm}")
            });
            xrTableCell37.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell37.Name = "xrTableCell37";
            xrTableCell37.StylePriority.UseFont = false;
            xrTableCell37.Text   = "xrTableCell37";
            xrTableCell37.Weight = 0.41705246528389361D;
            //
            // xrTableCell34
            //
            xrTableCell34.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Shifts.End", "{0:dddd HH:mm}")
            });
            xrTableCell34.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell34.Name = "xrTableCell34";
            xrTableCell34.StylePriority.UseFont = false;
            xrTableCell34.Weight = 0.41705246528389361D;
            //
            // xrTableRow18
            //
            xrTableRow18.Cells.AddRange(new[]
            {
                xrTableCell35
            });
            xrTableRow18.Name   = "xrTableRow18";
            xrTableRow18.Weight = 0.37142861926020571D;
            //
            // xrTableCell35
            //
            xrTableCell35.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Shifts.Subject")
            });
            xrTableCell35.Font = new Font("Segoe UI", 11.25F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrTableCell35.Name = "xrTableCell35";
            xrTableCell35.StylePriority.UseFont = false;
            xrTableCell35.Weight = 3.6658950694322128D;
            //
            // ReportHeader3
            //
            ReportHeader3.Controls.AddRange(new XRControl[]
            {
                xrTable8
            });
            ReportHeader3.HeightF = 28.125F;
            ReportHeader3.Name    = "ReportHeader3";
            //
            // xrTable8
            //
            xrTable8.LocationFloat = new PointFloat(2.000014F, 0F);
            xrTable8.Name          = "xrTable8";
            xrTable8.Rows.AddRange(new[]
            {
                xrTableRow11
            });
            xrTable8.SizeF = new SizeF(647.9999F, 28.125F);
            //
            // xrTableRow11
            //
            xrTableRow11.Cells.AddRange(new[]
            {
                xrTableCell31,
                xrTableCell32,
                xrTableCell33
            });
            xrTableRow11.Name   = "xrTableRow11";
            xrTableRow11.Weight = 1D;
            //
            // xrTableCell31
            //
            xrTableCell31.BackColor = Color.LimeGreen;
            xrTableCell31.Font      = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell31.ForeColor = Color.White;
            xrTableCell31.Name      = "xrTableCell31";
            xrTableCell31.Padding   = new PaddingInfo(15, 0, 0, 0, 100F);
            xrTableCell31.StylePriority.UseBackColor     = false;
            xrTableCell31.StylePriority.UseFont          = false;
            xrTableCell31.StylePriority.UseForeColor     = false;
            xrTableCell31.StylePriority.UsePadding       = false;
            xrTableCell31.StylePriority.UseTextAlignment = false;
            xrTableCell31.Text          = "Temps de travail";
            xrTableCell31.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell31.Weight        = 0.79745375929065565D;
            //
            // xrTableCell32
            //
            xrTableCell32.Name   = "xrTableCell32";
            xrTableCell32.Weight = 0.036651192371484773D;
            //
            // xrTableCell33
            //
            xrTableCell33.BackColor = Color.FromArgb(217, 217, 217);
            xrTableCell33.Name      = "xrTableCell33";
            xrTableCell33.StylePriority.UseBackColor = false;
            xrTableCell33.Weight = 2.1658950483378594D;
            //
            // xrTableCell38
            //
            xrTableCell38.Name   = "xrTableCell38";
            xrTableCell38.Text   = "xrTableCell38";
            xrTableCell38.Weight = 1.5D;
            //
            // EmployeeProfile
            //
            Bands.AddRange(new Band[]
            {
                topMarginBand1,
                detailBand1,
                bottomMarginBand1,
                ReportHeader,
                DetailReport,
                DetailReport1,
                DetailReport2
            });
            DataSource   = bindingSource1;
            FilterString = "[Id] = ?parameterId";
            Font         = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 0);
            Margins      = new Margins(100, 1, 160, 127);
            Parameters.AddRange(new[]
            {
                parameterId,
                ShowEvaluationsParameter
            });
            Version = "15.1";
            ((ISupportInitialize)xrTable3).EndInit();
            ((ISupportInitialize)xrTable2).EndInit();
            ((ISupportInitialize)xrTable1).EndInit();
            ((ISupportInitialize)xrTable5).EndInit();
            ((ISupportInitialize)xrTable4).EndInit();
            ((ISupportInitialize)bindingSource1).EndInit();
            ((ISupportInitialize)bindingSource2).EndInit();
            ((ISupportInitialize)xrTable7).EndInit();
            ((ISupportInitialize)xrTable6).EndInit();
            ((ISupportInitialize)xrTable9).EndInit();
            ((ISupportInitialize)xrTable8).EndInit();
            ((ISupportInitialize)this).EndInit();
        }
Пример #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(QuestionnaireResponse));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.HeaderLine       = new DevExpress.XtraReports.UI.XRLine();
     this.RiskCategory     = new DevExpress.XtraReports.UI.XRLabel();
     this.ModerateRule     = new DevExpress.XtraReports.UI.FormattingRule();
     this.HighRisk         = new DevExpress.XtraReports.UI.FormattingRule();
     this.LowRisk          = new DevExpress.XtraReports.UI.FormattingRule();
     this.valRiskCategory  = new DevExpress.XtraReports.UI.XRLabel();
     this.Score            = new DevExpress.XtraReports.UI.XRLabel();
     this.valScore         = new DevExpress.XtraReports.UI.XRLabel();
     this.TestDate         = new DevExpress.XtraReports.UI.XRLabel();
     this.valTestDate      = new DevExpress.XtraReports.UI.XRLabel();
     this.valDOB           = new DevExpress.XtraReports.UI.XRLabel();
     this.valLasttName     = new DevExpress.XtraReports.UI.XRLabel();
     this.DOB              = new DevExpress.XtraReports.UI.XRLabel();
     this.LastName         = new DevExpress.XtraReports.UI.XRLabel();
     this.PPGLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.FirstName        = new DevExpress.XtraReports.UI.XRLabel();
     this.valFirstName     = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.ReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ReportDateVal    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.PatientResponses = new DevExpress.XtraReports.UI.XRLabel();
     this.Testname         = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1          = new DevExpress.XtraReports.UI.DetailBand();
     this.AnswerVal        = new DevExpress.XtraReports.UI.XRLabel();
     this.QuestionVal      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.@PQID            = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 26F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 34F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.HeaderLine,
         this.RiskCategory,
         this.valRiskCategory,
         this.Score,
         this.valScore,
         this.TestDate,
         this.valTestDate,
         this.valDOB,
         this.valLasttName,
         this.DOB,
         this.LastName,
         this.PPGLogo,
         this.FirstName,
         this.valFirstName
     });
     this.PageHeader.HeightF = 103.5F;
     this.PageHeader.Name    = "PageHeader";
     //
     // HeaderLine
     //
     this.HeaderLine.BorderWidth   = 1F;
     this.HeaderLine.LineWidth     = 2;
     this.HeaderLine.LocationFloat = new DevExpress.Utils.PointFloat(0F, 90.33335F);
     this.HeaderLine.Name          = "HeaderLine";
     this.HeaderLine.SizeF         = new System.Drawing.SizeF(802F, 13.16666F);
     this.HeaderLine.StylePriority.UseBorderWidth = false;
     //
     // RiskCategory
     //
     this.RiskCategory.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RiskCategory.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.RiskCategory.FormattingRules.Add(this.ModerateRule);
     this.RiskCategory.FormattingRules.Add(this.HighRisk);
     this.RiskCategory.FormattingRules.Add(this.LowRisk);
     this.RiskCategory.LocationFloat                  = new DevExpress.Utils.PointFloat(560.7915F, 67.33335F);
     this.RiskCategory.Name                           = "RiskCategory";
     this.RiskCategory.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.RiskCategory.SizeF                          = new System.Drawing.SizeF(122.2917F, 23F);
     this.RiskCategory.StylePriority.UseFont          = false;
     this.RiskCategory.StylePriority.UseForeColor     = false;
     this.RiskCategory.StylePriority.UseTextAlignment = false;
     this.RiskCategory.Text                           = "Risk Category:";
     this.RiskCategory.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // ModerateRule
     //
     this.ModerateRule.Condition            = "[RiskCategory]=\'Medium\'";
     this.ModerateRule.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(196)))), ((int)(((byte)(15)))));
     this.ModerateRule.Name = "ModerateRule";
     //
     // HighRisk
     //
     this.HighRisk.Condition            = "[RiskCategory]=\'High\'";
     this.HighRisk.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(76)))), ((int)(((byte)(60)))));
     this.HighRisk.Name = "HighRisk";
     //
     // LowRisk
     //
     this.LowRisk.Condition            = "[RiskCategory]=\'Low\'";
     this.LowRisk.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(204)))), ((int)(((byte)(113)))));
     this.LowRisk.Name = "LowRisk";
     //
     // valRiskCategory
     //
     this.valRiskCategory.AutoWidth = true;
     this.valRiskCategory.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.RiskCategory")
     });
     this.valRiskCategory.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valRiskCategory.ForeColor = System.Drawing.Color.Black;
     this.valRiskCategory.FormattingRules.Add(this.ModerateRule);
     this.valRiskCategory.FormattingRules.Add(this.HighRisk);
     this.valRiskCategory.FormattingRules.Add(this.LowRisk);
     this.valRiskCategory.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 67.33335F);
     this.valRiskCategory.Name                           = "valRiskCategory";
     this.valRiskCategory.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
     this.valRiskCategory.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valRiskCategory.StylePriority.UseFont          = false;
     this.valRiskCategory.StylePriority.UseForeColor     = false;
     this.valRiskCategory.StylePriority.UsePadding       = false;
     this.valRiskCategory.StylePriority.UseTextAlignment = false;
     this.valRiskCategory.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Score
     //
     this.Score.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Score.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Score.LocationFloat              = new DevExpress.Utils.PointFloat(560.7915F, 44.33333F);
     this.Score.Name                       = "Score";
     this.Score.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Score.SizeF                      = new System.Drawing.SizeF(122.2919F, 23F);
     this.Score.StylePriority.UseFont      = false;
     this.Score.StylePriority.UseForeColor = false;
     this.Score.Text                       = "Score:";
     //
     // valScore
     //
     this.valScore.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.Score")
     });
     this.valScore.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valScore.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valScore.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 44.33334F);
     this.valScore.Name                           = "valScore";
     this.valScore.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valScore.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valScore.StylePriority.UseFont          = false;
     this.valScore.StylePriority.UseForeColor     = false;
     this.valScore.StylePriority.UseTextAlignment = false;
     this.valScore.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TestDate
     //
     this.TestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.TestDate.LocationFloat              = new DevExpress.Utils.PointFloat(560.7914F, 21.33335F);
     this.TestDate.Name                       = "TestDate";
     this.TestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.TestDate.SizeF                      = new System.Drawing.SizeF(122.2918F, 23F);
     this.TestDate.StylePriority.UseFont      = false;
     this.TestDate.StylePriority.UseForeColor = false;
     this.TestDate.Text                       = "Test Date:";
     //
     // valTestDate
     //
     this.valTestDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.TestDate")
     });
     this.valTestDate.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valTestDate.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valTestDate.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 21.33334F);
     this.valTestDate.Name                           = "valTestDate";
     this.valTestDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valTestDate.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valTestDate.StylePriority.UseFont          = false;
     this.valTestDate.StylePriority.UseForeColor     = false;
     this.valTestDate.StylePriority.UseTextAlignment = false;
     this.valTestDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // valDOB
     //
     this.valDOB.AutoWidth = true;
     this.valDOB.CanShrink = true;
     this.valDOB.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientDOB")
     });
     this.valDOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valDOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valDOB.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 67.33335F);
     this.valDOB.Name                       = "valDOB";
     this.valDOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valDOB.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valDOB.StylePriority.UseFont      = false;
     this.valDOB.StylePriority.UseForeColor = false;
     //
     // valLasttName
     //
     this.valLasttName.AutoWidth = true;
     this.valLasttName.CanShrink = true;
     this.valLasttName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientLastName")
     });
     this.valLasttName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valLasttName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valLasttName.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 44.33333F);
     this.valLasttName.Name                       = "valLasttName";
     this.valLasttName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valLasttName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valLasttName.StylePriority.UseFont      = false;
     this.valLasttName.StylePriority.UseForeColor = false;
     //
     // DOB
     //
     this.DOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.DOB.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 67.33335F);
     this.DOB.Name                       = "DOB";
     this.DOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DOB.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.DOB.StylePriority.UseFont      = false;
     this.DOB.StylePriority.UseForeColor = false;
     this.DOB.Text                       = "Date of Birth:";
     //
     // LastName
     //
     this.LastName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.LastName.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 44.33333F);
     this.LastName.Name                       = "LastName";
     this.LastName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.LastName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.LastName.StylePriority.UseFont      = false;
     this.LastName.StylePriority.UseForeColor = false;
     this.LastName.Text                       = "Last Name:";
     //
     // PPGLogo
     //
     this.PPGLogo.Image         = ((System.Drawing.Image)(resources.GetObject("PPGLogo.Image")));
     this.PPGLogo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 21.33334F);
     this.PPGLogo.Name          = "PPGLogo";
     this.PPGLogo.SizeF         = new System.Drawing.SizeF(198.75F, 59.16667F);
     this.PPGLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // FirstName
     //
     this.FirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.FirstName.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 21.33335F);
     this.FirstName.Name                       = "FirstName";
     this.FirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.FirstName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.FirstName.StylePriority.UseFont      = false;
     this.FirstName.StylePriority.UseForeColor = false;
     this.FirstName.Text                       = "First Name:";
     //
     // valFirstName
     //
     this.valFirstName.AutoWidth = true;
     this.valFirstName.CanShrink = true;
     this.valFirstName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientFirstName")
     });
     this.valFirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valFirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valFirstName.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 21.33335F);
     this.valFirstName.Name                       = "valFirstName";
     this.valFirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valFirstName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valFirstName.StylePriority.UseFont      = false;
     this.valFirstName.StylePriority.UseForeColor = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.ReportDate,
         this.xrPageInfo1,
         this.ReportDateVal
     });
     this.PageFooter.HeightF = 36.66669F;
     this.PageFooter.Name    = "PageFooter";
     //
     // ReportDate
     //
     this.ReportDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.ReportDate.LocationFloat              = new DevExpress.Utils.PointFloat(10F, 10F);
     this.ReportDate.Name                       = "ReportDate";
     this.ReportDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDate.SizeF                      = new System.Drawing.SizeF(99.16666F, 23F);
     this.ReportDate.StylePriority.UseFont      = false;
     this.ReportDate.StylePriority.UseForeColor = false;
     this.ReportDate.Text                       = "Report Date";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrPageInfo1.Format                     = "Page {0}/{0}";
     this.xrPageInfo1.LocationFloat              = new DevExpress.Utils.PointFloat(692F, 10F);
     this.xrPageInfo1.Name                       = "xrPageInfo1";
     this.xrPageInfo1.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                      = new System.Drawing.SizeF(100F, 23F);
     this.xrPageInfo1.StylePriority.UseFont      = false;
     this.xrPageInfo1.StylePriority.UseForeColor = false;
     //
     // ReportDateVal
     //
     this.ReportDateVal.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDateVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.ReportDateVal.Format                     = "{0:MMMM d, yyyy h:mm tt}";
     this.ReportDateVal.LocationFloat              = new DevExpress.Utils.PointFloat(109.1667F, 10F);
     this.ReportDateVal.Name                       = "ReportDateVal";
     this.ReportDateVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDateVal.PageInfo                   = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.ReportDateVal.SizeF                      = new System.Drawing.SizeF(205.6667F, 23F);
     this.ReportDateVal.StylePriority.UseFont      = false;
     this.ReportDateVal.StylePriority.UseForeColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.PatientResponses,
         this.Testname
     });
     this.GroupHeader1.HeightF         = 75.83334F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // PatientResponses
     //
     this.PatientResponses.Font                           = new System.Drawing.Font("Times New Roman", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PatientResponses.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.PatientResponses.LocationFloat                  = new DevExpress.Utils.PointFloat(215.5F, 32.33335F);
     this.PatientResponses.Name                           = "PatientResponses";
     this.PatientResponses.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.PatientResponses.SizeF                          = new System.Drawing.SizeF(371F, 29.66667F);
     this.PatientResponses.StylePriority.UseFont          = false;
     this.PatientResponses.StylePriority.UseForeColor     = false;
     this.PatientResponses.StylePriority.UseTextAlignment = false;
     this.PatientResponses.Text                           = "Patient Response";
     this.PatientResponses.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // Testname
     //
     this.Testname.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.QuestionnaireName")
     });
     this.Testname.Font                           = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Testname.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Testname.LocationFloat                  = new DevExpress.Utils.PointFloat(217.5F, 2.666677F);
     this.Testname.Name                           = "Testname";
     this.Testname.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Testname.SizeF                          = new System.Drawing.SizeF(371F, 29.66667F);
     this.Testname.StylePriority.UseFont          = false;
     this.Testname.StylePriority.UseForeColor     = false;
     this.Testname.StylePriority.UseTextAlignment = false;
     this.Testname.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1
     });
     this.DetailReport.DataMember = "spGetPatientQuestionnaireDetailsReport";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.AnswerVal,
         this.QuestionVal,
         this.xrLine1
     });
     this.Detail1.HeightF = 79.16666F;
     this.Detail1.Name    = "Detail1";
     //
     // AnswerVal
     //
     this.AnswerVal.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientQuestionnaireDetailsReport.AnswerText")
     });
     this.AnswerVal.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AnswerVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.AnswerVal.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 22.99998F);
     this.AnswerVal.Name                       = "AnswerVal";
     this.AnswerVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(10, 2, 5, 0, 100F);
     this.AnswerVal.SizeF                      = new System.Drawing.SizeF(802F, 32.16665F);
     this.AnswerVal.StylePriority.UseFont      = false;
     this.AnswerVal.StylePriority.UseForeColor = false;
     this.AnswerVal.StylePriority.UsePadding   = false;
     //
     // QuestionVal
     //
     this.QuestionVal.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientQuestionnaireDetailsReport.QuestionText")
     });
     this.QuestionVal.Font                     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuestionVal.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.QuestionVal.Name                     = "QuestionVal";
     this.QuestionVal.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(10, 2, 0, 10, 100F);
     this.QuestionVal.SizeF                    = new System.Drawing.SizeF(802F, 23F);
     this.QuestionVal.StylePriority.UseFont    = false;
     this.QuestionVal.StylePriority.UsePadding = false;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 55.16663F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(802F, 23F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ClarityDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "spGetPatientQuestionnaireDetailsReport";
     queryParameter1.Name  = "@ParamPQID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.@PQID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "spGetPatientQuestionnaireDetailsReport";
     storedProcQuery2.Name           = "spGetPatientDetailsReport";
     queryParameter2.Name            = "@ParamPQID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.@PQID]", typeof(int));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.StoredProcName = "spGetPatientDetailsReport";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // @PQID
     //
     [email protected] = "PQID";
     [email protected]        = "@PQID";
     [email protected]        = typeof(int);
     [email protected]   = "0";
     [email protected]     = false;
     //
     // QuestionnaireResponse
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "spGetPatientDetailsReport";
     this.DataSource = this.sqlDataSource1;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.ModerateRule,
         this.HighRisk,
         this.LowRisk
     });
     this.Margins = new System.Drawing.Printing.Margins(25, 23, 26, 34);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.@PQID
     });
     this.RequestParameters = false;
     this.Version           = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConsolidatedReport));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1          = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1           = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2          = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2           = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3           = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.Heading2             = new DevExpress.XtraReports.UI.XRLabel();
     this.valFirstName         = new DevExpress.XtraReports.UI.XRLabel();
     this.FirstName            = new DevExpress.XtraReports.UI.XRLabel();
     this.PPGLogo              = new DevExpress.XtraReports.UI.XRPictureBox();
     this.LastName             = new DevExpress.XtraReports.UI.XRLabel();
     this.DOB                  = new DevExpress.XtraReports.UI.XRLabel();
     this.valLasttName         = new DevExpress.XtraReports.UI.XRLabel();
     this.valDOB               = new DevExpress.XtraReports.UI.XRLabel();
     this.HeaderLine           = new DevExpress.XtraReports.UI.XRLine();
     this.Heading              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrChart1             = new DevExpress.XtraReports.UI.XRChart();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLine1              = new DevExpress.XtraReports.UI.XRLine();
     this.ReportDate           = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportDateVal        = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo1          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.DetailReport         = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.QuestionCell         = new DevExpress.XtraReports.UI.XRTableCell();
     this.AnswerCell           = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblRiskCategory      = new DevExpress.XtraReports.UI.XRLabel();
     this.valRiskCategory      = new DevExpress.XtraReports.UI.XRLabel();
     this.lblScore             = new DevExpress.XtraReports.UI.XRLabel();
     this.valScore             = new DevExpress.XtraReports.UI.XRLabel();
     this.lblTestDate          = new DevExpress.XtraReports.UI.XRLabel();
     this.varTestDate          = new DevExpress.XtraReports.UI.XRLabel();
     this.valQuestionnarieName = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1         = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine2              = new DevExpress.XtraReports.UI.XRLine();
     this.clarityDBSet1        = new ClarityWebAppDX.ClarityDBSet();
     this.@PatientID           = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clarityDBSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 14F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 15.625F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.Heading2,
         this.valFirstName,
         this.FirstName,
         this.PPGLogo,
         this.LastName,
         this.DOB,
         this.valLasttName,
         this.valDOB,
         this.HeaderLine,
         this.Heading,
         this.xrChart1
     });
     this.ReportHeader.HeightF = 369.5001F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // Heading2
     //
     this.Heading2.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Heading2.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Heading2.LocationFloat                  = new DevExpress.Utils.PointFloat(8.900961E-05F, 105.5F);
     this.Heading2.Name                           = "Heading2";
     this.Heading2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Heading2.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.Heading2.StylePriority.UseFont          = false;
     this.Heading2.StylePriority.UseForeColor     = false;
     this.Heading2.StylePriority.UseTextAlignment = false;
     this.Heading2.Text                           = "Test Results Summary";
     this.Heading2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // valFirstName
     //
     this.valFirstName.AutoWidth = true;
     this.valFirstName.CanShrink = true;
     this.valFirstName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.PatientFirstName")
     });
     this.valFirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valFirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valFirstName.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 46.00003F);
     this.valFirstName.Name                       = "valFirstName";
     this.valFirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valFirstName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valFirstName.StylePriority.UseFont      = false;
     this.valFirstName.StylePriority.UseForeColor = false;
     //
     // FirstName
     //
     this.FirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.FirstName.LocationFloat              = new DevExpress.Utils.PointFloat(176.4583F, 46.00003F);
     this.FirstName.Name                       = "FirstName";
     this.FirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.FirstName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.FirstName.StylePriority.UseFont      = false;
     this.FirstName.StylePriority.UseForeColor = false;
     this.FirstName.Text                       = "First Name:";
     //
     // PPGLogo
     //
     this.PPGLogo.Image         = ((System.Drawing.Image)(resources.GetObject("PPGLogo.Image")));
     this.PPGLogo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.00002F);
     this.PPGLogo.Name          = "PPGLogo";
     this.PPGLogo.SizeF         = new System.Drawing.SizeF(166.0416F, 69.00002F);
     this.PPGLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // LastName
     //
     this.LastName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.LastName.LocationFloat              = new DevExpress.Utils.PointFloat(176.4583F, 69.00002F);
     this.LastName.Name                       = "LastName";
     this.LastName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.LastName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.LastName.StylePriority.UseFont      = false;
     this.LastName.StylePriority.UseForeColor = false;
     this.LastName.Text                       = "Last Name:";
     //
     // DOB
     //
     this.DOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.DOB.LocationFloat              = new DevExpress.Utils.PointFloat(532.5416F, 46.00003F);
     this.DOB.Name                       = "DOB";
     this.DOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DOB.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.DOB.StylePriority.UseFont      = false;
     this.DOB.StylePriority.UseForeColor = false;
     this.DOB.Text                       = "Date of Birth:";
     //
     // valLasttName
     //
     this.valLasttName.AutoWidth = true;
     this.valLasttName.CanShrink = true;
     this.valLasttName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.PatientLastName")
     });
     this.valLasttName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valLasttName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valLasttName.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 69.00002F);
     this.valLasttName.Name                       = "valLasttName";
     this.valLasttName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valLasttName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valLasttName.StylePriority.UseFont      = false;
     this.valLasttName.StylePriority.UseForeColor = false;
     //
     // valDOB
     //
     this.valDOB.AutoWidth = true;
     this.valDOB.CanShrink = true;
     this.valDOB.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.FormattedDOB")
     });
     this.valDOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valDOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valDOB.LocationFloat              = new DevExpress.Utils.PointFloat(642.7498F, 46.00003F);
     this.valDOB.Name                       = "valDOB";
     this.valDOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valDOB.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valDOB.StylePriority.UseFont      = false;
     this.valDOB.StylePriority.UseForeColor = false;
     //
     // HeaderLine
     //
     this.HeaderLine.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.HeaderLine.BorderWidth   = 1F;
     this.HeaderLine.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.HeaderLine.LineWidth     = 2;
     this.HeaderLine.LocationFloat = new DevExpress.Utils.PointFloat(0F, 92.33337F);
     this.HeaderLine.Name          = "HeaderLine";
     this.HeaderLine.SizeF         = new System.Drawing.SizeF(820F, 13.16666F);
     this.HeaderLine.StylePriority.UseBorderColor = false;
     this.HeaderLine.StylePriority.UseBorderWidth = false;
     this.HeaderLine.StylePriority.UseForeColor   = false;
     //
     // Heading
     //
     this.Heading.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Heading.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Heading.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.Heading.Name                           = "Heading";
     this.Heading.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Heading.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.Heading.StylePriority.UseFont          = false;
     this.Heading.StylePriority.UseForeColor     = false;
     this.Heading.StylePriority.UseTextAlignment = false;
     this.Heading.Text                           = "Patient Summary";
     this.Heading.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrChart1
     //
     this.xrChart1.BorderColor = System.Drawing.Color.Black;
     this.xrChart1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart1.DataMember  = "spGetPatientConsolidatedQuestionnaireList";
     this.xrChart1.DataSource  = this.sqlDataSource1;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
     this.xrChart1.Diagram          = xyDiagram1;
     this.xrChart1.Legend.Name      = "Default Legend";
     this.xrChart1.LocationFloat    = new DevExpress.Utils.PointFloat(21.49999F, 139.5F);
     this.xrChart1.Name             = "xrChart1";
     this.xrChart1.PaletteName      = "Metro";
     series1.ArgumentDataMember     = "QuestionnaireName";
     series1.ColorDataMember        = "RiskCategory";
     sideBySideBarSeriesLabel1.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.Label        = sideBySideBarSeriesLabel1;
     series1.LegendName   = "Default Legend";
     series1.Name         = "Series 1";
     series1.ShowInLegend = false;
     series1.ValueDataMembersSerializable = "Score";
     this.xrChart1.SeriesSerializable     = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.xrChart1.SeriesTemplate.ArgumentDataMember           = "QuestionnaireName";
     this.xrChart1.SeriesTemplate.ColorDataMember              = "RiskCategory";
     this.xrChart1.SeriesTemplate.ValueDataMembersSerializable = "Score";
     this.xrChart1.SizeF = new System.Drawing.SizeF(774.9999F, 200F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ClarityDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "spGetPatientDetails";
     queryParameter1.Name  = "@ParamPatientID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.@PatientID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "spGetPatientDetails";
     storedProcQuery2.Name           = "spGetPatientConsolidatedQuestionnaireList";
     queryParameter2.Name            = "@ParamPatientID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.@PatientID]", typeof(int));
     queryParameter3.Name            = "@ParamHistoryList";
     queryParameter3.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value           = new DevExpress.DataAccess.Expression("True", typeof(bool));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.Parameters.Add(queryParameter3);
     storedProcQuery2.StoredProcName = "spGetPatientConsolidatedQuestionnaireList";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine1,
         this.ReportDate,
         this.ReportDateVal,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 37.5F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLine1
     //
     this.xrLine1.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrLine1.BorderWidth   = 1F;
     this.xrLine1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrLine1.LineWidth     = 2;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(820F, 13.16666F);
     this.xrLine1.StylePriority.UseBorderColor = false;
     this.xrLine1.StylePriority.UseBorderWidth = false;
     this.xrLine1.StylePriority.UseForeColor   = false;
     //
     // ReportDate
     //
     this.ReportDate.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.ReportDate.LocationFloat              = new DevExpress.Utils.PointFloat(11.04164F, 13.16666F);
     this.ReportDate.Name                       = "ReportDate";
     this.ReportDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDate.SizeF                      = new System.Drawing.SizeF(99.16666F, 23F);
     this.ReportDate.StylePriority.UseFont      = false;
     this.ReportDate.StylePriority.UseForeColor = false;
     this.ReportDate.Text                       = "Report Date";
     //
     // ReportDateVal
     //
     this.ReportDateVal.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDateVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.ReportDateVal.Format                     = "{0:MMMM d, yyyy h:mm tt}";
     this.ReportDateVal.LocationFloat              = new DevExpress.Utils.PointFloat(110.2084F, 13.16668F);
     this.ReportDateVal.Name                       = "ReportDateVal";
     this.ReportDateVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDateVal.PageInfo                   = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.ReportDateVal.SizeF                      = new System.Drawing.SizeF(176.4583F, 23F);
     this.ReportDateVal.StylePriority.UseFont      = false;
     this.ReportDateVal.StylePriority.UseForeColor = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrPageInfo1.Format                     = "Page {0}/{1}";
     this.xrPageInfo1.LocationFloat              = new DevExpress.Utils.PointFloat(742.2917F, 13.16666F);
     this.xrPageInfo1.Name                       = "xrPageInfo1";
     this.xrPageInfo1.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                      = new System.Drawing.SizeF(67.70831F, 23F);
     this.xrPageInfo1.StylePriority.UseFont      = false;
     this.xrPageInfo1.StylePriority.UseForeColor = false;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.DetailReport.DataMember = "spGetPatientConsolidatedQuestionnaireList";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 25F;
     this.Detail1.Name    = "Detail1";
     //
     // xrTable1
     //
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(819.9999F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.QuestionCell,
         this.AnswerCell
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // QuestionCell
     //
     this.QuestionCell.Borders = DevExpress.XtraPrinting.BorderSide.Left;
     this.QuestionCell.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.QuestionText")
     });
     this.QuestionCell.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuestionCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.QuestionCell.Name      = "QuestionCell";
     this.QuestionCell.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.QuestionCell.StylePriority.UseBorders   = false;
     this.QuestionCell.StylePriority.UseFont      = false;
     this.QuestionCell.StylePriority.UseForeColor = false;
     this.QuestionCell.StylePriority.UsePadding   = false;
     this.QuestionCell.Weight = 1.9483231668852394D;
     //
     // AnswerCell
     //
     this.AnswerCell.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
     this.AnswerCell.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.AnswerText")
     });
     this.AnswerCell.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AnswerCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.AnswerCell.Name      = "AnswerCell";
     this.AnswerCell.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.AnswerCell.StylePriority.UseBorders   = false;
     this.AnswerCell.StylePriority.UseFont      = false;
     this.AnswerCell.StylePriority.UseForeColor = false;
     this.AnswerCell.StylePriority.UsePadding   = false;
     this.AnswerCell.Weight = 1.0516768331147606D;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2,
         this.lblRiskCategory,
         this.valRiskCategory,
         this.lblScore,
         this.valScore,
         this.lblTestDate,
         this.varTestDate,
         this.valQuestionnarieName
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("QuestionnaireName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF      = 94.37498F;
     this.GroupHeader1.KeepTogether = true;
     this.GroupHeader1.Name         = "GroupHeader1";
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 67.29164F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(819.9999F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.StylePriority.UseBorders = false;
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseForeColor     = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Question";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.9483231668852394D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Answer";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.0516768331147606D;
     //
     // lblRiskCategory
     //
     this.lblRiskCategory.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRiskCategory.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblRiskCategory.LocationFloat              = new DevExpress.Utils.PointFloat(579.7916F, 33.87502F);
     this.lblRiskCategory.Name                       = "lblRiskCategory";
     this.lblRiskCategory.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblRiskCategory.SizeF                      = new System.Drawing.SizeF(116.8749F, 23F);
     this.lblRiskCategory.StylePriority.UseFont      = false;
     this.lblRiskCategory.StylePriority.UseForeColor = false;
     this.lblRiskCategory.Text                       = "Risk Category:";
     //
     // valRiskCategory
     //
     this.valRiskCategory.AutoWidth = true;
     this.valRiskCategory.CanShrink = true;
     this.valRiskCategory.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.RiskCategory")
     });
     this.valRiskCategory.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valRiskCategory.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valRiskCategory.LocationFloat              = new DevExpress.Utils.PointFloat(696.6666F, 33.87502F);
     this.valRiskCategory.Name                       = "valRiskCategory";
     this.valRiskCategory.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valRiskCategory.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valRiskCategory.StylePriority.UseFont      = false;
     this.valRiskCategory.StylePriority.UseForeColor = false;
     //
     // lblScore
     //
     this.lblScore.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblScore.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblScore.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 33.87502F);
     this.lblScore.Name                       = "lblScore";
     this.lblScore.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblScore.SizeF                      = new System.Drawing.SizeF(51.87506F, 23F);
     this.lblScore.StylePriority.UseFont      = false;
     this.lblScore.StylePriority.UseForeColor = false;
     this.lblScore.Text                       = "Score:";
     //
     // valScore
     //
     this.valScore.AutoWidth = true;
     this.valScore.CanShrink = true;
     this.valScore.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.Score")
     });
     this.valScore.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valScore.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valScore.LocationFloat              = new DevExpress.Utils.PointFloat(338.5415F, 33.87502F);
     this.valScore.Name                       = "valScore";
     this.valScore.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valScore.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valScore.StylePriority.UseFont      = false;
     this.valScore.StylePriority.UseForeColor = false;
     //
     // lblTestDate
     //
     this.lblTestDate.AutoWidth                  = true;
     this.lblTestDate.CanGrow                    = false;
     this.lblTestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblTestDate.LocationFloat              = new DevExpress.Utils.PointFloat(0.0001271566F, 33.87502F);
     this.lblTestDate.Name                       = "lblTestDate";
     this.lblTestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblTestDate.SizeF                      = new System.Drawing.SizeF(78.95813F, 23F);
     this.lblTestDate.StylePriority.UseFont      = false;
     this.lblTestDate.StylePriority.UseForeColor = false;
     this.lblTestDate.Text                       = "Test Date:";
     //
     // varTestDate
     //
     this.varTestDate.AutoWidth = true;
     this.varTestDate.CanShrink = true;
     this.varTestDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.CompletedDate")
     });
     this.varTestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.varTestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.varTestDate.LocationFloat              = new DevExpress.Utils.PointFloat(78.95826F, 33.87502F);
     this.varTestDate.Name                       = "varTestDate";
     this.varTestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.varTestDate.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.varTestDate.StylePriority.UseFont      = false;
     this.varTestDate.StylePriority.UseForeColor = false;
     //
     // valQuestionnarieName
     //
     this.valQuestionnarieName.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.valQuestionnarieName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.QuestionnaireName")
     });
     this.valQuestionnarieName.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valQuestionnarieName.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.valQuestionnarieName.LocationFloat                  = new DevExpress.Utils.PointFloat(3.051758E-05F, 0.583333F);
     this.valQuestionnarieName.Name                           = "valQuestionnarieName";
     this.valQuestionnarieName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valQuestionnarieName.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.valQuestionnarieName.StylePriority.UseBorders       = false;
     this.valQuestionnarieName.StylePriority.UseFont          = false;
     this.valQuestionnarieName.StylePriority.UseForeColor     = false;
     this.valQuestionnarieName.StylePriority.UseTextAlignment = false;
     this.valQuestionnarieName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2
     });
     this.GroupFooter1.HeightF         = 23.83331F;
     this.GroupFooter1.KeepTogether    = true;
     this.GroupFooter1.Name            = "GroupFooter1";
     this.GroupFooter1.RepeatEveryPage = true;
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(8.900961E-05F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(819.9999F, 2.99998F);
     //
     // clarityDBSet1
     //
     this.clarityDBSet1.DataSetName             = "ClarityDBSet";
     this.clarityDBSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // @PatientID
     //
     [email protected] = "Patient ID";
     [email protected]        = "@PatientID";
     [email protected]        = typeof(int);
     [email protected]   = "0";
     [email protected]     = false;
     //
     // ConsolidatedReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "spGetPatientDetails";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(11, 19, 14, 16);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.@PatientID
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clarityDBSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Join                 join1               = new DevExpress.DataAccess.Sql.Join();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Table                table3              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Join                 join2               = new DevExpress.DataAccess.Sql.Join();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.Sorting              sorting1            = new DevExpress.DataAccess.Sql.Sorting();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery2        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table4              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table5              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.Join                 join3               = new DevExpress.DataAccess.Sql.Join();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_mecl_addendum));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.State_blue     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.IVV_blue       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.CMS_Yellow     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.BO_Green       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.output         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.ProjectID      = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName    = new DevExpress.XtraReports.Parameters.Parameter();
     this.EnterpriseName = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor   = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport   = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader1  = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.Link           = new DevExpress.XtraReports.UI.CalculatedField();
     this.CurrentURL     = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.Detail.HeightF = 37.13538F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Criteria", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[src_title]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(650F, 37.13538F);
     this.xrLabel1.StyleName                      = "CMS_Yellow";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "xrLabel1";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 0F;
     this.PageFooter.Name    = "PageFooter";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "src_title";
     table1.MetaSerializable            = "<Meta X=\"340\" Y=\"30\" Width=\"125\" Height=\"248\" />";
     table1.Name                  = "rc_rtm_criteria";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "src_criteria";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "src_id";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.MetaSerializable       = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"88\" />";
     selectQuery1.Name                   = "Criteria";
     relationColumnInfo1.NestedKeyColumn = "bo_checklist";
     relationColumnInfo1.ParentKeyColumn = "ch_id";
     join1.KeyColumns.Add(relationColumnInfo1);
     table2.MetaSerializable             = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"153\" />";
     table2.Name                         = "rc_rtm_objectives";
     join1.Nested                        = table2;
     table3.MetaSerializable             = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"153\" />";
     table3.Name                         = "rc_rtm_checklists";
     join1.Parent                        = table3;
     relationColumnInfo2.NestedKeyColumn = "src_objective";
     relationColumnInfo2.ParentKeyColumn = "bo_id";
     join2.KeyColumns.Add(relationColumnInfo2);
     join2.Nested = table1;
     join2.Parent = table2;
     selectQuery1.Relations.Add(join1);
     selectQuery1.Relations.Add(join2);
     columnExpression4.ColumnName = "src_title";
     columnExpression4.Table      = table1;
     sorting1.Expression          = columnExpression4;
     selectQuery1.Sorting.Add(sorting1);
     selectQuery1.Tables.Add(table3);
     selectQuery1.Tables.Add(table2);
     selectQuery1.Tables.Add(table1);
     columnExpression5.ColumnName = "lib_filename";
     table4.MetaSerializable      = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"305\" />";
     table4.Name                   = "rc_repository";
     columnExpression5.Table       = table4;
     column4.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "att_projectid";
     table5.MetaSerializable       = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"172\" />";
     table5.Name                   = "rc_repository_attachments";
     columnExpression6.Table       = table5;
     column5.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "lib_title";
     columnExpression7.Table       = table4;
     column6.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "lib_type";
     columnExpression8.Table       = table4;
     column7.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "lib_storagename";
     columnExpression9.Table       = table4;
     column8.Expression            = columnExpression9;
     columnExpression10.ColumnName = "lib_deleted";
     columnExpression10.Table      = table4;
     column9.Expression            = columnExpression10;
     columnExpression11.ColumnName = "att_itemid";
     columnExpression11.Table      = table5;
     column10.Expression           = columnExpression11;
     columnExpression12.ColumnName = "lib_id";
     columnExpression12.Table      = table4;
     column11.Expression           = columnExpression12;
     selectQuery2.Columns.Add(column4);
     selectQuery2.Columns.Add(column5);
     selectQuery2.Columns.Add(column6);
     selectQuery2.Columns.Add(column7);
     selectQuery2.Columns.Add(column8);
     selectQuery2.Columns.Add(column9);
     selectQuery2.Columns.Add(column10);
     selectQuery2.Columns.Add(column11);
     selectQuery2.FilterString = "[rc_repository.lib_deleted] <> \'1\' And [rc_repository.lib_projectID] = ?ProjectID" +
                                 "";
     selectQuery2.GroupFilterString = "";
     selectQuery2.MetaSerializable  = "<Meta X=\"140\" Y=\"20\" Width=\"100\" Height=\"156\" />";
     selectQuery2.Name     = "Attachments";
     queryParameter1.Name  = "ProjectID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.ProjectID]", typeof(System.Guid));
     selectQuery2.Parameters.Add(queryParameter1);
     relationColumnInfo3.NestedKeyColumn = "lib_id";
     relationColumnInfo3.ParentKeyColumn = "att_artifact";
     join3.KeyColumns.Add(relationColumnInfo3);
     join3.Nested = table4;
     join3.Parent = table5;
     selectQuery2.Relations.Add(join3);
     selectQuery2.Tables.Add(table5);
     selectQuery2.Tables.Add(table4);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         selectQuery2
     });
     masterDetailInfo1.DetailQueryName   = "Attachments";
     relationColumnInfo4.NestedKeyColumn = "att_itemid";
     relationColumnInfo4.ParentKeyColumn = "src_id";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo4);
     masterDetailInfo1.MasterQueryName = "Criteria";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // State_blue
     //
     this.State_blue.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(217)))), ((int)(((byte)(241)))));
     this.State_blue.BorderColor     = System.Drawing.Color.Black;
     this.State_blue.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.State_blue.Name            = "State_blue";
     this.State_blue.Padding         = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
     this.State_blue.TextAlignment   = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // IVV_blue
     //
     this.IVV_blue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(180)))), ((int)(((byte)(227)))));
     this.IVV_blue.Name      = "IVV_blue";
     this.IVV_blue.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
     //
     // CMS_Yellow
     //
     this.CMS_Yellow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(250)))), ((int)(((byte)(205)))));
     this.CMS_Yellow.Name      = "CMS_Yellow";
     this.CMS_Yellow.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
     //
     // BO_Green
     //
     this.BO_Green.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(167)))), ((int)(((byte)(218)))), ((int)(((byte)(78)))));
     this.BO_Green.Name          = "BO_Green";
     this.BO_Green.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
     this.BO_Green.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // output
     //
     this.output.Name    = "output";
     this.output.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // EnterpriseName
     //
     this.EnterpriseName.Description = "EnterpriseName";
     this.EnterpriseName.Name        = "EnterpriseName";
     this.EnterpriseName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2
     });
     this.ReportHeader.HeightF = 49.37499F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(650F, 49.37499F);
     this.xrLabel2.StyleName                      = "State_blue";
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "MECL Addendum - Attached Artifacts";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportHeader1
     });
     this.DetailReport.DataMember = "Criteria.CriteriaAttachments";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     this.DetailReport.ReportPrintOptions.PrintOnEmptyDataSource = false;
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 24.21872F;
     this.Detail1.Name    = "Detail1";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 24.21872F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UsePadding       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1.8854158020019531D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[lib_title]")
     });
     this.xrTableCell3.Name         = "xrTableCell3";
     this.xrTableCell3.StyleName    = "output";
     this.xrTableCell3.Target       = "_blank";
     this.xrTableCell3.Weight       = 1.618419409779186D;
     this.xrTableCell3.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell3_BeforePrint);
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[lib_type]")
     });
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "output";
     this.xrTableCell4.Weight    = 0.96757063093375972D;
     //
     // ReportHeader1
     //
     this.ReportHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.ReportHeader1.HeightF = 24.21872F;
     this.ReportHeader1.Name    = "ReportHeader1";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 24.21872F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UsePadding       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1.8854158020019531D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.Name                  = "xrTableCell1";
     this.xrTableCell1.StyleName             = "CMS_Yellow";
     this.xrTableCell1.StylePriority.UseFont = false;
     this.xrTableCell1.Text                  = "Artifact Name ";
     this.xrTableCell1.Weight                = 1.618419409779186D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font                  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.Name                  = "xrTableCell2";
     this.xrTableCell2.StyleName             = "CMS_Yellow";
     this.xrTableCell2.StylePriority.UseFont = false;
     this.xrTableCell2.Text                  = "Type";
     this.xrTableCell2.Weight                = 0.96757063093375972D;
     //
     // Link
     //
     this.Link.DataMember = "Criteria.CriteriaAttachments";
     this.Link.Expression = "[Parameters].[CurrentURL] +\'/controls/get_repo.aspx?artifact=\'  + [lib_id]";
     this.Link.FieldType  = DevExpress.XtraReports.UI.FieldType.String;
     this.Link.Name       = "Link";
     //
     // CurrentURL
     //
     this.CurrentURL.Description = "CurrentURL";
     this.CurrentURL.Name        = "CurrentURL";
     this.CurrentURL.Visible     = false;
     //
     // rep_pro_mecl_addendum
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.ReportHeader,
         this.DetailReport
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.Link
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Criteria";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PageColor  = System.Drawing.Color.Transparent;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.ProjectID,
         this.ProjectName,
         this.EnterpriseName,
         this.ProjectColor,
         this.CurrentURL
     });
     this.RequestParameters     = false;
     this.Scripts.OnBeforePrint = "rep_pro_mecl_addendum_BeforePrint";
     this.ScriptsSource         = "\r\nprivate void rep_pro_mecl_addendum_BeforePrint(object sender, System.Drawing.Pr" +
                                  "inting.PrintEventArgs e) {\r\n\r\n}\r\n";
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.State_blue,
         this.IVV_blue,
         this.CMS_Yellow,
         this.BO_Green,
         this.output
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #26
0
 private void InitializeComponent()
 {
     this.dtl = new DevExpress.XtraReports.UI.DetailBand();
     this.ph = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel();
     this.pf = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrTableRoadInfo = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableRoadInfoCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRoadInfoCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableDev = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableDevCell = new DevExpress.XtraReports.UI.XRTableCell();
     this.xlblDevice = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblUser = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTime = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xlblDev = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // dtl
     //
     this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.dtl.Height = 0;
     this.dtl.Name = "dtl";
     this.dtl.ParentStyleUsing.UseFont = false;
     //
     // ph
     //
     this.ph.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.ph.Height = 0;
     this.ph.Name = "ph";
     this.ph.ParentStyleUsing.UseFont = false;
     //
     // xlblReportHeader
     //
     this.xlblReportHeader.BackColor = System.Drawing.Color.Empty;
     this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control;
     this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblReportHeader.Location = new System.Drawing.Point(250, 25);
     this.xlblReportHeader.Name = "xlblReportHeader";
     this.xlblReportHeader.ParentStyleUsing.UseBackColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseFont = false;
     this.xlblReportHeader.ParentStyleUsing.UseForeColor = false;
     this.xlblReportHeader.Size = new System.Drawing.Size(600, 33);
     this.xlblReportHeader.Text = "測試報表";
     this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // pf
     //
     this.pf.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.pf.Height = 158;
     this.pf.Name = "pf";
     this.pf.ParentStyleUsing.UseFont = false;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrLabel1.Location = new System.Drawing.Point(967, 108);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.ParentStyleUsing.UseFont = false;
     this.xrLabel1.ParentStyleUsing.UseForeColor = false;
     this.xrLabel1.Size = new System.Drawing.Size(108, 25);
     this.xrLabel1.Text = "頁次:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo
     //
     this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrPageInfo.Location = new System.Drawing.Point(1075, 108);
     this.xrPageInfo.Name = "xrPageInfo";
     this.xrPageInfo.ParentStyleUsing.UseFont = false;
     this.xrPageInfo.ParentStyleUsing.UseForeColor = false;
     this.xrPageInfo.Size = new System.Drawing.Size(50, 25);
     this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xlblDev,
     this.xrTableRoadInfo,
     this.xrTableDev,
     this.xlblDevice,
     this.xlblTimeRange,
     this.xrPageInfo,
     this.xrLabel1,
     this.xlblMemo,
     this.xlblUser,
     this.xlblTime,
     this.xlblReportHeader});
     this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.TopMargin.Height = 142;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.ParentStyleUsing.UseFont = false;
     //
     // xrTableRoadInfo
     //
     this.xrTableRoadInfo.Location = new System.Drawing.Point(0, 108);
     this.xrTableRoadInfo.Name = "xrTableRoadInfo";
     this.xrTableRoadInfo.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2});
     this.xrTableRoadInfo.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableRoadInfoCell1,
     this.xrTableRoadInfoCell2});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRoadInfoCell1
     //
     this.xrTableRoadInfoCell1.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell1.Location = new System.Drawing.Point(0, 0);
     this.xrTableRoadInfoCell1.Name = "xrTableRoadInfoCell1";
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell1.Size = new System.Drawing.Size(208, 25);
     this.xrTableRoadInfoCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRoadInfoCell2
     //
     this.xrTableRoadInfoCell2.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell2.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell2.Location = new System.Drawing.Point(208, 0);
     this.xrTableRoadInfoCell2.Name = "xrTableRoadInfoCell2";
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell2.Size = new System.Drawing.Size(200, 25);
     this.xrTableRoadInfoCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableDev
     //
     this.xrTableDev.Location = new System.Drawing.Point(808, 108);
     this.xrTableDev.Name = "xrTableDev";
     this.xrTableDev.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTableDev.Size = new System.Drawing.Size(159, 25);
     this.xrTableDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableDevCell});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Size = new System.Drawing.Size(159, 25);
     //
     // xrTableDevCell
     //
     this.xrTableDevCell.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableDevCell.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableDevCell.Location = new System.Drawing.Point(0, 0);
     this.xrTableDevCell.Name = "xrTableDevCell";
     this.xrTableDevCell.ParentStyleUsing.UseFont = false;
     this.xrTableDevCell.ParentStyleUsing.UseForeColor = false;
     this.xrTableDevCell.Size = new System.Drawing.Size(159, 25);
     this.xrTableDevCell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblDevice
     //
     this.xlblDevice.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDevice.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDevice.Location = new System.Drawing.Point(717, 108);
     this.xlblDevice.Name = "xlblDevice";
     this.xlblDevice.ParentStyleUsing.UseFont = false;
     this.xlblDevice.ParentStyleUsing.UseForeColor = false;
     this.xlblDevice.Size = new System.Drawing.Size(95, 25);
     this.xlblDevice.Text = "偵測器編號:";
     this.xlblDevice.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTimeRange
     //
     this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTimeRange.Location = new System.Drawing.Point(0, 83);
     this.xlblTimeRange.Name = "xlblTimeRange";
     this.xlblTimeRange.ParentStyleUsing.UseFont = false;
     this.xlblTimeRange.ParentStyleUsing.UseForeColor = false;
     this.xlblTimeRange.Size = new System.Drawing.Size(408, 25);
     this.xlblTimeRange.Text = "時間:";
     this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblMemo
     //
     this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblMemo.Location = new System.Drawing.Point(967, 83);
     this.xlblMemo.Name = "xlblMemo";
     this.xlblMemo.ParentStyleUsing.UseFont = false;
     this.xlblMemo.ParentStyleUsing.UseForeColor = false;
     this.xlblMemo.Size = new System.Drawing.Size(158, 25);
     this.xlblMemo.Text = "中區-RPT_DATA_06";
     this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlblUser
     //
     this.xlblUser.BackColor = System.Drawing.Color.Empty;
     this.xlblUser.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblUser.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblUser.Location = new System.Drawing.Point(717, 58);
     this.xlblUser.Name = "xlblUser";
     this.xlblUser.ParentStyleUsing.UseBackColor = false;
     this.xlblUser.ParentStyleUsing.UseFont = false;
     this.xlblUser.ParentStyleUsing.UseForeColor = false;
     this.xlblUser.Size = new System.Drawing.Size(249, 25);
     this.xlblUser.Text = "操作者:";
     this.xlblUser.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTime
     //
     this.xlblTime.BackColor = System.Drawing.Color.Empty;
     this.xlblTime.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTime.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTime.Location = new System.Drawing.Point(717, 83);
     this.xlblTime.Name = "xlblTime";
     this.xlblTime.ParentStyleUsing.UseBackColor = false;
     this.xlblTime.ParentStyleUsing.UseFont = false;
     this.xlblTime.ParentStyleUsing.UseForeColor = false;
     this.xlblTime.Size = new System.Drawing.Size(249, 25);
     this.xlblTime.Text = "列印日期:";
     this.xlblTime.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail});
     this.DetailReport.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.ParentStyleUsing.UseFont = false;
     //
     // Detail
     //
     this.Detail.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.Detail.Height = 0;
     this.Detail.Name = "Detail";
     this.Detail.ParentStyleUsing.UseFont = false;
     //
     // xlblDev
     //
     this.xlblDev.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDev.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDev.Location = new System.Drawing.Point(0, 108);
     this.xlblDev.Name = "xlblDev";
     this.xlblDev.ParentStyleUsing.UseFont = false;
     this.xlblDev.ParentStyleUsing.UseForeColor = false;
     this.xlblDev.Size = new System.Drawing.Size(408, 25);
     this.xlblDev.Text = "設備種類:";
     this.xlblDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // clsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.dtl,
     this.ph,
     this.pf,
     this.TopMargin,
     this.DetailReport});
     this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4Rotated;
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(rptTracker));
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10     = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17     = new DevExpress.XtraReports.UI.XRTableCell();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 25F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel24,
         this.xrLabel26
     });
     this.BottomMargin.HeightF = 25F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // xrLabel24
     //
     this.xrLabel24.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel24.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(724.9855F, 0F);
     this.xrLabel24.Multiline                      = true;
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(318.015F, 17.79169F);
     this.xrLabel24.StylePriority.UseBorders       = false;
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text                           = "Provincial Information Technology Division, Governor\'s Office";
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel26
     //
     this.xrLabel26.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel26.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel26.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel26.Multiline                      = true;
     this.xrLabel26.Name                           = "xrLabel26";
     this.xrLabel26.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF                          = new System.Drawing.SizeF(236.4584F, 17.79169F);
     this.xrLabel26.StylePriority.UseBorders       = false;
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text                           = "NUEVA VIZCAYA COVID - 19 TRACKER";
     this.xrLabel26.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.Font    = new System.Drawing.Font("Arial", 12F);
     this.Detail.HeightF = 72.58333F;
     this.Detail.Name    = "Detail";
     this.Detail.StylePriority.UseFont          = false;
     this.Detail.StylePriority.UseTextAlignment = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Death]")
     });
     this.xrLabel10.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(1000.958F, 0F);
     this.xrLabel10.Multiline             = true;
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(49.04175F, 72.58333F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "xrLabel1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(850.1251F, 0F);
     this.xrLabel9.Multiline             = true;
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(149.3751F, 72.58333F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "TOTAL NUMBER OF DEATH";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Confirmed]")
     });
     this.xrLabel8.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(801.0834F, 0F);
     this.xrLabel8.Multiline             = true;
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(49.04169F, 72.58333F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "xrLabel1";
     //
     // xrLabel7
     //
     this.xrLabel7.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(652.7501F, 0F);
     this.xrLabel7.Multiline             = true;
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(148.3334F, 72.58333F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = "TOTAL NUMBER OF CONFIRMED CASES";
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Negative]")
     });
     this.xrLabel6.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(603.7083F, 0F);
     this.xrLabel6.Multiline             = true;
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(49.04175F, 72.58333F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel1";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(435.5833F, 0F);
     this.xrLabel5.Multiline             = true;
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(168.125F, 72.58333F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "TOTAL NUMBER OF DISCHARGE";
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(185.5F, 0F);
     this.xrLabel3.Multiline             = true;
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(201.0417F, 72.58333F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "TOTAL NUMBER OF PUI CASES (AWAITING LAB RESULT)";
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Awaiting]")
     });
     this.xrLabel4.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(386.5416F, 0F);
     this.xrLabel4.Multiline             = true;
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(49.04166F, 72.58333F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Multiline             = true;
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(136.4583F, 72.58333F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "TOTAL NUMBER OF PUI CASE";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Total]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(136.4583F, 0F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(49.04163F, 72.58333F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader1
     });
     this.DetailReport.DataMember = "Patients";
     this.DetailReport.DataSource = this.objectDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 25F;
     this.Detail1.Name    = "Detail1";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1050F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 11.5D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Id]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Text      = "xrTableCell1";
     this.xrTableCell1.Weight    = 0.053571430647454288D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Area]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Text      = "xrTableCell2";
     this.xrTableCell2.Weight    = 0.13690475982873618D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Age]")
     });
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Text      = "xrTableCell3";
     this.xrTableCell3.Weight    = 0.095238095238095233D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Gender]")
     });
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Text      = "xrTableCell6";
     this.xrTableCell6.Weight    = 0.095238095238095233D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateofArrival]")
     });
     this.xrTableCell7.Multiline        = true;
     this.xrTableCell7.Name             = "xrTableCell7";
     this.xrTableCell7.Text             = "xrTableCell7";
     this.xrTableCell7.TextFormatString = "{0:MM/dd/yyyy}";
     this.xrTableCell7.Weight           = 0.095238095238095233D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Hospital]")
     });
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Text      = "xrTableCell8";
     this.xrTableCell8.Weight    = 0.095238095238095233D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Country]")
     });
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell9.Weight        = 0.10979596340524016D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Result]")
     });
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Text      = "xrTableCell10";
     this.xrTableCell10.Weight    = 0.17591828494058415D;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.HeightF = 26.04167F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1050F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Text      = "PUI NO";
     this.xrTableCell4.Weight    = 0.053571430647454288D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Text      = "Area";
     this.xrTableCell5.Weight    = 0.13690475982873618D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Multiline = true;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.Text      = "Age";
     this.xrTableCell12.Weight    = 0.095238095238095233D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Multiline = true;
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.Text      = "Gender";
     this.xrTableCell13.Weight    = 0.095238095238095233D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Multiline = true;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.Text      = "Date of Admision";
     this.xrTableCell14.Weight    = 0.095238095238095233D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Multiline = true;
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.Text      = "Admitting Hospital";
     this.xrTableCell15.Weight    = 0.095238095238095233D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Multiline = true;
     this.xrTableCell16.Name      = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "Place Visited";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell16.Weight        = 0.10979596340524016D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Multiline = true;
     this.xrTableCell17.Name      = "xrTableCell17";
     this.xrTableCell17.Text      = "Result";
     this.xrTableCell17.Weight    = 0.17591828494058415D;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Models.ViewModels.TrackerViewModel);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel11
     });
     this.PageHeader.HeightF = 95.83334F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseTextAlignment = false;
     this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(136.4584F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(99.99998F, 91.99995F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                       = new System.Drawing.Font("Arial", 14F);
     this.xrLabel14.ForeColor                  = System.Drawing.Color.Black;
     this.xrLabel14.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 68.99995F);
     this.xrLabel14.Multiline                  = true;
     this.xrLabel14.Name                       = "xrLabel14";
     this.xrLabel14.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                      = new System.Drawing.SizeF(1050F, 23F);
     this.xrLabel14.StylePriority.UseFont      = false;
     this.xrLabel14.StylePriority.UseForeColor = false;
     this.xrLabel14.Text                       = "PROVINCIAL EPIDEMOLOGY AND SURVEILLANCE UNIT";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                       = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.ForeColor                  = System.Drawing.Color.Black;
     this.xrLabel13.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 45.99997F);
     this.xrLabel13.Multiline                  = true;
     this.xrLabel13.Name                       = "xrLabel13";
     this.xrLabel13.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                      = new System.Drawing.SizeF(1050F, 23F);
     this.xrLabel13.StylePriority.UseFont      = false;
     this.xrLabel13.StylePriority.UseForeColor = false;
     this.xrLabel13.Text                       = "Provincial Integrated Health Office";
     //
     // xrLabel12
     //
     this.xrLabel12.Font                       = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(64)))));
     this.xrLabel12.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 22.99999F);
     this.xrLabel12.Multiline                  = true;
     this.xrLabel12.Name                       = "xrLabel12";
     this.xrLabel12.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                      = new System.Drawing.SizeF(1050F, 23F);
     this.xrLabel12.StylePriority.UseFont      = false;
     this.xrLabel12.StylePriority.UseForeColor = false;
     this.xrLabel12.Text                       = "TRACKER";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                       = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                  = System.Drawing.Color.Red;
     this.xrLabel11.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel11.Multiline                  = true;
     this.xrLabel11.Name                       = "xrLabel11";
     this.xrLabel11.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                      = new System.Drawing.SizeF(1050F, 23F);
     this.xrLabel11.StylePriority.UseFont      = false;
     this.xrLabel11.StylePriority.UseForeColor = false;
     this.xrLabel11.Text                       = "CORONA VIRUS DISEASE(COVID-19)";
     //
     // xrLabel15
     //
     this.xrLabel15.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Now()")
     });
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 7F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(236.4584F, 0F);
     this.xrLabel15.Multiline                      = true;
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(488.527F, 17.79169F);
     this.xrLabel15.StylePriority.UseBorders       = false;
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // rptTracker
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(25, 25, 25, 25);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Version    = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "StepReport.resx";
         this.components = new System.ComponentModel.Container();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailSteps = new DevExpress.XtraReports.UI.DetailBand();
         this.tblSteps = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblActs.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.tblActs.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell2,
         this.xrTableCell10,
         this.xrTableCell3,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell11});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MeteringDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.StylePriority.UseTextAlignment = false;
         this.xrTableCell14.Text = "xrTableCell14";
         this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell14.Weight = 0.091450357298137608D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.StylePriority.UseTextAlignment = false;
         this.xrTableCell15.Text = "xrTableCell15";
         this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell15.Weight = 0.10669208251214116D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "xrTableCell1";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell1.Weight = 0.27435106813559013D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 0.18290071309274597D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseBorders = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 0.22862589249357956D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseBorders = false;
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 0.18290070970980582D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.StylePriority.UseTextAlignment = false;
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell2.Weight = 0.10669207988096552D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.076208630856557685D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell3.Weight = 0.076208628889134711D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.10669208419765233D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "xrTableCell13";
         this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell13.Weight = 0.091450355559682034D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActNum")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.10516790311461627D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 51F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrTable5});
         this.ReportHeader.HeightF = 43.25F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1069F, 27.49999F);
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell19,
         this.xrTableCell23,
         this.xrTableCell16,
         this.xrTableCell24,
         this.xrTableCell20,
         this.xrTableCell25,
         this.xrTableCell17,
         this.xrTableCell26,
         this.xrTableCell21,
         this.xrTableCell27,
         this.xrTableCell18});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "Дата\r\nзаміру";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell22.Weight = 0.16838166867604984D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "Статус";
         this.xrTableCell19.Weight = 0.19644527952731267D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Text = "Працівник";
         this.xrTableCell23.Weight = 0.50514498818578624D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.Text = "Населений пункт";
         this.xrTableCell16.Weight = 0.336763323078209D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Text = "Адреса";
         this.xrTableCell24.Weight = 0.42095415563199762D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.Text = "Замовник";
         this.xrTableCell20.Weight = 0.33676332307820905D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.Text = "№ телефону";
         this.xrTableCell25.Weight = 0.19644527952731264D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell17.Multiline = true;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseFont = false;
         this.xrTableCell17.Text = "К-сть\r\n ділянок";
         this.xrTableCell17.Weight = 0.14031805247207801D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Multiline = true;
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "К-сть\r\nактів";
         this.xrTableCell26.Weight = 0.14031805247207793D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Text = "Категорія";
         this.xrTableCell21.Weight = 0.19644527952731267D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Text = "Дата\r\nдоговору";
         this.xrTableCell27.Weight = 0.16838166867604984D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Text = "№ договору";
         this.xrTableCell18.Weight = 0.19363892914760436D;
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.25F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "1";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.16838166867604984D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.Text = "2";
         this.xrTableCell46.Weight = 0.19644527952731267D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.Text = "3";
         this.xrTableCell47.Weight = 0.50514498818578624D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.Text = "4";
         this.xrTableCell48.Weight = 0.336763323078209D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.Text = "5";
         this.xrTableCell49.Weight = 0.42095415563199762D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.Text = "6";
         this.xrTableCell50.Weight = 0.33676332307820905D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.Text = "7";
         this.xrTableCell51.Weight = 0.19644527952731264D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell52.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell52.Multiline = true;
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseFont = false;
         this.xrTableCell52.Text = "8";
         this.xrTableCell52.Weight = 0.14031805247207801D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell53.Multiline = true;
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.Text = "9";
         this.xrTableCell53.Weight = 0.14031805247207793D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.Text = "10";
         this.xrTableCell54.Weight = 0.19644527952731267D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell55.Multiline = true;
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.Text = "11";
         this.xrTableCell55.Weight = 0.16838166867604984D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.Text = "12";
         this.xrTableCell56.Weight = 0.19363892914760436D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailSteps,
         this.GroupHeader1,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Steps";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailSteps
         //
         this.detailSteps.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblSteps});
         this.detailSteps.HeightF = 15F;
         this.detailSteps.KeepTogether = true;
         this.detailSteps.Name = "detailSteps";
         this.detailSteps.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailSteps_BeforePrint);
         //
         // tblSteps
         //
         this.tblSteps.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblSteps.Font = new System.Drawing.Font("Times New Roman", 8F);
         this.tblSteps.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblSteps.Name = "tblSteps";
         this.tblSteps.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblSteps.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.tblSteps.StylePriority.UseBorders = false;
         this.tblSteps.StylePriority.UseFont = false;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.OrdNum")});
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.18575856007409755D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.ActionName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.StylePriority.UseTextAlignment = false;
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell4.Weight = 0.650154799860234D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Delivered", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Text = "xrTableCell5";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.24767801857585131D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Received", "{0:dd.MM.yyyy}")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseBorders = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell6.Weight = 0.24767801857585131D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.GroupHeader1.HeightF = 15F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable3.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell31,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.Text = "№ п/п";
         this.xrTableCell31.Weight = 0.59999996430703428D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.Text = "Назва етапу";
         this.xrTableCell28.Weight = 2.0999996549191584D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.Text = "Передали";
         this.xrTableCell29.Weight = 0.80000030517577592D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.Text = "Отримали";
         this.xrTableCell30.Weight = 0.80000030517577592D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
         this.GroupFooter1.HeightF = 15F;
         this.GroupFooter1.Name = "GroupFooter1";
         this.GroupFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupFooter1_BeforePrint);
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39,
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "1";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.16838166867604984D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.Text = "2";
         this.xrTableCell34.Weight = 0.19644527952731267D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.Text = "3";
         this.xrTableCell35.Weight = 0.50514498818578624D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.Text = "4";
         this.xrTableCell36.Weight = 0.336763323078209D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.Text = "5";
         this.xrTableCell37.Weight = 0.42095415563199762D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.Text = "6";
         this.xrTableCell38.Weight = 0.33676332307820905D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "7";
         this.xrTableCell39.Weight = 0.19644527952731264D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell40.Multiline = true;
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseFont = false;
         this.xrTableCell40.Text = "8";
         this.xrTableCell40.Weight = 0.14031805247207801D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Multiline = true;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "9";
         this.xrTableCell41.Weight = 0.14031805247207793D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "10";
         this.xrTableCell42.Weight = 0.19644527952731267D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Multiline = true;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.Text = "11";
         this.xrTableCell43.Weight = 0.16838166867604984D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "12";
         this.xrTableCell44.Weight = 0.19363892914760436D;
         //
         // StepReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.DetailReport});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 50, 51, 50);
         this.PageHeight = 827;
         this.PageWidth = 1169;
         this.PaperKind = System.Drawing.Printing.PaperKind.A4;
         this.Version = "15.1";
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery2        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column12            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column13            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression13  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column14            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression14  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column15            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression15  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(PublicReport));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrCheckBox1       = new DevExpress.XtraReports.UI.XRCheckBox();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel9,
         this.xrLine1
     });
     this.Detail.HeightF       = 106.7917F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 9F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "Category ID";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 33F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "Category Name";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(6F, 57F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Description";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CategoryID]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(174F, 9F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel7.StyleName     = "DataField";
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CategoryName]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(174F, 33F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel8.StyleName     = "DataField";
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Description]")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(174F, 57F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel9.StyleName     = "DataField";
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 3F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "nwindConnectionXpo";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "CategoryID";
     table1.Name                  = "Categories";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "CategoryName";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Picture";
     columnExpression4.Table      = table1;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.MetaSerializable = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"139\" />";
     selectQuery1.Name             = "Categories";
     selectQuery1.Tables.Add(table1);
     columnExpression5.ColumnName = "ProductID";
     table2.Name                   = "Products";
     columnExpression5.Table       = table2;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "ProductName";
     columnExpression6.Table       = table2;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "SupplierID";
     columnExpression7.Table       = table2;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "CategoryID";
     columnExpression8.Table       = table2;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "QuantityPerUnit";
     columnExpression9.Table       = table2;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "UnitPrice";
     columnExpression10.Table      = table2;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "UnitsInStock";
     columnExpression11.Table      = table2;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "UnitsOnOrder";
     columnExpression12.Table      = table2;
     column12.Expression           = columnExpression12;
     columnExpression13.ColumnName = "ReorderLevel";
     columnExpression13.Table      = table2;
     column13.Expression           = columnExpression13;
     columnExpression14.ColumnName = "Discontinued";
     columnExpression14.Table      = table2;
     column14.Expression           = columnExpression14;
     columnExpression15.ColumnName = "EAN13";
     columnExpression15.Table      = table2;
     column15.Expression           = columnExpression15;
     selectQuery2.Columns.Add(column5);
     selectQuery2.Columns.Add(column6);
     selectQuery2.Columns.Add(column7);
     selectQuery2.Columns.Add(column8);
     selectQuery2.Columns.Add(column9);
     selectQuery2.Columns.Add(column10);
     selectQuery2.Columns.Add(column11);
     selectQuery2.Columns.Add(column12);
     selectQuery2.Columns.Add(column13);
     selectQuery2.Columns.Add(column14);
     selectQuery2.Columns.Add(column15);
     selectQuery2.MetaSerializable = "<Meta X=\"140\" Y=\"20\" Width=\"100\" Height=\"224\" />";
     selectQuery2.Name             = "Products";
     selectQuery2.Tables.Add(table2);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         selectQuery2
     });
     masterDetailInfo1.DetailQueryName   = "Products";
     relationColumnInfo1.NestedKeyColumn = "CategoryID";
     relationColumnInfo1.ParentKeyColumn = "CategoryID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName = "Categories";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName        = "PageInfo";
     this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10
     });
     this.reportHeaderBand1.HeightF = 64F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel10
     //
     this.xrLabel10.ForeColor     = System.Drawing.Color.Green;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 6.00001F);
     this.xrLabel10.Multiline     = true;
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(633.9999F, 44.45833F);
     this.xrLabel10.StyleName     = "Title";
     this.xrLabel10.StylePriority.UseForeColor = false;
     this.xrLabel10.Text = "Public Report\r\n";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.Title.ForeColor   = System.Drawing.Color.Maroon;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Maroon;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader1
     });
     this.DetailReport.DataMember = "Categories.CategoriesProducts";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrCheckBox1,
         this.xrLabel11
     });
     this.Detail1.HeightF = 23F;
     this.Detail1.Name    = "Detail1";
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[UnitPrice]")
     });
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel12.Text          = "xrLabel12";
     //
     // xrCheckBox1
     //
     this.xrCheckBox1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "CheckState", "[Discontinued]")
     });
     this.xrCheckBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.xrCheckBox1.LocationFloat  = new DevExpress.Utils.PointFloat(320.8333F, 0F);
     this.xrCheckBox1.Name           = "xrCheckBox1";
     this.xrCheckBox1.SizeF          = new System.Drawing.SizeF(100F, 23F);
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ProductName]")
     });
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(195.8333F, 23F);
     this.xrLabel11.Text          = "xrLabel11";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13
     });
     this.GroupHeader1.HeightF = 23.95833F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel15
     //
     this.xrLabel15.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(550F, 0F);
     this.xrLabel15.Multiline             = true;
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "UnitPrice\r\n";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(320.8333F, 0F);
     this.xrLabel14.Multiline             = true;
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Discontinued\r\n";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(195.8333F, 23F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "ProductName";
     //
     // PublicReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Categories";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "18.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Normal            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport2     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 23F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName     = "Normal";
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi           = 100F;
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi           = 100F;
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 53F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi           = 100F;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(638F, 35F);
     this.xrLabel17.StyleName     = "Title";
     this.xrLabel17.Text          = "Monthly Attendance Revised";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // Normal
     //
     this.Normal.BackColor       = System.Drawing.Color.Transparent;
     this.Normal.BorderColor     = System.Drawing.Color.Black;
     this.Normal.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Normal.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Normal.BorderWidth = 1F;
     this.Normal.Font        = new System.Drawing.Font("Arial", 9F);
     this.Normal.ForeColor   = System.Drawing.Color.Black;
     this.Normal.Name        = "Normal";
     this.Normal.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1,
         this.DetailReport2
     });
     this.DetailReport.DataMember = "MonthlyEmployeeAttendance";
     this.DetailReport.DataSource = this.objectDataSource1;
     this.DetailReport.Dpi        = 100F;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Dpi     = 100F;
     this.Detail1.HeightF = 28.125F;
     this.Detail1.MultiColumn.ColumnCount = 4;
     this.Detail1.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail1.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail1.Name = "Detail1";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember = "MonthlyEmployeeAttendance.Attendances";
     this.DetailReport1.DataSource = this.objectDataSource1;
     this.DetailReport1.Dpi        = 100F;
     this.DetailReport1.Level      = 1;
     this.DetailReport1.Name       = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 69.0834F;
     this.Detail2.MultiColumn.ColumnCount = 30;
     this.Detail2.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail2.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail2.Name = "Detail2";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.workingTime")
     });
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 46.00003F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel6.StyleName     = "Normal";
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.timeOut")
     });
     this.xrLabel5.Dpi           = 100F;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 23.00002F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.StyleName     = "Normal";
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.timeIn")
     });
     this.xrLabel4.Dpi           = 100F;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.StyleName     = "Normal";
     this.xrLabel4.Text          = "xrLabel4";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Name")
     });
     this.xrLabel3.Dpi                   = 100F;
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.ProcessDuplicatesMode = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(100F, 69.00005F);
     this.xrLabel3.StyleName             = "Normal";
     this.xrLabel3.Text                  = "xrLabel3";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name = "xrControlStyle2";
     //
     // DetailReport2
     //
     this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3
     });
     this.DetailReport2.DataMember = "MonthlyEmployeeAttendance.Days";
     this.DetailReport2.DataSource = this.objectDataSource1;
     this.DetailReport2.Dpi        = 100F;
     this.DetailReport2.Level      = 0;
     this.DetailReport2.Name       = "DetailReport2";
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.Detail3.Dpi     = 100F;
     this.Detail3.HeightF = 100F;
     this.Detail3.MultiColumn.ColumnCount = 30;
     this.Detail3.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail3.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Days.DayNumber")
     });
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 0F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(AionHR.Model.Reports.EmployeeMonthlyCollection);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // MonthlyAttendanceRevised
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(0, 3, 100, 100);
     this.PageHeight = 4400;
     this.PageWidth  = 3400;
     this.PaperKind  = System.Drawing.Printing.PaperKind.ESheet;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.Normal,
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.dtlGovBusiness    = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.dtlGovAccre       = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel70         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupFooter2      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail4           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel35         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36         = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport4     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail5           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable7          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow7       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell19     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21     = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter3      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 10F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 30F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.Font    = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.Detail.HeightF = 288F;
     this.Detail.Name    = "Detail";
     this.Detail.StylePriority.UseFont          = false;
     this.Detail.StylePriority.UseTextAlignment = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Upper([Transactions].[Permitees].[FullName])")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 249F);
     this.xrLabel2.Multiline                      = true;
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(375F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateCreated]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(33.00002F, 189F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(226.375F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Date";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel1.TextFormatString               = "{0:MMMM dd, yyyy}";
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.dtlGovBusiness,
         this.dtlGovAccre,
         this.DetailReport3,
         this.DetailReport4
     });
     this.DetailReport.DataMember = "BillingStatementViewModels";
     this.DetailReport.DataSource = this.objectDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Expanded = false;
     this.Detail1.HeightF  = 0F;
     this.Detail1.Name     = "Detail1";
     //
     // dtlGovBusiness
     //
     this.dtlGovBusiness.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.GroupFooter2
     });
     this.dtlGovBusiness.DataMember = "BillingStatementViewModels.GovernorsBusinessPermitFee";
     this.dtlGovBusiness.DataSource = this.objectDataSource1;
     this.dtlGovBusiness.Level      = 0;
     this.dtlGovBusiness.Name       = "dtlGovBusiness";
     //
     // Detail2
     //
     this.Detail2.HeightF = 0F;
     this.Detail2.Name    = "Detail2";
     //
     // dtlGovAccre
     //
     this.dtlGovAccre.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3,
         this.GroupFooter1
     });
     this.dtlGovAccre.DataMember = "BillingStatementViewModels.GovernorsAccreditationFees";
     this.dtlGovAccre.DataSource = this.objectDataSource1;
     this.dtlGovAccre.Level      = 1;
     this.dtlGovAccre.Name       = "dtlGovAccre";
     //
     // Detail3
     //
     this.Detail3.HeightF = 0F;
     this.Detail3.Name    = "Detail3";
     //
     // xrLabel70
     //
     this.xrLabel70.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel70.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([TotalCost]),0.0 )")
     });
     this.xrLabel70.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel70.LocationFloat                  = new DevExpress.Utils.PointFloat(268.0835F, 0F);
     this.xrLabel70.Multiline                      = true;
     this.xrLabel70.Name                           = "xrLabel70";
     this.xrLabel70.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel70.SizeF                          = new System.Drawing.SizeF(106.9165F, 18F);
     this.xrLabel70.StylePriority.UseBorders       = false;
     this.xrLabel70.StylePriority.UseFont          = false;
     this.xrLabel70.StylePriority.UseTextAlignment = false;
     this.xrLabel70.Text                           = "xrLabel2";
     this.xrLabel70.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrLabel70.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(31.70849F, 0F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(227.6665F, 18F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Governor\'s Accreditation Fees";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel70
     });
     this.GroupFooter1.HeightF = 21F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel7
     });
     this.GroupFooter2.HeightF = 37F;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([TotalCost]),0.0 )")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(268.0835F, 19F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(106.9165F, 18F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel2";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrLabel6.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel7
     //
     this.xrLabel7.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(33.00002F, 18.99999F);
     this.xrLabel7.Multiline             = true;
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(235.0835F, 18F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = "Governor\'s Business Permit Fees";
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail4
     });
     this.DetailReport3.Level = 2;
     this.DetailReport3.Name  = "DetailReport3";
     //
     // Detail4
     //
     this.Detail4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel35,
         this.xrLabel34,
         this.xrLabel33,
         this.xrLabel36
     });
     this.Detail4.HeightF = 31.00012F;
     this.Detail4.Name    = "Detail4";
     //
     // xrLabel35
     //
     this.xrLabel35.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel35.LocationFloat                  = new DevExpress.Utils.PointFloat(32.55285F, 18.00012F);
     this.xrLabel35.Multiline                      = true;
     this.xrLabel35.Name                           = "xrLabel35";
     this.xrLabel35.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel35.ProcessNullValues              = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
     this.xrLabel35.SizeF                          = new System.Drawing.SizeF(226.8222F, 13F);
     this.xrLabel35.StylePriority.UseFont          = false;
     this.xrLabel35.StylePriority.UsePadding       = false;
     this.xrLabel35.StylePriority.UseTextAlignment = false;
     this.xrLabel35.Text                           = "Interest(2%)";
     this.xrLabel35.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel34
     //
     this.xrLabel34.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel34.LocationFloat                  = new DevExpress.Utils.PointFloat(31.70849F, 0F);
     this.xrLabel34.Multiline                      = true;
     this.xrLabel34.Name                           = "xrLabel34";
     this.xrLabel34.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel34.SizeF                          = new System.Drawing.SizeF(227.6665F, 13F);
     this.xrLabel34.StylePriority.UseFont          = false;
     this.xrLabel34.StylePriority.UsePadding       = false;
     this.xrLabel34.StylePriority.UseTextAlignment = false;
     this.xrLabel34.Text                           = "Surcharge(25%)";
     this.xrLabel34.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel33
     //
     this.xrLabel33.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([[Transactions].[Surcharge]),0.0 )")
     });
     this.xrLabel33.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel33.LocationFloat                  = new DevExpress.Utils.PointFloat(259.375F, 0F);
     this.xrLabel33.Multiline                      = true;
     this.xrLabel33.Name                           = "xrLabel33";
     this.xrLabel33.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel33.SizeF                          = new System.Drawing.SizeF(115.625F, 13F);
     this.xrLabel33.StylePriority.UseFont          = false;
     this.xrLabel33.StylePriority.UsePadding       = false;
     this.xrLabel33.StylePriority.UseTextAlignment = false;
     this.xrLabel33.Text                           = "xrLabel33";
     this.xrLabel33.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel33.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel36
     //
     this.xrLabel36.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull([Transactions].[Interest],0.0)")
     });
     this.xrLabel36.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel36.LocationFloat                  = new DevExpress.Utils.PointFloat(260.2194F, 18.00004F);
     this.xrLabel36.Multiline                      = true;
     this.xrLabel36.Name                           = "xrLabel36";
     this.xrLabel36.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel36.SizeF                          = new System.Drawing.SizeF(114.7806F, 13F);
     this.xrLabel36.StylePriority.UseFont          = false;
     this.xrLabel36.StylePriority.UsePadding       = false;
     this.xrLabel36.StylePriority.UseTextAlignment = false;
     this.xrLabel36.Text                           = "xrLabel36";
     this.xrLabel36.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel36.TextFormatString               = "{0:0,0.00}";
     //
     // DetailReport4
     //
     this.DetailReport4.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail5
     });
     this.DetailReport4.DataMember = "BillingStatementViewModels.TransactionPenalties";
     this.DetailReport4.DataSource = this.objectDataSource1;
     this.DetailReport4.Level      = 3;
     this.DetailReport4.Name       = "DetailReport4";
     //
     // Detail5
     //
     this.Detail5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable7
     });
     this.Detail5.HeightF = 15F;
     this.Detail5.Name    = "Detail5";
     //
     // xrTable7
     //
     this.xrTable7.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(33.00002F, 0F);
     this.xrTable7.Name          = "xrTable7";
     this.xrTable7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7
     });
     this.xrTable7.SizeF = new System.Drawing.SizeF(342F, 15F);
     this.xrTable7.StylePriority.UseFont          = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow7
     //
     this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell19,
         this.xrTableCell21
     });
     this.xrTableRow7.Name   = "xrTableRow7";
     this.xrTableRow7.Weight = 0.6D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Penalty]")
     });
     this.xrTableCell19.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrTableCell19.Multiline             = true;
     this.xrTableCell19.Name                  = "xrTableCell19";
     this.xrTableCell19.StylePriority.UseFont = false;
     this.xrTableCell19.Text                  = "xrTableCell3";
     this.xrTableCell19.Weight                = 1.0081381003061927D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PenaltyAmount]")
     });
     this.xrTableCell21.Font                           = new System.Drawing.Font("Calibri", 8F);
     this.xrTableCell21.Multiline                      = true;
     this.xrTableCell21.Name                           = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseFont          = false;
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text                           = "xrTableCell4";
     this.xrTableCell21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell21.Weight                         = 1.1508580372459112D;
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel3
     });
     this.GroupFooter3.HeightF = 171.2726F;
     this.GroupFooter3.Name    = "GroupFooter3";
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel3.BorderWidth     = 2F;
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Amount]")
     });
     this.xrLabel3.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(246.875F, 35.97107F);
     this.xrLabel3.Multiline     = true;
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(128.125F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseBorderWidth     = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.BorderWidth     = 2F;
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AmountInWord]")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 9F);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(31.70849F, 148.2726F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(342F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseBorderWidth     = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel3";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Models.Billings);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // rptOfficialReceipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport,
         this.GroupFooter3
     });
     this.BookmarkDuplicateSuppress = false;
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource    = this.objectDataSource1;
     this.Font          = new System.Drawing.Font("Arial", 9.75F);
     this.Margins       = new System.Drawing.Printing.Margins(15, 20, 10, 30);
     this.PageWidth     = 410;
     this.PaperKind     = System.Drawing.Printing.PaperKind.Custom;
     this.ScriptsSource = "\r\n";
     this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.Version       = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery2        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table3              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Join                 join1               = new DevExpress.DataAccess.Sql.Join();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1     = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(MarketRoutePrint));
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo2   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.PoPictureBox   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport   = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPanel2       = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1  = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPanel1       = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.paramRouteId   = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ApplicationContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "Id";
     table1.MetaSerializable            = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"248\" />";
     table1.Name                  = "MarketRoutes";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "Name";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.FilterString = "[MarketRoutes.Id] = ?sqlParamRouteId And ([MarketRoutes.IsDeleted] = False Or [Ma" +
                                 "rketRoutes.IsDeleted] Is Null)";
     selectQuery1.GroupFilterString = "";
     selectQuery1.MetaSerializable  = "<Meta X=\"-70\" Y=\"-30\" Width=\"100\" Height=\"88\" />";
     selectQuery1.Name     = "MarketRoutes";
     queryParameter1.Name  = "sqlParamRouteId";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?paramRouteId", typeof(int));
     selectQuery1.Parameters.Add(queryParameter1);
     selectQuery1.Tables.Add(table1);
     columnExpression4.ColumnName = "Name";
     table2.MetaSerializable      = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"248\" />";
     table2.Name                  = "Markets";
     columnExpression4.Table      = table2;
     column4.Expression           = columnExpression4;
     columnExpression5.ColumnName = "Town";
     columnExpression5.Table      = table2;
     column5.Expression           = columnExpression5;
     columnExpression6.ColumnName = "Description";
     columnExpression6.Table      = table2;
     column6.Expression           = columnExpression6;
     columnExpression7.ColumnName = "Id";
     table3.MetaSerializable      = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"134\" />";
     table3.Name                  = "MarketRouteMaps";
     columnExpression7.Table      = table3;
     column7.Expression           = columnExpression7;
     columnExpression8.ColumnName = "MarketRouteId";
     columnExpression8.Table      = table3;
     column8.Expression           = columnExpression8;
     columnExpression9.ColumnName = "MarketId";
     columnExpression9.Table      = table3;
     column9.Expression           = columnExpression9;
     selectQuery2.Columns.Add(column4);
     selectQuery2.Columns.Add(column5);
     selectQuery2.Columns.Add(column6);
     selectQuery2.Columns.Add(column7);
     selectQuery2.Columns.Add(column8);
     selectQuery2.Columns.Add(column9);
     selectQuery2.MetaSerializable       = "<Meta X=\"100\" Y=\"0\" Width=\"100\" Height=\"139\" />";
     selectQuery2.Name                   = "MarketRouteMaps";
     relationColumnInfo1.NestedKeyColumn = "Id";
     relationColumnInfo1.ParentKeyColumn = "MarketId";
     join1.KeyColumns.Add(relationColumnInfo1);
     join1.Nested = table2;
     join1.Parent = table3;
     selectQuery2.Relations.Add(join1);
     selectQuery2.Tables.Add(table3);
     selectQuery2.Tables.Add(table2);
     customSqlQuery1.MetaSerializable = "<Meta X=\"220\" Y=\"20\" Width=\"127\" Height=\"224\" />";
     customSqlQuery1.Name             = "MarketCustomers";
     customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         selectQuery2,
         customSqlQuery1
     });
     masterDetailInfo1.DetailQueryName   = "MarketRouteMaps";
     relationColumnInfo2.NestedKeyColumn = "MarketRouteId";
     relationColumnInfo2.ParentKeyColumn = "Id";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo2);
     masterDetailInfo1.MasterQueryName   = "MarketRoutes";
     masterDetailInfo2.DetailQueryName   = "MarketCustomers";
     relationColumnInfo3.NestedKeyColumn = "MarketId";
     relationColumnInfo3.ParentKeyColumn = "MarketId";
     masterDetailInfo2.KeyColumns.Add(relationColumnInfo3);
     masterDetailInfo2.MasterQueryName = "MarketRouteMaps";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1,
         masterDetailInfo2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 18F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.PoPictureBox,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF = 67.65254F;
     this.Detail.Name    = "Detail";
     //
     // PoPictureBox
     //
     this.PoPictureBox.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.PoPictureBox.LocationFloat  = new DevExpress.Utils.PointFloat(10F, 10.00001F);
     this.PoPictureBox.Name           = "PoPictureBox";
     this.PoPictureBox.SizeF          = new System.Drawing.SizeF(218.3683F, 46F);
     this.PoPictureBox.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(437.4167F, 33.00001F);
     this.xrLabel11.Multiline                      = true;
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Description";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(437.4167F, 10.00001F);
     this.xrLabel10.Multiline                      = true;
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "Route Name";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Description]")
     });
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(537.4167F, 33.00001F);
     this.xrLabel2.Multiline     = true;
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(239.5833F, 23F);
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text          = "xrLabel2";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(537.4167F, 10.00001F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(239.5833F, 23F);
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "xrLabel1";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1
     });
     this.DetailReport.DataMember = "MarketRoutes.MarketRoutesMarketRouteMaps";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2
     });
     this.Detail1.HeightF = 80.58475F;
     this.Detail1.Name    = "Detail1";
     //
     // xrPanel2
     //
     this.xrPanel2.BackColor = System.Drawing.Color.Gainsboro;
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel3,
         this.xrLabel12
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(9.999939F, 6.347497F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(771.0001F, 66.13979F);
     this.xrPanel2.StylePriority.UseBackColor = false;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(139.6665F, 10.13981F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(506.9583F, 23F);
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "xrLabel4";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Town]")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(139.6665F, 33.1398F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(506.9583F, 23F);
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 10.13981F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(129.6665F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Market:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 33.13984F);
     this.xrLabel12.Multiline                      = true;
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(129.6665F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "Town";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember   = "MarketRoutes.MarketRoutesMarketRouteMaps.MarketRouteMapsMarketCustomers";
     this.DetailReport1.DataSource   = this.sqlDataSource1;
     this.DetailReport1.FilterString = "[IsDeleted] <> True";
     this.DetailReport1.Level        = 0;
     this.DetailReport1.Name         = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.Detail2.HeightF = 144.3884F;
     this.Detail2.MultiColumn.ColumnCount = 3;
     this.Detail2.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail2.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail2.Name = "Detail2";
     //
     // xrPanel1
     //
     this.xrPanel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(246.3335F, 134.3884F);
     this.xrPanel1.StylePriority.UseBackColor = false;
     //
     // xrLabel17
     //
     this.xrLabel17.CanGrow                        = false;
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791714F, 79.41665F);
     this.xrLabel17.Multiline                      = true;
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Post Code";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.CanGrow = false;
     this.xrLabel18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PostCode]")
     });
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 79.41665F);
     this.xrLabel18.Multiline     = true;
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "xrLabel6";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.CanGrow                        = false;
     this.xrLabel16.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 10.41665F);
     this.xrLabel16.Multiline                      = true;
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "No.";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.CanGrow                        = false;
     this.xrLabel15.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791714F, 102.4166F);
     this.xrLabel15.Multiline                      = true;
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Phone";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.CanGrow                        = false;
     this.xrLabel14.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 56.4167F);
     this.xrLabel14.Multiline                      = true;
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Address";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.CanGrow                        = false;
     this.xrLabel13.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 33.41668F);
     this.xrLabel13.Multiline                      = true;
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Acc Name";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.CanGrow = false;
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[SortOrder]")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 10.41665F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.CanGrow = false;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Telephone]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 102.4166F);
     this.xrLabel6.Multiline     = true;
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "xrLabel6";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.CanGrow = false;
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AddressLine1]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 56.4167F);
     this.xrLabel7.Multiline     = true;
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.CanGrow = false;
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CompanyName]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 33.41668F);
     this.xrLabel8.Multiline     = true;
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // paramRouteId
     //
     this.paramRouteId.Description = "Parameter1";
     this.paramRouteId.Name        = "paramRouteId";
     this.paramRouteId.Type        = typeof(int);
     this.paramRouteId.ValueInfo   = "0";
     //
     // MarketRoutePrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "MarketRoutes";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(21, 42, 18, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramRouteId
     });
     this.Version = "19.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 public static GroupFooterHelper AddGroupFooterFranchise(this DetailReportBand report)
 {
     return(new GroupFooterHelper(report.AddGroupFooterBand()));
 }
Пример #34
0
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    //protected override void Dispose(bool disposing)
    //{
    //    if (disposing && (components != null))
    //    {
    //        components.Dispose();
    //    }
    //    base.Dispose(disposing);
    //}

    #region Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_UngvienChiTiet.resx";

        this.Detail                          = new DevExpress.XtraReports.UI.DetailBand();
        this.TopMargin                       = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin                    = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportFooter                    = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_footer2                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat                  = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten3                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1                        = new DevExpress.XtraReports.UI.XRLabel();
        this.PageFooter                      = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1                     = new DevExpress.XtraReports.UI.XRPageInfo();
        this.DetailReport                    = new DevExpress.XtraReports.UI.DetailReportBand();
        this.Detail1                         = new DevExpress.XtraReports.UI.DetailBand();
        this.xrsRe_KetQuaThiTuyen            = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UV_KetQuaThi1     = new sub_TuyenDung_UV_KetQuaThi();
        this.xrsRe_ChungChi                  = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UngVien_BC_CC1    = new sub_TuyenDung_UngVien_BC_CC();
        this.ReportHeader                    = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.sub_TuyenDung_UV_KinhNghiemCT1  = new sub_TuyenDung_UV_KinhNghiemCT();
        this.xrsRe_KinhNghiem                = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UngVien_TruongDT1 = new sub_TuyenDung_UngVien_TruongDT();
        this.xrsRe_TruongDaoTao              = new DevExpress.XtraReports.UI.XRSubreport();
        this.xrLabel3                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TEN_HETHONG                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1                   = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrl_NGAY_SINH                   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_HO_TEN                      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOI_O_HIENNAY               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DAN_TOC                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel13                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_HO_KHAU                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TON_GIAO                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DI_DONG                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DT_NHA                      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_EMAIL                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NGAYCAP_CMND                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_SO_CMND                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOICAP_CMND                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_GIOI_TINH                   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOI_SINH                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrc_NAM                         = new DevExpress.XtraReports.UI.XRCheckBox();
        this.xrc_NU                          = new DevExpress.XtraReports.UI.XRCheckBox();
        this.xrl_NGAYSINH                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel15                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_Mail                        = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KetQuaThi1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_BC_CC1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KinhNghiemCT1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_TruongDT1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_NOICAP_CMND,
            this.xrl_GIOI_TINH,
            this.xrl_NOI_SINH,
            this.xrl_EMAIL,
            this.xrl_NGAYCAP_CMND,
            this.xrl_SO_CMND,
            this.xrLabel15,
            this.xrl_Mail,
            this.xrc_NAM,
            this.xrc_NU,
            this.xrl_NGAYSINH,
            this.xrl_DT_NHA,
            this.xrPictureBox1,
            this.xrl_NGAY_SINH,
            this.xrl_HO_TEN,
            this.xrl_HO_KHAU,
            this.xrl_TON_GIAO,
            this.xrl_DI_DONG,
            this.xrl_NOI_O_HIENNAY,
            this.xrl_DAN_TOC,
            this.xrLabel13
        });
        this.Detail.HeightF       = 769F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 33F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 47F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_footer2,
            this.xrtngayketxuat,
            this.xrl_footer3,
            this.xrl_footer1,
            this.xrl_ten3,
            this.xrl_ten2,
            this.xrl_ten1
        });
        this.ReportFooter.HeightF = 196F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrl_footer2
        //
        this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(175F, 50F);
        this.xrl_footer2.Name                           = "xrl_footer2";
        this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(222.7652F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "KẾ TOÁN TRƯỞNG";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(385.9165F, 27.00001F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(265.0835F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = ", ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_footer3
        //
        this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(413F, 50F);
        this.xrl_footer3.Name                           = "xrl_footer3";
        this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(238F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "PHÒNG HCNS";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 50F);
        this.xrl_footer1.Name                           = "xrl_footer1";
        this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(161.9514F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "NGƯỜI LẬP";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten3
        //
        this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(413F, 150F);
        this.xrl_ten3.Name                           = "xrl_ten3";
        this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(238F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten2
        //
        this.xrl_ten2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten2.LocationFloat                  = new DevExpress.Utils.PointFloat(175F, 150F);
        this.xrl_ten2.Name                           = "xrl_ten2";
        this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(222.7653F, 23F);
        this.xrl_ten2.StylePriority.UseFont          = false;
        this.xrl_ten2.StylePriority.UseTextAlignment = false;
        this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten1
        //
        this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 150F);
        this.xrl_ten1.Name                           = "xrl_ten1";
        this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(161.9514F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        this.PageFooter.Expanded = false;
        this.PageFooter.Name     = "PageFooter";
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrPageInfo1.Format                         = "Trang {0} của {1}";
        this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(773.9583F, 37.5F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0417F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // DetailReport
        //
        this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail1
        });
        this.DetailReport.Level = 0;
        this.DetailReport.Name  = "DetailReport";
        //
        // Detail1
        //
        this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrsRe_KetQuaThiTuyen,
            this.xrsRe_KinhNghiem,
            this.xrsRe_ChungChi,
            this.xrsRe_TruongDaoTao
        });
        this.Detail1.HeightF = 98F;
        this.Detail1.Name    = "Detail1";
        //
        // xrsRe_KetQuaThiTuyen
        //
        this.xrsRe_KetQuaThiTuyen.LocationFloat = new DevExpress.Utils.PointFloat(0F, 71.00004F);
        this.xrsRe_KetQuaThiTuyen.Name          = "xrsRe_KetQuaThiTuyen";
        this.xrsRe_KetQuaThiTuyen.ReportSource  = this.sub_TuyenDung_UV_KetQuaThi1;
        this.xrsRe_KetQuaThiTuyen.SizeF         = new System.Drawing.SizeF(651F, 26.99996F);
        //
        // xrsRe_ChungChi
        //
        this.xrsRe_ChungChi.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.99995F);
        this.xrsRe_ChungChi.Name          = "xrsRe_ChungChi";
        this.xrsRe_ChungChi.ReportSource  = this.sub_TuyenDung_UngVien_BC_CC1;
        this.xrsRe_ChungChi.SizeF         = new System.Drawing.SizeF(651F, 23F);
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel5,
            this.xrl_TEN_HETHONG,
            this.xrLabel3,
            this.xrLabel4
        });
        this.ReportHeader.HeightF = 133.5F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrsRe_KinhNghiem
        //
        this.xrsRe_KinhNghiem.LocationFloat = new DevExpress.Utils.PointFloat(0F, 45.99991F);
        this.xrsRe_KinhNghiem.Name          = "xrsRe_KinhNghiem";
        this.xrsRe_KinhNghiem.ReportSource  = this.sub_TuyenDung_UV_KinhNghiemCT1;
        this.xrsRe_KinhNghiem.SizeF         = new System.Drawing.SizeF(651F, 25.00009F);
        //
        // xrsRe_TruongDaoTao
        //
        this.xrsRe_TruongDaoTao.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrsRe_TruongDaoTao.Name          = "xrsRe_TruongDaoTao";
        this.xrsRe_TruongDaoTao.ReportSource  = this.sub_TuyenDung_UngVien_TruongDT1;
        this.xrsRe_TruongDaoTao.SizeF         = new System.Drawing.SizeF(650.9999F, 23F);
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(751F, 23F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "CỘNG HÒA XÃ HỘI CHỦ NGHĨA VIỆT NAM";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 25F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(751F, 20.99998F);
        this.xrLabel4.StylePriority.UseBorders       = false;
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Độc lập - Tự do -Hạnh phúc";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 87.5F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(751F, 20.99996F);
        this.xrLabel5.StylePriority.UseBorders       = false;
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.Text                           = "HỒ SỨNG VIÊN";
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TEN_HETHONG
        //
        this.xrl_TEN_HETHONG.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrl_TEN_HETHONG.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_TEN_HETHONG.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 112.5F);
        this.xrl_TEN_HETHONG.Name                           = "xrl_TEN_HETHONG";
        this.xrl_TEN_HETHONG.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TEN_HETHONG.SizeF                          = new System.Drawing.SizeF(751F, 20.99998F);
        this.xrl_TEN_HETHONG.StylePriority.UseBorders       = false;
        this.xrl_TEN_HETHONG.StylePriority.UseFont          = false;
        this.xrl_TEN_HETHONG.StylePriority.UseTextAlignment = false;
        this.xrl_TEN_HETHONG.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(615.5803F, 22.99999F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(135.4197F, 161F);
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrl_NGAY_SINH
        //
        this.xrl_NGAY_SINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NGAY_SINH.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 45.99997F);
        this.xrl_NGAY_SINH.Name                           = "xrl_NGAY_SINH";
        this.xrl_NGAY_SINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAY_SINH.SizeF                          = new System.Drawing.SizeF(100.8333F, 23F);
        this.xrl_NGAY_SINH.StylePriority.UseFont          = false;
        this.xrl_NGAY_SINH.StylePriority.UseTextAlignment = false;
        this.xrl_NGAY_SINH.Text                           = "2. Ngày sinh:  ";
        this.xrl_NGAY_SINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_HO_TEN
        //
        this.xrl_HO_TEN.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_HO_TEN.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 22.99999F);
        this.xrl_HO_TEN.Name                           = "xrl_HO_TEN";
        this.xrl_HO_TEN.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_HO_TEN.SizeF                          = new System.Drawing.SizeF(615.5803F, 23F);
        this.xrl_HO_TEN.StylePriority.UseFont          = false;
        this.xrl_HO_TEN.StylePriority.UseTextAlignment = false;
        this.xrl_HO_TEN.Text                           = "1. Họ và tên:  ";
        this.xrl_HO_TEN.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOI_O_HIENNAY
        //
        this.xrl_NOI_O_HIENNAY.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NOI_O_HIENNAY.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 138F);
        this.xrl_NOI_O_HIENNAY.Name                           = "xrl_NOI_O_HIENNAY";
        this.xrl_NOI_O_HIENNAY.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOI_O_HIENNAY.SizeF                          = new System.Drawing.SizeF(614.5387F, 23F);
        this.xrl_NOI_O_HIENNAY.StylePriority.UseFont          = false;
        this.xrl_NOI_O_HIENNAY.StylePriority.UseTextAlignment = false;
        this.xrl_NOI_O_HIENNAY.Text                           = "11. Nơi ở hiện nay: ";
        this.xrl_NOI_O_HIENNAY.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DAN_TOC
        //
        this.xrl_DAN_TOC.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DAN_TOC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 92.00001F);
        this.xrl_DAN_TOC.Name                           = "xrl_DAN_TOC";
        this.xrl_DAN_TOC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DAN_TOC.SizeF                          = new System.Drawing.SizeF(337.4999F, 23F);
        this.xrl_DAN_TOC.StylePriority.UseFont          = false;
        this.xrl_DAN_TOC.StylePriority.UseTextAlignment = false;
        this.xrl_DAN_TOC.Text                           = "7. Dân tộc: ";
        this.xrl_DAN_TOC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel13
        //
        this.xrLabel13.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel13.Name                  = "xrLabel13";
        this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel13.SizeF                 = new System.Drawing.SizeF(751F, 23F);
        this.xrLabel13.StylePriority.UseFont = false;
        this.xrLabel13.Text                  = "I. THÔNG TIN HỒ SƠ";
        //
        // xrl_HO_KHAU
        //
        this.xrl_HO_KHAU.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_HO_KHAU.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 115F);
        this.xrl_HO_KHAU.Name                           = "xrl_HO_KHAU";
        this.xrl_HO_KHAU.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_HO_KHAU.SizeF                          = new System.Drawing.SizeF(615.5804F, 23.00001F);
        this.xrl_HO_KHAU.StylePriority.UseFont          = false;
        this.xrl_HO_KHAU.StylePriority.UseTextAlignment = false;
        this.xrl_HO_KHAU.Text                           = "10. Hộ khẩu thường trú: ";
        this.xrl_HO_KHAU.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_TON_GIAO
        //
        this.xrl_TON_GIAO.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_TON_GIAO.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 92.00007F);
        this.xrl_TON_GIAO.Name                           = "xrl_TON_GIAO";
        this.xrl_TON_GIAO.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TON_GIAO.SizeF                          = new System.Drawing.SizeF(278.0804F, 22.99994F);
        this.xrl_TON_GIAO.StylePriority.UseFont          = false;
        this.xrl_TON_GIAO.StylePriority.UseTextAlignment = false;
        this.xrl_TON_GIAO.Text                           = "8.Tôn giáo: ";
        this.xrl_TON_GIAO.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DI_DONG
        //
        this.xrl_DI_DONG.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DI_DONG.LocationFloat                  = new DevExpress.Utils.PointFloat(125F, 161F);
        this.xrl_DI_DONG.Name                           = "xrl_DI_DONG";
        this.xrl_DI_DONG.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DI_DONG.SizeF                          = new System.Drawing.SizeF(212.4999F, 23F);
        this.xrl_DI_DONG.StylePriority.UseFont          = false;
        this.xrl_DI_DONG.StylePriority.UseTextAlignment = false;
        this.xrl_DI_DONG.Text                           = "DĐ: ";
        this.xrl_DI_DONG.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DT_NHA
        //
        this.xrl_DT_NHA.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DT_NHA.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 161.0001F);
        this.xrl_DT_NHA.Name                           = "xrl_DT_NHA";
        this.xrl_DT_NHA.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DT_NHA.SizeF                          = new System.Drawing.SizeF(278.0804F, 23F);
        this.xrl_DT_NHA.StylePriority.UseFont          = false;
        this.xrl_DT_NHA.StylePriority.UseTextAlignment = false;
        this.xrl_DT_NHA.Text                           = "NR: ";
        this.xrl_DT_NHA.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_EMAIL
        //
        this.xrl_EMAIL.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_EMAIL.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 184F);
        this.xrl_EMAIL.Name                           = "xrl_EMAIL";
        this.xrl_EMAIL.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_EMAIL.SizeF                          = new System.Drawing.SizeF(124.4087F, 23.00002F);
        this.xrl_EMAIL.StylePriority.UseFont          = false;
        this.xrl_EMAIL.StylePriority.UseTextAlignment = false;
        this.xrl_EMAIL.Text                           = "13. Email:                    ";
        this.xrl_EMAIL.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NGAYCAP_CMND
        //
        this.xrl_NGAYCAP_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_NGAYCAP_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(489.3752F, 207.0001F);
        this.xrl_NGAYCAP_CMND.Name                           = "xrl_NGAYCAP_CMND";
        this.xrl_NGAYCAP_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAYCAP_CMND.SizeF                          = new System.Drawing.SizeF(261.6246F, 23F);
        this.xrl_NGAYCAP_CMND.StylePriority.UseFont          = false;
        this.xrl_NGAYCAP_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_NGAYCAP_CMND.Text                           = "Ngày cấp: ";
        this.xrl_NGAYCAP_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_SO_CMND
        //
        this.xrl_SO_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_SO_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 207F);
        this.xrl_SO_CMND.Name                           = "xrl_SO_CMND";
        this.xrl_SO_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_SO_CMND.SizeF                          = new System.Drawing.SizeF(276.6668F, 23.00003F);
        this.xrl_SO_CMND.StylePriority.UseFont          = false;
        this.xrl_SO_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_SO_CMND.Text                           = "14. Số CMTND: ";
        this.xrl_SO_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOICAP_CMND
        //
        this.xrl_NOICAP_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_NOICAP_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(276.6668F, 207F);
        this.xrl_NOICAP_CMND.Name                           = "xrl_NOICAP_CMND";
        this.xrl_NOICAP_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOICAP_CMND.SizeF                          = new System.Drawing.SizeF(212.7084F, 23.00003F);
        this.xrl_NOICAP_CMND.StylePriority.UseFont          = false;
        this.xrl_NOICAP_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_NOICAP_CMND.Text                           = "Nơi cấp: ";
        this.xrl_NOICAP_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_GIOI_TINH
        //
        this.xrl_GIOI_TINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_GIOI_TINH.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 45.99997F);
        this.xrl_GIOI_TINH.Name                           = "xrl_GIOI_TINH";
        this.xrl_GIOI_TINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_GIOI_TINH.SizeF                          = new System.Drawing.SizeF(131.8304F, 23.00002F);
        this.xrl_GIOI_TINH.StylePriority.UseFont          = false;
        this.xrl_GIOI_TINH.StylePriority.UseTextAlignment = false;
        this.xrl_GIOI_TINH.Text                           = "3. Giới tính: (v)";
        this.xrl_GIOI_TINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOI_SINH
        //
        this.xrl_NOI_SINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NOI_SINH.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 68.99999F);
        this.xrl_NOI_SINH.Name                           = "xrl_NOI_SINH";
        this.xrl_NOI_SINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOI_SINH.SizeF                          = new System.Drawing.SizeF(614.5386F, 23.00002F);
        this.xrl_NOI_SINH.StylePriority.UseFont          = false;
        this.xrl_NOI_SINH.StylePriority.UseTextAlignment = false;
        this.xrl_NOI_SINH.Text                           = "6. Nơi sinh: ";
        this.xrl_NOI_SINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrc_NAM
        //
        this.xrc_NAM.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrc_NAM.LocationFloat                  = new DevExpress.Utils.PointFloat(469.3303F, 45.99997F);
        this.xrc_NAM.Name                           = "xrc_NAM";
        this.xrc_NAM.SizeF                          = new System.Drawing.SizeF(71.25F, 23F);
        this.xrc_NAM.StylePriority.UseFont          = false;
        this.xrc_NAM.StylePriority.UseTextAlignment = false;
        this.xrc_NAM.Text                           = "Nam";
        this.xrc_NAM.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrc_NU
        //
        this.xrc_NU.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrc_NU.LocationFloat                  = new DevExpress.Utils.PointFloat(544.3303F, 45.99997F);
        this.xrc_NU.Name                           = "xrc_NU";
        this.xrc_NU.SizeF                          = new System.Drawing.SizeF(71.25F, 23F);
        this.xrc_NU.StylePriority.UseFont          = false;
        this.xrc_NU.StylePriority.UseTextAlignment = false;
        this.xrc_NU.Text                           = "Nữ";
        this.xrc_NU.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_NGAYSINH
        //
        this.xrl_NGAYSINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NGAYSINH.LocationFloat                  = new DevExpress.Utils.PointFloat(101.875F, 45.99997F);
        this.xrl_NGAYSINH.Name                           = "xrl_NGAYSINH";
        this.xrl_NGAYSINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAYSINH.SizeF                          = new System.Drawing.SizeF(235.625F, 23F);
        this.xrl_NGAYSINH.StylePriority.UseFont          = false;
        this.xrl_NGAYSINH.StylePriority.UseTextAlignment = false;
        this.xrl_NGAYSINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel15
        //
        this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 161F);
        this.xrLabel15.Name                           = "xrLabel15";
        this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel15.SizeF                          = new System.Drawing.SizeF(125F, 23F);
        this.xrLabel15.StylePriority.UseFont          = false;
        this.xrLabel15.StylePriority.UseTextAlignment = false;
        this.xrLabel15.Text                           = "12. Điện thoại:  ";
        this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_Mail
        //
        this.xrl_Mail.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_Mail.LocationFloat                  = new DevExpress.Utils.PointFloat(124.4087F, 184F);
        this.xrl_Mail.Name                           = "xrl_Mail";
        this.xrl_Mail.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_Mail.SizeF                          = new System.Drawing.SizeF(626.5912F, 23F);
        this.xrl_Mail.StylePriority.UseFont          = false;
        this.xrl_Mail.StylePriority.UseTextAlignment = false;
        this.xrl_Mail.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // rp_UngvienChiTiet
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.ReportFooter,
            this.PageFooter,
            this.DetailReport
        });
        this.Margins = new System.Drawing.Printing.Margins(50, 49, 33, 47);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KetQuaThi1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_BC_CC1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KinhNghiemCT1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_TruongDT1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Пример #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonthlyPayroll));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.DetailReport2     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail4           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.Money             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.header            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport4     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail5           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.Branch            = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.Ref              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.Payment          = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel25        = new DevExpress.XtraReports.UI.XRLabel();
     this.Department       = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel22        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrCrossBandBox1  = new DevExpress.XtraReports.UI.XRCrossBandBox();
     this.xrCrossBandLine1 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     this.xrCrossBandLine2 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName    = "DataField";
     this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrLabel12
     //
     resources.ApplyResources(this.xrLabel12, "xrLabel12");
     this.xrLabel12.Name    = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     //
     // TopMargin
     //
     resources.ApplyResources(this.TopMargin, "TopMargin");
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // BottomMargin
     //
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel24, "xrLabel24");
     this.xrLabel24.Name    = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // User
     //
     resources.ApplyResources(this.User, "User");
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel23
     //
     resources.ApplyResources(this.xrLabel23, "xrLabel23");
     this.xrLabel23.Name    = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // xrPageInfo1
     //
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     //
     // xrPageInfo2
     //
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel15
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PayDate")
     });
     resources.ApplyResources(this.xrLabel18, "xrLabel18");
     this.xrLabel18.Name    = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.StylePriority.UseFont = false;
     //
     // xrLabel17
     //
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Multiline             = true;
     this.xrLabel17.Name                  = "xrLabel17";
     this.xrLabel17.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.BeforePrint          += new System.Drawing.Printing.PrintEventHandler(this.xrLabel17_BeforePrint);
     //
     // xrLabel15
     //
     resources.ApplyResources(this.xrLabel15, "xrLabel15");
     this.xrLabel15.Name      = "xrLabel15";
     this.xrLabel15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.StyleName = "Title";
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor     = System.Drawing.Color.Transparent;
     this.DataField.BorderColor   = System.Drawing.Color.Black;
     this.DataField.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth   = 1F;
     this.DataField.Font          = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor     = System.Drawing.Color.Black;
     this.DataField.Name          = "DataField";
     this.DataField.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DataField.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1
     });
     this.DetailReport.DataMember   = "Names";
     this.DetailReport.DataSource   = this.objectDataSource1;
     this.DetailReport.Level        = 1;
     this.DetailReport.Name         = "DetailReport";
     this.DetailReport.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport_BeforePrint);
     //
     // Detail1
     //
     resources.ApplyResources(this.Detail1, "Detail1");
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel14,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel1
     });
     this.Detail1.KeepTogether            = true;
     this.Detail1.MultiColumn.ColumnCount = 15;
     this.Detail1.MultiColumn.ColumnWidth = 60F;
     this.Detail1.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail1.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail1.Name = "Detail1";
     this.Detail1.StylePriority.UseBackColor = false;
     //
     // xrLabel14
     //
     resources.ApplyResources(this.xrLabel14, "xrLabel14");
     this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel14.Name    = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel14.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel14.StyleName                  = "header";
     this.xrLabel14.StylePriority.UseBackColor = false;
     this.xrLabel14.StylePriority.UseBorders   = false;
     this.xrLabel14.StylePriority.UseFont      = false;
     this.xrLabel14.StylePriority.UsePadding   = false;
     //
     // xrLabel8
     //
     resources.ApplyResources(this.xrLabel8, "xrLabel8");
     this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel8.Name    = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel8.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel8.StyleName                  = "header";
     this.xrLabel8.StylePriority.UseBackColor = false;
     this.xrLabel8.StylePriority.UseBorders   = false;
     this.xrLabel8.StylePriority.UseFont      = false;
     this.xrLabel8.StylePriority.UsePadding   = false;
     //
     // xrLabel7
     //
     resources.ApplyResources(this.xrLabel7, "xrLabel7");
     this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel7.Name    = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel7.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel7.StyleName                  = "header";
     this.xrLabel7.StylePriority.UseBackColor = false;
     this.xrLabel7.StylePriority.UseBorders   = false;
     this.xrLabel7.StylePriority.UseFont      = false;
     this.xrLabel7.StylePriority.UsePadding   = false;
     //
     // xrLabel6
     //
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel6.Name    = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel6.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel6.StyleName                  = "header";
     this.xrLabel6.StylePriority.UseBackColor = false;
     this.xrLabel6.StylePriority.UseBorders   = false;
     this.xrLabel6.StylePriority.UseFont      = false;
     this.xrLabel6.StylePriority.UsePadding   = false;
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Names.name")
     });
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.StyleName = "header";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UsePadding       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Reports.MonthlyPayrollCollection);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.DetailReport2
     });
     this.DetailReport1.DataMember   = "Payrolls";
     this.DetailReport1.DataSource   = this.objectDataSource1;
     this.DetailReport1.Level        = 2;
     this.DetailReport1.Name         = "DetailReport1";
     this.DetailReport1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport1_BeforePrint);
     //
     // Detail2
     //
     resources.ApplyResources(this.Detail2, "Detail2");
     this.Detail2.Name = "Detail2";
     //
     // DetailReport2
     //
     this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3
     });
     this.DetailReport2.DataMember = "Payrolls.Entitlements";
     this.DetailReport2.DataSource = this.objectDataSource1;
     this.DetailReport2.Level      = 0;
     this.DetailReport2.Name       = "DetailReport2";
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel13,
         this.xrLabel4,
         this.xrLabel2,
         this.xrLabel3
     });
     resources.ApplyResources(this.Detail3, "Detail3");
     this.Detail3.KeepTogether            = true;
     this.Detail3.MultiColumn.ColumnCount = 15;
     this.Detail3.MultiColumn.ColumnWidth = 60F;
     this.Detail3.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail3.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.Entitlements.AmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel5, "xrLabel5");
     this.xrLabel5.Name      = "xrLabel5";
     this.xrLabel5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel5.StyleName = "Money";
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UsePadding       = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     //
     // xrLabel13
     //
     this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.calendarDays")
     });
     resources.ApplyResources(this.xrLabel13, "xrLabel13");
     this.xrLabel13.Name    = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel13.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel13.StylePriority.UseBorders       = false;
     this.xrLabel13.StylePriority.UsePadding       = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.BasicAmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name    = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel4.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel4.StyleName                      = "Money";
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UsePadding       = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.days")
     });
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name    = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel2.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel2.StyleName                      = "Money";
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.name")
     });
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name    = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel3.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UsePadding       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail4
     });
     this.DetailReport3.DataMember   = "Totals";
     this.DetailReport3.DataSource   = this.objectDataSource1;
     this.DetailReport3.Level        = 3;
     this.DetailReport3.Name         = "DetailReport3";
     this.DetailReport3.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport3_BeforePrint);
     //
     // Detail4
     //
     this.Detail4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9
     });
     resources.ApplyResources(this.Detail4, "Detail4");
     this.Detail4.MultiColumn.ColumnCount = 15;
     this.Detail4.MultiColumn.ColumnWidth = 60F;
     this.Detail4.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail4.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail4.Name = "Detail4";
     //
     // xrLabel11
     //
     this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     resources.ApplyResources(this.xrLabel11, "xrLabel11");
     this.xrLabel11.Name    = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel11.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel11.StylePriority.UseBorders       = false;
     this.xrLabel11.StylePriority.UsePadding       = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     //
     // xrLabel10
     //
     this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalBasics", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel10, "xrLabel10");
     this.xrLabel10.Name    = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel10.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel10.StyleName                      = "Money";
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UsePadding       = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     //
     // xrLabel9
     //
     this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Totals.amount", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel9, "xrLabel9");
     this.xrLabel9.Name      = "xrLabel9";
     this.xrLabel9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel9.StyleName = "Money";
     this.xrLabel9.StylePriority.UseBorders       = false;
     this.xrLabel9.StylePriority.UsePadding       = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     //
     // Money
     //
     this.Money.Name          = "Money";
     this.Money.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // header
     //
     this.header.Name          = "header";
     this.header.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // DetailReport4
     //
     this.DetailReport4.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail5
     });
     this.DetailReport4.DataMember = "Headers";
     this.DetailReport4.DataSource = this.objectDataSource1;
     this.DetailReport4.Level      = 0;
     this.DetailReport4.Name       = "DetailReport4";
     //
     // Detail5
     //
     this.Detail5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16
     });
     resources.ApplyResources(this.Detail5, "Detail5");
     this.Detail5.MultiColumn.ColumnCount = 12;
     this.Detail5.MultiColumn.ColumnWidth = 60F;
     this.Detail5.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail5.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail5.Name = "Detail5";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Headers.name")
     });
     resources.ApplyResources(this.xrLabel16, "xrLabel16");
     this.xrLabel16.Name    = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel28,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19
     });
     resources.ApplyResources(this.PageHeader, "PageHeader");
     this.PageHeader.Name = "PageHeader";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Branch, "Text", "")
     });
     resources.ApplyResources(this.xrLabel28, "xrLabel28");
     this.xrLabel28.Name    = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     //
     // Branch
     //
     resources.ApplyResources(this.Branch, "Branch");
     this.Branch.Name    = "Branch";
     this.Branch.Visible = false;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Ref, "Text", "")
     });
     resources.ApplyResources(this.xrLabel27, "xrLabel27");
     this.xrLabel27.Name    = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     //
     // Ref
     //
     resources.ApplyResources(this.Ref, "Ref");
     this.Ref.Name    = "Ref";
     this.Ref.Visible = false;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Payment, "Text", "")
     });
     resources.ApplyResources(this.xrLabel26, "xrLabel26");
     this.xrLabel26.Name    = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     //
     // Payment
     //
     resources.ApplyResources(this.Payment, "Payment");
     this.Payment.Name    = "Payment";
     this.Payment.Visible = false;
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Department, "Text", "")
     });
     resources.ApplyResources(this.xrLabel25, "xrLabel25");
     this.xrLabel25.Name    = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     //
     // Department
     //
     resources.ApplyResources(this.Department, "Department");
     this.Department.Name    = "Department";
     this.Department.Visible = false;
     //
     // xrLabel22
     //
     resources.ApplyResources(this.xrLabel22, "xrLabel22");
     this.xrLabel22.Name    = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     //
     // xrLabel21
     //
     resources.ApplyResources(this.xrLabel21, "xrLabel21");
     this.xrLabel21.Name    = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     //
     // xrLabel20
     //
     resources.ApplyResources(this.xrLabel20, "xrLabel20");
     this.xrLabel20.Name    = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     //
     // xrLabel19
     //
     resources.ApplyResources(this.xrLabel19, "xrLabel19");
     this.xrLabel19.Name    = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     //
     // xrCrossBandBox1
     //
     this.xrCrossBandBox1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandBox1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandBox1, "xrCrossBandBox1");
     this.xrCrossBandBox1.Name      = "xrCrossBandBox1";
     this.xrCrossBandBox1.StartBand = this.PageHeader;
     this.xrCrossBandBox1.WidthF    = 940.625F;
     //
     // xrCrossBandLine1
     //
     this.xrCrossBandLine1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine1, "xrCrossBandLine1");
     this.xrCrossBandLine1.Name      = "xrCrossBandLine1";
     this.xrCrossBandLine1.StartBand = this.PageHeader;
     this.xrCrossBandLine1.WidthF    = 1.041667F;
     //
     // xrCrossBandLine2
     //
     this.xrCrossBandLine2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine2.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine2, "xrCrossBandLine2");
     this.xrCrossBandLine2.Name      = "xrCrossBandLine2";
     this.xrCrossBandLine2.StartBand = this.PageHeader;
     this.xrCrossBandLine2.WidthF    = 938.5417F;
     //
     // MonthlyPayroll
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport,
         this.DetailReport1,
         this.DetailReport3,
         this.DetailReport4,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.CrossBandControls.AddRange(new DevExpress.XtraReports.UI.XRCrossBandControl[] {
         this.xrCrossBandLine2,
         this.xrCrossBandLine1,
         this.xrCrossBandBox1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Department,
         this.Branch,
         this.Payment,
         this.Ref,
         this.User
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField,
         this.Money,
         this.header
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Пример #36
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "XtraReport1.resx";

        System.Resources.ResourceManager resources = global::Resources.XtraReport1.ResourceManager;
        this.components = new System.ComponentModel.Container();
        DevExpress.DataAccess.Sql.SelectQuery        selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
        DevExpress.DataAccess.Sql.AllColumns         allColumns1         = new DevExpress.DataAccess.Sql.AllColumns();
        DevExpress.DataAccess.Sql.Table              table1              = new DevExpress.DataAccess.Sql.Table();
        DevExpress.DataAccess.Sql.QueryParameter     queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
        DevExpress.DataAccess.Sql.Join               join1               = new DevExpress.DataAccess.Sql.Join();
        DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
        DevExpress.DataAccess.Sql.Table              table2              = new DevExpress.DataAccess.Sql.Table();
        DevExpress.DataAccess.Sql.MasterDetailInfo   masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
        DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
        this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
        this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
        this.detailReportBand1        = new DevExpress.XtraReports.UI.DetailReportBand();
        this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
        this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
        this.detailBand1              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable3                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18            = new DevExpress.XtraReports.UI.XRTableCell();
        this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaption1           = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData1              = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.id_us                    = new DevExpress.XtraReports.Parameters.Parameter();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.Detail.HeightF       = 56F;
        this.Detail.KeepTogether  = true;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable1
        //
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1,
            this.xrTableRow2
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 56F);
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 0.5D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders   = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTableCell1.Name      = "xrTableCell1";
        this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell1.StyleName = "DetailCaption1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "id user";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell1.Weight        = 0.28735630915715143D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name      = "xrTableCell2";
        this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell2.StyleName = "DetailCaption1";
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "id building";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell2.Weight        = 0.4032183837890625D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell3.StyleName = "DetailCaption1";
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "id rules";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell3.Weight        = 0.30942528357872595D;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 0.5D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_user]")
        });
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell4.StyleName = "DetailData1";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "xrTableCell4";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell4.Weight        = 0.28735630915715143D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_building]")
        });
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell5.StyleName = "DetailData1";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "xrTableCell5";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell5.Weight        = 0.4032183837890625D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_rules]")
        });
        this.xrTableCell6.Name      = "xrTableCell6";
        this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell6.StyleName = "DetailData1";
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "xrTableCell6";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell6.Weight        = 0.30942528357872595D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 100F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1,
            this.xrPageInfo2
        });
        this.BottomMargin.HeightF       = 100F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
        this.xrPageInfo1.StyleName     = "PageInfo";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
        this.xrPageInfo2.Name             = "xrPageInfo2";
        this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
        this.xrPageInfo2.StyleName        = "PageInfo";
        this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
        this.xrPageInfo2.TextFormatString = "Страница {0} из {1}";
        //
        // sqlDataSource1
        //
        this.sqlDataSource1.ConnectionName = "mysql_report";
        this.sqlDataSource1.Name           = "sqlDataSource1";
        table1.MetaSerializable            = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"628\" />";
        table1.Name       = "building";
        allColumns1.Table = table1;
        selectQuery1.Columns.Add(allColumns1);
        selectQuery1.FilterString      = "[user_atributes.id_user] = ?id_us";
        selectQuery1.GroupFilterString = "";
        selectQuery1.Name     = "user_atributes";
        queryParameter1.Name  = "id_us";
        queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
        queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.id_us]", typeof(string));
        selectQuery1.Parameters.Add(queryParameter1);
        relationColumnInfo1.NestedKeyColumn = "id";
        relationColumnInfo1.ParentKeyColumn = "id_building";
        join1.KeyColumns.Add(relationColumnInfo1);
        join1.Nested            = table1;
        table2.MetaSerializable = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"115\" />";
        table2.Name             = "user_atributes";
        join1.Parent            = table2;
        selectQuery1.Relations.Add(join1);
        selectQuery1.Tables.Add(table2);
        selectQuery1.Tables.Add(table1);
        this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            selectQuery1
        });
        masterDetailInfo1.DetailQueryName   = "building";
        relationColumnInfo2.NestedKeyColumn = "id";
        relationColumnInfo2.ParentKeyColumn = "id_building";
        masterDetailInfo1.KeyColumns.Add(relationColumnInfo2);
        masterDetailInfo1.MasterQueryName = "user_atributes";
        this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
            masterDetailInfo1
        });
        this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
        //
        // reportHeaderBand1
        //
        this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1
        });
        this.reportHeaderBand1.HeightF = 60F;
        this.reportHeaderBand1.Name    = "reportHeaderBand1";
        //
        // xrLabel1
        //
        this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
        this.xrLabel1.Name          = "xrLabel1";
        this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF         = new System.Drawing.SizeF(638F, 26F);
        this.xrLabel1.StyleName     = "Title";
        this.xrLabel1.Text          = "xrep";
        //
        // detailReportBand1
        //
        this.detailReportBand1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.groupHeaderBand1,
            this.detailBand1
        });
        this.detailReportBand1.DataMember = "user_atributes.user_atributesbuilding";
        this.detailReportBand1.DataSource = this.sqlDataSource1;
        this.detailReportBand1.Level      = 0;
        this.detailReportBand1.Name       = "detailReportBand1";
        //
        // groupHeaderBand1
        //
        this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
        this.groupHeaderBand1.HeightF    = 48F;
        this.groupHeaderBand1.Name       = "groupHeaderBand1";
        //
        // xrPanel1
        //
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPanel1.Name          = "xrPanel1";
        this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
        this.xrPanel1.StyleName     = "DetailCaptionBackground3";
        //
        // xrTable2
        //
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 28F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name      = "xrTableCell7";
        this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell7.StyleName = "DetailCaption3";
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "id";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell7.Weight        = 0.10132158719576322D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell8.StyleName = "DetailCaption3";
        this.xrTableCell8.Text      = "title";
        this.xrTableCell8.Weight    = 0.15418502807617188D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name      = "xrTableCell9";
        this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell9.StyleName = "DetailCaption3";
        this.xrTableCell9.Text      = "type";
        this.xrTableCell9.Weight    = 0.16299560546875D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name      = "xrTableCell10";
        this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell10.StyleName = "DetailCaption3";
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "year";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell10.Weight        = 0.16299560546875D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell11.StyleName = "DetailCaption3";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "floor";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell11.Weight        = 0.17180617112379809D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell12.StyleName = "DetailCaption3";
        this.xrTableCell12.Text      = "address";
        this.xrTableCell12.Weight    = 0.24669604961688701D;
        //
        // detailBand1
        //
        this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.detailBand1.HeightF = 25F;
        this.detailBand1.Name    = "detailBand1";
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.OddStyleName  = "DetailData3_Odd";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 25F);
        //
        // xrTableRow4
        //
        this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18
        });
        this.xrTableRow4.Name   = "xrTableRow4";
        this.xrTableRow4.Weight = 11.5D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id]")
        });
        this.xrTableCell13.Name      = "xrTableCell13";
        this.xrTableCell13.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell13.StyleName = "DetailData3";
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.Text          = "xrTableCell13";
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell13.Weight        = 0.10132158719576322D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[title]")
        });
        this.xrTableCell14.Name      = "xrTableCell14";
        this.xrTableCell14.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell14.StyleName = "DetailData3";
        this.xrTableCell14.Text      = "xrTableCell14";
        this.xrTableCell14.Weight    = 0.15418501633864182D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[type]")
        });
        this.xrTableCell15.Name      = "xrTableCell15";
        this.xrTableCell15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell15.StyleName = "DetailData3";
        this.xrTableCell15.Text      = "xrTableCell15";
        this.xrTableCell15.Weight    = 0.16299559373121994D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[year]")
        });
        this.xrTableCell16.Name      = "xrTableCell16";
        this.xrTableCell16.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell16.StyleName = "DetailData3";
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "xrTableCell16";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell16.Weight        = 0.16299559373121994D;
        //
        // xrTableCell17
        //
        this.xrTableCell17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[floor]")
        });
        this.xrTableCell17.Name      = "xrTableCell17";
        this.xrTableCell17.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell17.StyleName = "DetailData3";
        this.xrTableCell17.StylePriority.UseTextAlignment = false;
        this.xrTableCell17.Text          = "xrTableCell17";
        this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell17.Weight        = 0.17180615938626803D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[address]")
        });
        this.xrTableCell18.Name      = "xrTableCell18";
        this.xrTableCell18.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell18.StyleName = "DetailData3";
        this.xrTableCell18.Text      = "xrTableCell18";
        this.xrTableCell18.Weight    = 0.24669602614182692D;
        //
        // Title
        //
        this.Title.BackColor   = System.Drawing.Color.Transparent;
        this.Title.BorderColor = System.Drawing.Color.Black;
        this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
        this.Title.BorderWidth = 1F;
        this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
        this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.Title.Name        = "Title";
        //
        // DetailCaption1
        //
        this.DetailCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.DetailCaption1.BorderColor   = System.Drawing.Color.White;
        this.DetailCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
        this.DetailCaption1.BorderWidth   = 2F;
        this.DetailCaption1.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailCaption1.ForeColor     = System.Drawing.Color.White;
        this.DetailCaption1.Name          = "DetailCaption1";
        this.DetailCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData1
        //
        this.DetailData1.BackColor     = System.Drawing.Color.Transparent;
        this.DetailData1.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailData1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
        this.DetailData1.BorderWidth   = 2F;
        this.DetailData1.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData1.ForeColor     = System.Drawing.Color.Black;
        this.DetailData1.Name          = "DetailData1";
        this.DetailData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailCaption3
        //
        this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
        this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.DetailCaption3.Name          = "DetailCaption3";
        this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3
        //
        this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData3.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3.Name          = "DetailData3";
        this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3_Odd
        //
        this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
        this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.DetailData3_Odd.BorderWidth   = 1F;
        this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3_Odd.Name          = "DetailData3_Odd";
        this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailCaptionBackground3
        //
        this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
        this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
        this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
        this.DetailCaptionBackground3.BorderWidth = 2F;
        this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
        //
        // PageInfo
        //
        this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.PageInfo.Name      = "PageInfo";
        this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        //
        // id_us
        //
        this.id_us.Description = "id_us";
        this.id_us.Name        = "id_us";
        //
        // XtraReport1
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.reportHeaderBand1,
            this.detailReportBand1
        });
        this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.sqlDataSource1
        });
        this.DataMember = "user_atributes";
        this.DataSource = this.sqlDataSource1;
        this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.id_us
        });
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.DetailCaption1,
            this.DetailData1,
            this.DetailCaption3,
            this.DetailData3,
            this.DetailData3_Odd,
            this.DetailCaptionBackground3,
            this.PageInfo
        });
        this.Version = "17.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Пример #37
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(r_escapes));
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView1 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView2 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery2 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter3 = new DevExpress.DataAccess.Sql.QueryParameter();
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery3 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery4 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter4 = new DevExpress.DataAccess.Sql.QueryParameter();
            DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
            DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView3 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView4 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
            DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView5 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView3 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraReports.Parameters.StaticListLookUpSettings staticListLookUpSettings1 = new DevExpress.XtraReports.Parameters.StaticListLookUpSettings();
            DevExpress.XtraReports.Parameters.StaticListLookUpSettings staticListLookUpSettings2 = new DevExpress.XtraReports.Parameters.StaticListLookUpSettings();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
            this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrChart3 = new DevExpress.XtraReports.UI.XRChart();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrColumn1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrColumn2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrColumn3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrColumn4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrColumn5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrColumn6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrChart2 = new DevExpress.XtraReports.UI.XRChart();
            this.xrChart1 = new DevExpress.XtraReports.UI.XRChart();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
            this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
            this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.wc1_type = new DevExpress.XtraReports.Parameters.Parameter();
            this.wc1_vsm = new DevExpress.XtraReports.Parameters.Parameter();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // TopMargin
            // 
            this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel4,
            this.xrLine1,
            this.xrPictureBox1});
            this.TopMargin.HeightF = 65F;
            this.TopMargin.Name = "TopMargin";
            // 
            // xrLabel4
            // 
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(598.9583F, 25.33332F);
            this.xrLabel4.Multiline = true;
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(391.0416F, 23F);
            this.xrLabel4.StylePriority.UseTextAlignment = false;
            this.xrLabel4.Text = "ESCAPES";
            this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            // 
            // xrLine1
            // 
            this.xrLine1.BorderColor = System.Drawing.Color.Empty;
            this.xrLine1.ForeColor = System.Drawing.Color.Gray;
            this.xrLine1.LineWidth = 5F;
            this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 48.33333F);
            this.xrLine1.Name = "xrLine1";
            this.xrLine1.SizeF = new System.Drawing.SizeF(996.875F, 16.66667F);
            this.xrLine1.StylePriority.UseBorderColor = false;
            this.xrLine1.StylePriority.UseForeColor = false;
            // 
            // xrPictureBox1
            // 
            this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
            this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 8.75F);
            this.xrPictureBox1.Name = "xrPictureBox1";
            this.xrPictureBox1.SizeF = new System.Drawing.SizeF(153.125F, 39.58333F);
            this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
            // 
            // BottomMargin
            // 
            this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.xrLine2});
            this.BottomMargin.HeightF = 54F;
            this.BottomMargin.Name = "BottomMargin";
            // 
            // xrLabel1
            // 
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(598.9583F, 16.66667F);
            this.xrLabel1.Multiline = true;
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(401.0417F, 23F);
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text = "xrLabel1";
            this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            // 
            // xrLine2
            // 
            this.xrLine2.BorderColor = System.Drawing.Color.Empty;
            this.xrLine2.ForeColor = System.Drawing.Color.Gray;
            this.xrLine2.LineWidth = 5F;
            this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLine2.Name = "xrLine2";
            this.xrLine2.SizeF = new System.Drawing.SizeF(996.875F, 16.66667F);
            this.xrLine2.StylePriority.UseBorderColor = false;
            this.xrLine2.StylePriority.UseForeColor = false;
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel6,
            this.xrChart3,
            this.xrLabel3,
            this.xrLabel5,
            this.xrLabel2,
            this.xrTable2,
            this.xrChart2,
            this.xrChart1});
            this.Detail.HeightF = 582.7084F;
            this.Detail.Name = "Detail";
            // 
            // xrLabel6
            // 
            this.xrLabel6.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 534.7084F);
            this.xrLabel6.Multiline = true;
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(153.125F, 23F);
            this.xrLabel6.StylePriority.UseFont = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.Text = "ACTIONS RAIL";
            this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            // 
            // xrChart3
            // 
            this.xrChart3.AutoLayout = true;
            this.xrChart3.BackColor = System.Drawing.Color.White;
            this.xrChart3.BorderColor = System.Drawing.Color.Black;
            this.xrChart3.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrChart3.DataSource = this.sqlDataSource1;
            xyDiagram1.AxisX.Label.Angle = 270;
            xyDiagram1.AxisX.Label.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.AxisX.Label.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xyDiagram1.AxisX.Label.ResolveOverlappingOptions.MinIndent = 1;
            xyDiagram1.AxisX.MinorCount = 1;
            xyDiagram1.AxisX.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.DefaultPane.EnableAxisXZooming = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.DefaultPane.EnableAxisYZooming = DevExpress.Utils.DefaultBoolean.False;
            this.xrChart3.Diagram = xyDiagram1;
            this.xrChart3.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
            this.xrChart3.Legend.BackColor = System.Drawing.Color.Transparent;
            this.xrChart3.Legend.Border.Color = System.Drawing.SystemColors.ActiveBorder;
            this.xrChart3.Legend.Border.Visibility = DevExpress.Utils.DefaultBoolean.True;
            this.xrChart3.Legend.Direction = DevExpress.XtraCharts.LegendDirection.LeftToRight;
            this.xrChart3.Legend.MarkerSize = new System.Drawing.Size(20, 10);
            this.xrChart3.Legend.Name = "Default Legend";
            this.xrChart3.Legend.Title.Text = "Actual";
            this.xrChart3.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.xrChart3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.625F);
            this.xrChart3.Name = "xrChart3";
            this.xrChart3.PaletteBaseColorNumber = 2;
            this.xrChart3.PaletteName = "Grayscale";
            series1.ArgumentDataMember = "Query_4.scause";
            sideBySideBarSeriesLabel1.Border.Visibility = DevExpress.Utils.DefaultBoolean.True;
            sideBySideBarSeriesLabel1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            sideBySideBarSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.False;
            sideBySideBarSeriesLabel1.TextColor = System.Drawing.Color.Black;
            sideBySideBarSeriesLabel1.TextOrientation = DevExpress.XtraCharts.TextOrientation.BottomToTop;
            series1.Label = sideBySideBarSeriesLabel1;
            series1.LegendName = "Default Legend";
            series1.Name = "Actual";
            series1.ValueDataMembersSerializable = "Query_4.factual";
            sideBySideBarSeriesView1.Color = System.Drawing.Color.SteelBlue;
            sideBySideBarSeriesView1.Transparency = ((byte)(135));
            series1.View = sideBySideBarSeriesView1;
            series2.ArgumentDataMember = "Query_4.scause";
            pointSeriesLabel1.Border.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            pointSeriesLabel1.Border.Visibility = DevExpress.Utils.DefaultBoolean.True;
            pointSeriesLabel1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel1.LineVisibility = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel1.TextColor = System.Drawing.Color.Red;
            series2.Label = pointSeriesLabel1;
            series2.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
            series2.Name = "Goal";
            series2.ShowInLegend = false;
            series2.ValueDataMembersSerializable = "Query_4.fsum";
            lineSeriesView1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            series2.View = lineSeriesView1;
            this.xrChart3.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2};
            sideBySideBarSeriesView2.Transparency = ((byte)(135));
            this.xrChart3.SeriesTemplate.View = sideBySideBarSeriesView2;
            this.xrChart3.SizeF = new System.Drawing.SizeF(601.0417F, 159.0834F);
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "DB_1033_DashboardConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            customSqlQuery1.Name = "Query_1";
            queryParameter1.Name = "wc1_type";
            queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter1.Value = new DevExpress.DataAccess.Expression("?wc1_type", typeof(string));
            queryParameter2.Name = "wc1_vsm";
            queryParameter2.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter2.Value = new DevExpress.DataAccess.Expression("?wc1_vsm", typeof(string));
            customSqlQuery1.Parameters.Add(queryParameter1);
            customSqlQuery1.Parameters.Add(queryParameter2);
            customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
            customSqlQuery2.Name = "Query_2";
            queryParameter3.Name = "wc1_vsm";
            queryParameter3.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter3.Value = new DevExpress.DataAccess.Expression("IIF(?wc1_vsm == \'EP&A\',\'EP&A\', IIF(?wc1_vsm == \'Heat Transfer\', \'Heat Transfer\', " +
        "\'%%\'))\n\n", typeof(string));
            customSqlQuery2.Parameters.Add(queryParameter3);
            customSqlQuery2.Sql = resources.GetString("customSqlQuery2.Sql");
            customSqlQuery3.Name = "Query_3";
            customSqlQuery3.Sql = "select top 5 * from [tbl_actions]\r\nwhere report = \'escapes\'\r\n";
            customSqlQuery4.Name = "Query_4";
            queryParameter4.Name = "wc1_vsm";
            queryParameter4.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter4.Value = new DevExpress.DataAccess.Expression("?wc1_vsm", typeof(string));
            customSqlQuery4.Parameters.Add(queryParameter4);
            customSqlQuery4.Sql = resources.GetString("customSqlQuery4.Sql");
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            customSqlQuery1,
            customSqlQuery2,
            customSqlQuery3,
            customSqlQuery4});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // xrLabel3
            // 
            this.xrLabel3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(259.9998F, 352.625F);
            this.xrLabel3.Multiline = true;
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel3.StylePriority.UseFont = false;
            this.xrLabel3.StylePriority.UseTextAlignment = false;
            this.xrLabel3.Text = "FORECAST";
            this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrLabel5
            // 
            this.xrLabel5.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(259.9998F, 0F);
            this.xrLabel5.Multiline = true;
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel5.StylePriority.UseFont = false;
            this.xrLabel5.StylePriority.UseTextAlignment = false;
            this.xrLabel5.Text = "TREND";
            this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(748.9583F, 0F);
            this.xrLabel2.Multiline = true;
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text = "PARETO";
            this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrTable2
            // 
            this.xrTable2.BackColor = System.Drawing.Color.IndianRed;
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.BorderWidth = 1F;
            this.xrTable2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrTable2.ForeColor = System.Drawing.Color.White;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 557.7084F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(996.875F, 25F);
            this.xrTable2.StylePriority.UseBackColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseBorderWidth = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseForeColor = false;
            this.xrTable2.StylePriority.UseTextAlignment = false;
            this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrColumn1,
            this.xrColumn2,
            this.xrColumn3,
            this.xrColumn4,
            this.xrColumn5,
            this.xrColumn6});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrColumn1
            // 
            this.xrColumn1.Multiline = true;
            this.xrColumn1.Name = "xrColumn1";
            this.xrColumn1.Text = "RESPONSIBLE";
            this.xrColumn1.Weight = 0.92163030833659876D;
            // 
            // xrColumn2
            // 
            this.xrColumn2.Multiline = true;
            this.xrColumn2.Name = "xrColumn2";
            this.xrColumn2.Text = "ISSUE";
            this.xrColumn2.Weight = 1.4858934475411441D;
            // 
            // xrColumn3
            // 
            this.xrColumn3.Multiline = true;
            this.xrColumn3.Name = "xrColumn3";
            this.xrColumn3.Text = "ACTION";
            this.xrColumn3.Weight = 1.8025078982170846D;
            // 
            // xrColumn4
            // 
            this.xrColumn4.Multiline = true;
            this.xrColumn4.Name = "xrColumn4";
            this.xrColumn4.Text = "STATUS";
            this.xrColumn4.Weight = 0.60501558214145756D;
            // 
            // xrColumn5
            // 
            this.xrColumn5.Multiline = true;
            this.xrColumn5.Name = "xrColumn5";
            this.xrColumn5.Text = "START_DATE";
            this.xrColumn5.Weight = 0.5987462345709248D;
            // 
            // xrColumn6
            // 
            this.xrColumn6.Multiline = true;
            this.xrColumn6.Name = "xrColumn6";
            this.xrColumn6.Text = "DUE_DATE";
            this.xrColumn6.Weight = 0.58620652919279D;
            // 
            // xrChart2
            // 
            this.xrChart2.AutoLayout = true;
            this.xrChart2.BackColor = System.Drawing.Color.White;
            this.xrChart2.BorderColor = System.Drawing.Color.Black;
            this.xrChart2.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrChart2.DataSource = this.sqlDataSource1;
            xyDiagram2.AxisX.Label.Angle = 270;
            xyDiagram2.AxisX.Label.ResolveOverlappingOptions.AllowHide = false;
            xyDiagram2.AxisX.Label.ResolveOverlappingOptions.AllowStagger = false;
            xyDiagram2.AxisX.Label.ResolveOverlappingOptions.MinIndent = 0;
            xyDiagram2.AxisX.MinorCount = 1;
            xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram2.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram2.DefaultPane.EnableAxisXZooming = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram2.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram2.DefaultPane.EnableAxisYZooming = DevExpress.Utils.DefaultBoolean.False;
            this.xrChart2.Diagram = xyDiagram2;
            this.xrChart2.IndicatorsPaletteName = "Grayscale";
            this.xrChart2.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
            this.xrChart2.Legend.BackColor = System.Drawing.Color.Transparent;
            this.xrChart2.Legend.Border.Color = System.Drawing.SystemColors.ActiveBorder;
            this.xrChart2.Legend.Border.Visibility = DevExpress.Utils.DefaultBoolean.True;
            this.xrChart2.Legend.Direction = DevExpress.XtraCharts.LegendDirection.LeftToRight;
            this.xrChart2.Legend.MarkerSize = new System.Drawing.Size(20, 10);
            this.xrChart2.Legend.Name = "Default Legend";
            this.xrChart2.Legend.Title.Text = "Actual";
            this.xrChart2.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.xrChart2.LocationFloat = new DevExpress.Utils.PointFloat(611.4583F, 23.00002F);
            this.xrChart2.Name = "xrChart2";
            this.xrChart2.PaletteBaseColorNumber = 2;
            this.xrChart2.PaletteName = "Grayscale";
            series3.ArgumentDataMember = "Query_2.cause";
            sideBySideBarSeriesLabel2.Border.Visibility = DevExpress.Utils.DefaultBoolean.True;
            sideBySideBarSeriesLabel2.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            sideBySideBarSeriesLabel2.LineVisibility = DevExpress.Utils.DefaultBoolean.False;
            sideBySideBarSeriesLabel2.TextColor = System.Drawing.Color.Black;
            sideBySideBarSeriesLabel2.TextOrientation = DevExpress.XtraCharts.TextOrientation.BottomToTop;
            series3.Label = sideBySideBarSeriesLabel2;
            series3.LegendName = "Default Legend";
            series3.Name = "Actual";
            series3.ValueDataMembersSerializable = "Query_2.cValue";
            sideBySideBarSeriesView3.Color = System.Drawing.Color.Firebrick;
            sideBySideBarSeriesView3.Transparency = ((byte)(135));
            series3.View = sideBySideBarSeriesView3;
            series4.ArgumentDataMember = "Query_2.cause";
            pointSeriesLabel2.Border.Visibility = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel2.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel2.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Empty;
            pointSeriesLabel2.LineVisibility = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel2.TextColor = System.Drawing.Color.Black;
            series4.Label = pointSeriesLabel2;
            series4.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
            series4.Name = "Goal";
            series4.ShowInLegend = false;
            series4.ValueDataMembersSerializable = "Query_2.Acum";
            lineSeriesView2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            series4.View = lineSeriesView2;
            this.xrChart2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series3,
        series4};
            sideBySideBarSeriesView4.Transparency = ((byte)(135));
            this.xrChart2.SeriesTemplate.View = sideBySideBarSeriesView4;
            this.xrChart2.SizeF = new System.Drawing.SizeF(378.5416F, 511.7083F);
            // 
            // xrChart1
            // 
            this.xrChart1.BorderColor = System.Drawing.Color.Black;
            this.xrChart1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrChart1.DataSource = this.sqlDataSource1;
            xyDiagram3.AxisX.AutoScaleBreaks.MaxCount = 1;
            xyDiagram3.AxisX.InterlacedColor = System.Drawing.Color.DimGray;
            xyDiagram3.AxisX.MinorCount = 1;
            xyDiagram3.AxisX.Tickmarks.MinorVisible = false;
            xyDiagram3.AxisX.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram3.AxisX.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
            xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram3.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram3.DefaultPane.EnableAxisXZooming = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram3.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram3.DefaultPane.EnableAxisYZooming = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram3.RuntimePaneCollapse = false;
            this.xrChart1.Diagram = xyDiagram3;
            this.xrChart1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
            this.xrChart1.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.BottomOutside;
            this.xrChart1.Legend.Direction = DevExpress.XtraCharts.LegendDirection.LeftToRight;
            this.xrChart1.Legend.MarkerSize = new System.Drawing.Size(10, 10);
            this.xrChart1.Legend.Name = "Default Legend";
            this.xrChart1.Legend.Title.Text = "ESCAPES";
            this.xrChart1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.00002F);
            this.xrChart1.Name = "xrChart1";
            this.xrChart1.PaletteName = "Grayscale";
            series5.ArgumentDataMember = "Query_1.sdesc";
            series5.Name = "Actual";
            series5.ValueDataMembersSerializable = "Query_1.factual";
            sideBySideBarSeriesView5.Color = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
            series5.View = sideBySideBarSeriesView5;
            series6.ArgumentDataMember = "Query_1.sdesc";
            pointSeriesLabel3.Border.Visibility = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel3.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel3.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Empty;
            pointSeriesLabel3.LineVisibility = DevExpress.Utils.DefaultBoolean.False;
            pointSeriesLabel3.TextColor = System.Drawing.Color.Black;
            series6.Label = pointSeriesLabel3;
            series6.Name = "Goal";
            series6.ValueDataMembersSerializable = "Query_1.fgoal";
            lineSeriesView3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            series6.View = lineSeriesView3;
            this.xrChart1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series5,
        series6};
            this.xrChart1.SizeF = new System.Drawing.SizeF(601.0417F, 326.5833F);
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xrTable1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(996.875F, 25F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[responsible]")});
            this.xrTableCell1.Multiline = true;
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "xrTableCell1";
            this.xrTableCell1.Weight = 0.92163007873726477D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[issue]")});
            this.xrTableCell2.Multiline = true;
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "xrTableCell2";
            this.xrTableCell2.Weight = 1.4858935393808777D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[action]")});
            this.xrTableCell3.Multiline = true;
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "xrTableCell3";
            this.xrTableCell3.Weight = 1.8025080359766852D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[open_close]")});
            this.xrTableCell4.Multiline = true;
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.Text = "xrTableCell4";
            this.xrTableCell4.Weight = 0.60501558214145756D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[creation_date]")});
            this.xrTableCell5.Multiline = true;
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Text = "xrTableCell5";
            this.xrTableCell5.TextFormatString = "{0:MM/dd/yyyy}";
            this.xrTableCell5.Weight = 0.5987462345709248D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[due_date]")});
            this.xrTableCell6.Multiline = true;
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.TextFormatString = "{0:MM/dd/yyyy}";
            this.xrTableCell6.Weight = 0.58620652919279D;
            // 
            // DetailReport
            // 
            this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail1,
            this.ReportFooter});
            this.DetailReport.DataMember = "Query_3";
            this.DetailReport.DataSource = this.sqlDataSource1;
            this.DetailReport.Level = 0;
            this.DetailReport.Name = "DetailReport";
            // 
            // Detail1
            // 
            this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.Detail1.HeightF = 29.37495F;
            this.Detail1.Name = "Detail1";
            // 
            // ReportFooter
            // 
            this.ReportFooter.HeightF = 2.708689F;
            this.ReportFooter.Name = "ReportFooter";
            // 
            // wc1_type
            // 
            this.wc1_type.Description = "Period:";
            this.wc1_type.Name = "wc1_type";
            this.wc1_type.ValueInfo = "WEEKLY";
            staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("WEEKLY", null));
            staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("MONTHLY", null));
            staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("QUARTERLY", null));
            staticListLookUpSettings1.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("YEARLY", null));
            this.wc1_type.ValueSourceSettings = staticListLookUpSettings1;
            // 
            // wc1_vsm
            // 
            this.wc1_vsm.Description = "VSM:";
            this.wc1_vsm.Name = "wc1_vsm";
            this.wc1_vsm.ValueInfo = "All";
            staticListLookUpSettings2.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("All", null));
            staticListLookUpSettings2.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("EP&A", null));
            staticListLookUpSettings2.LookUpValues.Add(new DevExpress.XtraReports.Parameters.LookUpValue("Heat Transfer", null));
            this.wc1_vsm.ValueSourceSettings = staticListLookUpSettings2;
            // 
            // r_escapes
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.TopMargin,
            this.BottomMargin,
            this.Detail,
            this.DetailReport});
            this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.sqlDataSource1});
            this.DataSource = this.sqlDataSource1;
            this.Font = new System.Drawing.Font("Arial", 9.75F);
            this.Landscape = true;
            this.Margins = new System.Drawing.Printing.Margins(48, 50, 65, 54);
            this.PageColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.PageHeight = 850;
            this.PageWidth = 1100;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.wc1_type,
            this.wc1_vsm});
            this.RequestParameters = false;
            this.Version = "20.1";
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

    }
Пример #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "XtraReport07.resx";
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary15 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary16 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary17 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary18 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary19 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary20 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary21 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary22 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary23 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary24 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary25 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary26 = new DevExpress.XtraReports.UI.XRSummary();
         this.dsTEFollowUp1 = new dsTEFollowUp();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblSchool = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblDateTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.lblTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.cdtblhedeTableAdapter1 = new dsTEFollowUpTableAdapters.cdtblhedeTableAdapter();
         this.xRep05TableAdapter1 = new dsTEFollowUpTableAdapters.XRep05TableAdapter();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportHeader1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter2 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell71 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell72 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell73 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell74 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell75 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell76 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell78 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell77 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell79 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell80 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell81 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell82 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell83 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell84 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell85 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell86 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell87 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell88 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell89 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell90 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell91 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
         this.ReportHeader2 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xRep07Sub1TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub1TableAdapter();
         this.xRep07Sub2TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub2TableAdapter();
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // dsTEFollowUp1
         //
         this.dsTEFollowUp1.DataSetName = "dsTEFollowUp";
         this.dsTEFollowUp1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // Detail
         //
         this.Detail.HeightF = 14.58333F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseTextAlignment = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // xrTable2
         //
         this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable2.SizeF = new System.Drawing.SizeF(1001F, 25F);
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell22,
         this.xrTableCell20,
         this.xrTableCell16,
         this.xrTableCell11});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.CanGrow = false;
         this.xrTableCell10.CanShrink = true;
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskgeha")});
         this.xrTableCell10.Multiline = true;
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.Weight = 0.59940071552024365D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.CanGrow = false;
         this.xrTableCell22.CanShrink = true;
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskplace")});
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "xrTableCell22";
         this.xrTableCell22.Weight = 0.73393289755755586D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.CanGrow = false;
         this.xrTableCell20.CanShrink = true;
         this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskfatra")});
         this.xrTableCell20.Multiline = true;
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "xrTableCell20";
         this.xrTableCell20.Weight = 0.59940064932939852D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.CanGrow = false;
         this.xrTableCell16.CanShrink = true;
         this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.datetask", "{0:d/M/yyyy}")});
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "xrTableCell16";
         this.xrTableCell16.Weight = 0.59940110127529556D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.task")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.Weight = 0.4678646363175063D;
         //
         // xrTable6
         //
         this.xrTable6.BackColor = System.Drawing.Color.Gray;
         this.xrTable6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrTable6.ForeColor = System.Drawing.Color.White;
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.12501F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow13});
         this.xrTable6.SizeF = new System.Drawing.SizeF(1001F, 24.99999F);
         this.xrTable6.StylePriority.UseBackColor = false;
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseForeColor = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow13
         //
         this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell39,
         this.xrTableCell14,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell31});
         this.xrTableRow13.Name = "xrTableRow13";
         this.xrTableRow13.Weight = 1D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "جهة التكليف ";
         this.xrTableCell39.Weight = 0.59940068080473652D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.Text = "مــكــانــه";
         this.xrTableCell14.Weight = 0.73393283369957119D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.Text = "مــدتــه";
         this.xrTableCell12.Weight = 0.59940068090306564D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "تـاريــخـــه";
         this.xrTableCell13.Weight = 0.59940068090306575D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Text = "التكليف";
         this.xrTableCell31.Weight = 0.467865123689561D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 19F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 62F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.StylePriority.UseTextAlignment = false;
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.ReportHeader.HeightF = 133.3333F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow2});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1001F, 133.3333F);
         this.xrTable1.StylePriority.UseFont = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblSchool,
         this.xrTableCell2,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // lblSchool
         //
         this.lblSchool.Name = "lblSchool";
         this.lblSchool.StylePriority.UseTextAlignment = false;
         this.lblSchool.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblSchool.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dawla")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell3.Weight = 1D;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell9});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dept")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 1D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.wezara")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell9.Weight = 2D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell26});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Weight = 1D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.edara")});
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "xrTableCell26";
         this.xrTableCell26.Weight = 1D;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblDateTitle,
         this.lblTitle});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // lblDateTitle
         //
         this.lblDateTitle.Name = "lblDateTitle";
         this.lblDateTitle.StylePriority.UseTextAlignment = false;
         this.lblDateTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblDateTitle.Weight = 1.5104166666666665D;
         //
         // lblTitle
         //
         this.lblTitle.Name = "lblTitle";
         this.lblTitle.StylePriority.UseTextAlignment = false;
         this.lblTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.lblTitle.Weight = 1.4895833333333335D;
         //
         // ReportFooter
         //
         this.ReportFooter.HeightF = 32.29167F;
         this.ReportFooter.Name = "ReportFooter";
         //
         // cdtblhedeTableAdapter1
         //
         this.cdtblhedeTableAdapter1.ClearBeforeFill = true;
         //
         // xRep05TableAdapter1
         //
         this.xRep05TableAdapter1.ClearBeforeFill = true;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportHeader1,
         this.ReportFooter2});
         this.DetailReport.DataMember = "XRep07Sub1";
         this.DetailReport.DataSource = this.dsTEFollowUp1;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // Detail1
         //
         this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.Detail1.HeightF = 26F;
         this.Detail1.Name = "Detail1";
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1001F, 26F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell55,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell32,
         this.xrTableCell56,
         this.xrTableCell33,
         this.xrTableCell57,
         this.xrTableCell34,
         this.xrTableCell58,
         this.xrTableCell35,
         this.xrTableCell59,
         this.xrTableCell36,
         this.xrTableCell60,
         this.xrTableCell37,
         this.xrTableCell63,
         this.xrTableCell64,
         this.xrTableCell38});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.remarks")});
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.Text = "xrTableCell55";
         this.xrTableCell55.Weight = 0.63737150838966661D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.Text = "xrTableCell53";
         this.xrTableCell53.Weight = 0.11988022373544331D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.Text = "xrTableCell54";
         this.xrTableCell54.Weight = 0.1198802237354433D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.CanGrow = false;
         this.xrTableCell32.CanShrink = true;
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell32.Multiline = true;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.Weight = 0.11988001794755371D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.Text = "xrTableCell56";
         this.xrTableCell56.Weight = 0.11988022546941772D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.CanGrow = false;
         this.xrTableCell33.CanShrink = true;
         this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "xrTableCell33";
         this.xrTableCell33.Weight = 0.11987995108556496D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.Text = "xrTableCell57";
         this.xrTableCell57.Weight = 0.11988022101912341D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.CanGrow = false;
         this.xrTableCell34.CanShrink = true;
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell34.Multiline = true;
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Text = "xrTableCell34";
         this.xrTableCell34.Weight = 0.11988022101912341D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.Text = "xrTableCell58";
         this.xrTableCell58.Weight = 0.11988012687753238D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.CanGrow = false;
         this.xrTableCell35.CanShrink = true;
         this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell35.Multiline = true;
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Text = "xrTableCell35";
         this.xrTableCell35.Weight = 0.11988010401221144D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.Text = "xrTableCell59";
         this.xrTableCell59.Weight = 0.11988014046122275D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.CanGrow = false;
         this.xrTableCell36.CanShrink = true;
         this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell36.Multiline = true;
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Text = "xrTableCell36";
         this.xrTableCell36.Weight = 0.11988014046122286D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.Text = "xrTableCell60";
         this.xrTableCell60.Weight = 0.11988015158904958D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Text = "xrTableCell37";
         this.xrTableCell37.Weight = 0.11987999153180218D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.numberteacher")});
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 0.11988012895235384D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.schoolname")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.Weight = 0.49548313253515547D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.dateplan", "{0:dddd}")});
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseFont = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Text = "xrTableCell38";
         this.xrTableCell38.Weight = 0.18882349117811309D;
         //
         // ReportHeader1
         //
         this.ReportHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.ReportHeader1.HeightF = 184.896F;
         this.ReportHeader1.Name = "ReportHeader1";
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.LightGray;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.ForeColor = System.Drawing.Color.Black;
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow9,
         this.xrTableRow8,
         this.xrTableRow6});
         this.xrTable3.SizeF = new System.Drawing.SizeF(1001F, 184.896F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseForeColor = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 0.29100583440217981D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Weight = 0.63737132735552893D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.Text = "عــدد الأســالــيــب الإشــرافــيــة";
         this.xrTableCell50.Weight = 1.5584420329690143D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.Weight = 0.80418663967545678D;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell48,
         this.xrTableCell61,
         this.xrTableCell62});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 0.29100583440217981D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Weight = 1.3566524525928023D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseFont = false;
         this.xrTableCell61.Text = "الدورات التربوية";
         this.xrTableCell61.Weight = 0.23975992430336812D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Weight = 1.4035876231038296D;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell47,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell15,
         this.xrTableCell8,
         this.xrTableCell17,
         this.xrTableCell19,
         this.xrTableCell41,
         this.xrTableCell27,
         this.xrTableCell42,
         this.xrTableCell28,
         this.xrTableCell43,
         this.xrTableCell29,
         this.xrTableCell44,
         this.xrTableCell30,
         this.xrTableCell45,
         this.xrTableCell46});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1.2962958456194795D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.Text = "الملاحظات";
         this.xrTableCell47.Weight = 0.63737143401261465D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Angle = 270F;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.Text = "الوسائل التعليمية";
         this.xrTableCell5.Weight = 0.11988014123950042D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Angle = 270F;
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "التجارب الميدانية";
         this.xrTableCell6.Weight = 0.11988014152420051D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Angle = 270F;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.Text = "الدراسات والبحوث";
         this.xrTableCell15.Weight = 0.11988014152420055D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Angle = 270F;
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.Text = "المشاغل التربوية";
         this.xrTableCell8.Weight = 0.11988013953130711D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Angle = 270F;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.Text = "القراءات الموجهة";
         this.xrTableCell17.Weight = 0.11988013953130708D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Angle = 270F;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "النشرات التربوية";
         this.xrTableCell19.Weight = 0.11988014156613194D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Angle = 270F;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "للمعلمين";
         this.xrTableCell41.Weight = 0.11988014156613196D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Angle = 270F;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseTextAlignment = false;
         this.xrTableCell27.Text = "شخصية ";
         this.xrTableCell27.Weight = 0.11988014156613203D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Angle = 270F;
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "اللقاءات التربوية";
         this.xrTableCell42.Weight = 0.11988014156613198D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Angle = 270F;
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.Text = "الدروس التطبيقية";
         this.xrTableCell28.Weight = 0.11988014048332149D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Angle = 270F;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseTextAlignment = false;
         this.xrTableCell43.Text = "الزيارات المتبادلة";
         this.xrTableCell43.Weight = 0.11988014048332146D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Angle = 270F;
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Text = "الزيارات التقويمية";
         this.xrTableCell29.Weight = 0.11988014246005195D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Angle = 270F;
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "الزيارات الإشرافية";
         this.xrTableCell44.Weight = 0.11988014246005171D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Angle = 270F;
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Text = "عدد معلمي التخصص";
         this.xrTableCell30.Weight = 0.11988014066892956D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.Text = "الخطة المنفذة";
         this.xrTableCell45.Weight = 0.49548327755802379D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Angle = 270F;
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.Text = "الـيـوم";
         this.xrTableCell46.Weight = 0.18882331225864191D;
         //
         // ReportFooter2
         //
         this.ReportFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable5});
         this.ReportFooter2.HeightF = 79.16666F;
         this.ReportFooter2.Name = "ReportFooter2";
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 19.16666F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1001F, 60F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell21,
         this.xrTableCell25,
         this.xrTableCell40,
         this.xrTableCell66,
         this.xrTableCell67,
         this.xrTableCell68,
         this.xrTableCell69,
         this.xrTableCell70,
         this.xrTableCell71,
         this.xrTableCell72,
         this.xrTableCell73,
         this.xrTableCell74,
         this.xrTableCell75,
         this.xrTableCell76,
         this.xrTableCell78});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Weight = 0.63737150838966661D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell25.Name = "xrTableCell25";
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell25.Summary = xrSummary1;
         this.xrTableCell25.Text = "xrTableCell25";
         this.xrTableCell25.Weight = 0.11988022373544331D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell40.Name = "xrTableCell40";
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell40.Summary = xrSummary2;
         this.xrTableCell40.Text = "xrTableCell40";
         this.xrTableCell40.Weight = 0.1198802237354433D;
         //
         // xrTableCell66
         //
         this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell66.Multiline = true;
         this.xrTableCell66.Name = "xrTableCell66";
         this.xrTableCell66.StylePriority.UseTextAlignment = false;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell66.Summary = xrSummary3;
         this.xrTableCell66.Text = "xrTableCell66";
         this.xrTableCell66.Weight = 0.11988001794755371D;
         //
         // xrTableCell67
         //
         this.xrTableCell67.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell67.Name = "xrTableCell67";
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell67.Summary = xrSummary4;
         this.xrTableCell67.Text = "xrTableCell67";
         this.xrTableCell67.Weight = 0.11988022546941772D;
         //
         // xrTableCell68
         //
         this.xrTableCell68.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell68.Multiline = true;
         this.xrTableCell68.Name = "xrTableCell68";
         this.xrTableCell68.StylePriority.UseTextAlignment = false;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell68.Summary = xrSummary5;
         this.xrTableCell68.Text = "xrTableCell68";
         this.xrTableCell68.Weight = 0.11987995108556496D;
         //
         // xrTableCell69
         //
         this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell69.Name = "xrTableCell69";
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell69.Summary = xrSummary6;
         this.xrTableCell69.Text = "xrTableCell69";
         this.xrTableCell69.Weight = 0.11988022101912341D;
         //
         // xrTableCell70
         //
         this.xrTableCell70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell70.Multiline = true;
         this.xrTableCell70.Name = "xrTableCell70";
         this.xrTableCell70.StylePriority.UseTextAlignment = false;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell70.Summary = xrSummary7;
         this.xrTableCell70.Text = "xrTableCell70";
         this.xrTableCell70.Weight = 0.11988022101912341D;
         //
         // xrTableCell71
         //
         this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell71.Name = "xrTableCell71";
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell71.Summary = xrSummary8;
         this.xrTableCell71.Text = "xrTableCell71";
         this.xrTableCell71.Weight = 0.11988012687753238D;
         //
         // xrTableCell72
         //
         this.xrTableCell72.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell72.Multiline = true;
         this.xrTableCell72.Name = "xrTableCell72";
         this.xrTableCell72.StylePriority.UseTextAlignment = false;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell72.Summary = xrSummary9;
         this.xrTableCell72.Text = "xrTableCell72";
         this.xrTableCell72.Weight = 0.11988010401221144D;
         //
         // xrTableCell73
         //
         this.xrTableCell73.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell73.Name = "xrTableCell73";
         xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell73.Summary = xrSummary10;
         this.xrTableCell73.Text = "xrTableCell73";
         this.xrTableCell73.Weight = 0.11988014046122275D;
         //
         // xrTableCell74
         //
         this.xrTableCell74.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell74.Multiline = true;
         this.xrTableCell74.Name = "xrTableCell74";
         this.xrTableCell74.StylePriority.UseTextAlignment = false;
         xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell74.Summary = xrSummary11;
         this.xrTableCell74.Text = "xrTableCell74";
         this.xrTableCell74.Weight = 0.11988014046122286D;
         //
         // xrTableCell75
         //
         this.xrTableCell75.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell75.Name = "xrTableCell75";
         xrSummary12.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell75.Summary = xrSummary12;
         this.xrTableCell75.Text = "xrTableCell75";
         this.xrTableCell75.Weight = 0.11988015158904958D;
         //
         // xrTableCell76
         //
         this.xrTableCell76.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell76.Name = "xrTableCell76";
         this.xrTableCell76.StylePriority.UseTextAlignment = false;
         xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell76.Summary = xrSummary13;
         this.xrTableCell76.Text = "xrTableCell76";
         this.xrTableCell76.Weight = 0.11987999153180218D;
         //
         // xrTableCell78
         //
         this.xrTableCell78.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell78.Name = "xrTableCell78";
         this.xrTableCell78.StylePriority.UseBackColor = false;
         this.xrTableCell78.Text = "مجموع الأساليب المنفذة";
         this.xrTableCell78.Weight = 0.80418675266562234D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrTableCell77,
         this.xrTableCell79,
         this.xrTableCell80,
         this.xrTableCell81,
         this.xrTableCell82,
         this.xrTableCell83,
         this.xrTableCell84,
         this.xrTableCell85,
         this.xrTableCell86,
         this.xrTableCell87,
         this.xrTableCell88,
         this.xrTableCell89,
         this.xrTableCell90,
         this.xrTableCell91});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Weight = 0.63737150838966661D;
         //
         // xrTableCell77
         //
         this.xrTableCell77.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_wasaeel")});
         this.xrTableCell77.Name = "xrTableCell77";
         xrSummary14.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell77.Summary = xrSummary14;
         this.xrTableCell77.Text = "xrTableCell77";
         this.xrTableCell77.Weight = 0.11988022373544331D;
         //
         // xrTableCell79
         //
         this.xrTableCell79.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_tagareb")});
         this.xrTableCell79.Name = "xrTableCell79";
         xrSummary15.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell79.Summary = xrSummary15;
         this.xrTableCell79.Text = "xrTableCell79";
         this.xrTableCell79.Weight = 0.1198802237354433D;
         //
         // xrTableCell80
         //
         this.xrTableCell80.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_drasat")});
         this.xrTableCell80.Name = "xrTableCell80";
         xrSummary16.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell80.Summary = xrSummary16;
         this.xrTableCell80.Text = "xrTableCell80";
         this.xrTableCell80.Weight = 0.11988001794755371D;
         //
         // xrTableCell81
         //
         this.xrTableCell81.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_mashael")});
         this.xrTableCell81.Name = "xrTableCell81";
         xrSummary17.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell81.Summary = xrSummary17;
         this.xrTableCell81.Text = "xrTableCell81";
         this.xrTableCell81.Weight = 0.11988022546941772D;
         //
         // xrTableCell82
         //
         this.xrTableCell82.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_reads")});
         this.xrTableCell82.Name = "xrTableCell82";
         xrSummary18.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell82.Summary = xrSummary18;
         this.xrTableCell82.Text = "xrTableCell82";
         this.xrTableCell82.Weight = 0.11987995108556496D;
         //
         // xrTableCell83
         //
         this.xrTableCell83.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_nashraat")});
         this.xrTableCell83.Name = "xrTableCell83";
         xrSummary19.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell83.Summary = xrSummary19;
         this.xrTableCell83.Text = "xrTableCell83";
         this.xrTableCell83.Weight = 0.11988022101912341D;
         //
         // xrTableCell84
         //
         this.xrTableCell84.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainteacher")});
         this.xrTableCell84.Name = "xrTableCell84";
         xrSummary20.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell84.Summary = xrSummary20;
         this.xrTableCell84.Text = "xrTableCell84";
         this.xrTableCell84.Weight = 0.11988022101912341D;
         //
         // xrTableCell85
         //
         this.xrTableCell85.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainperson")});
         this.xrTableCell85.Name = "xrTableCell85";
         xrSummary21.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell85.Summary = xrSummary21;
         this.xrTableCell85.Text = "xrTableCell85";
         this.xrTableCell85.Weight = 0.11988012687753238D;
         //
         // xrTableCell86
         //
         this.xrTableCell86.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trbowy")});
         this.xrTableCell86.Name = "xrTableCell86";
         xrSummary22.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell86.Summary = xrSummary22;
         this.xrTableCell86.Text = "xrTableCell86";
         this.xrTableCell86.Weight = 0.11988010401221144D;
         //
         // xrTableCell87
         //
         this.xrTableCell87.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_droos")});
         this.xrTableCell87.Name = "xrTableCell87";
         xrSummary23.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell87.Summary = xrSummary23;
         this.xrTableCell87.Text = "xrTableCell87";
         this.xrTableCell87.Weight = 0.11988014046122275D;
         //
         // xrTableCell88
         //
         this.xrTableCell88.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_motabadla")});
         this.xrTableCell88.Name = "xrTableCell88";
         xrSummary24.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell88.Summary = xrSummary24;
         this.xrTableCell88.Text = "xrTableCell88";
         this.xrTableCell88.Weight = 0.11988014046122286D;
         //
         // xrTableCell89
         //
         this.xrTableCell89.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_takweem")});
         this.xrTableCell89.Name = "xrTableCell89";
         xrSummary25.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell89.Summary = xrSummary25;
         this.xrTableCell89.Text = "xrTableCell89";
         this.xrTableCell89.Weight = 0.11988015158904958D;
         //
         // xrTableCell90
         //
         this.xrTableCell90.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_zearat")});
         this.xrTableCell90.Name = "xrTableCell90";
         xrSummary26.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell90.Summary = xrSummary26;
         this.xrTableCell90.Text = "xrTableCell90";
         this.xrTableCell90.Weight = 0.11987999153180218D;
         //
         // xrTableCell91
         //
         this.xrTableCell91.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell91.Name = "xrTableCell91";
         this.xrTableCell91.StylePriority.UseBackColor = false;
         this.xrTableCell91.Text = "عدد المستفيدين";
         this.xrTableCell91.Weight = 0.80418675266562234D;
         //
         // DetailReport1
         //
         this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.ReportHeader2,
         this.ReportFooter1});
         this.DetailReport1.DataMember = "XRep07Sub2";
         this.DetailReport1.DataSource = this.dsTEFollowUp1;
         this.DetailReport1.Level = 1;
         this.DetailReport1.Name = "DetailReport1";
         //
         // Detail2
         //
         this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail2.HeightF = 25F;
         this.Detail2.Name = "Detail2";
         //
         // ReportHeader2
         //
         this.ReportHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel1});
         this.ReportHeader2.HeightF = 53.125F;
         this.ReportHeader2.Name = "ReportHeader2";
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(372.6697F, 5.125014F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "مهام مكلف بها المشرف التربوي خلال الأسبوع";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // ReportFooter1
         //
         this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel3});
         this.ReportFooter1.HeightF = 52.08333F;
         this.ReportFooter1.Name = "ReportFooter1";
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(119.7917F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.Text = "التوقيع";
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(738.7807F, 10.00001F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "المشرف التربوي";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xRep07Sub1TableAdapter1
         //
         this.xRep07Sub1TableAdapter1.ClearBeforeFill = true;
         //
         // xRep07Sub2TableAdapter1
         //
         this.xRep07Sub2TableAdapter1.ClearBeforeFill = true;
         //
         // XtraReport07
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.DetailReport,
         this.DetailReport1});
         this.DataMember = "XRep05";
         this.DataSource = this.dsTEFollowUp1;
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 49, 19, 62);
         this.PageHeight = 850;
         this.PageWidth = 1100;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.Version = "12.2";
         this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReport01_DataSourceDemanded);
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }