Exemplo n.º 1
0
 private void InitializeComponent()
 {
     topMarginBand1    = new TopMarginBand();
     detailBand1       = new DetailBand();
     bottomMarginBand1 = new BottomMarginBand();
     xrLabel1          = new XRLabel();
     ((ISupportInitialize)this).BeginInit();
     topMarginBand1.Name = "topMarginBand1";
     detailBand1.Controls.AddRange(new XRControl[]
     {
         xrLabel1
     });
     detailBand1.Name       = "detailBand1";
     bottomMarginBand1.Name = "bottomMarginBand1";
     xrLabel1.LocationFloat = new PointFloat(36.45833F, 22.91667F);
     xrLabel1.Name          = "xrLabel1";
     xrLabel1.Padding       = new PaddingInfo(2, 2, 0, 0, 96F);
     xrLabel1.SizeF         = new SizeF(354.1667F, 56.25F);
     xrLabel1.Text          = "xrLabel1";
     Bands.AddRange(new Band[]
     {
         topMarginBand1,
         detailBand1,
         bottomMarginBand1
     });
     Version = "14.1";
     ((ISupportInitialize)this).EndInit();
 }
Exemplo n.º 2
0
 private void InitializeComponent()
 {
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XROLES_Rpt007_Rpt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1
     });
     this.Version = "12.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 3
0
        public void AddMarginBands()
        {
            // Check if the TopMargin band already presents in the report.
            if (Bands.GetBandByType(typeof(TopMarginBand)) == null)
            {
                // Create a new TopMargin band and add it to the report.
                TopMarginBand tmBand = new TopMarginBand();
                Bands.Add(tmBand);

                // Create a label and set its text and width.
                XRLabel label = new XRLabel();
                label.Text  = "TopMargin Band";
                label.Width = 200;

                // Add the label to the TopMargin band.
                tmBand.Controls.Add(label);
            }

            // Check if the BottomMargin band already presents in the report.
            if (Bands.GetBandByType(typeof(BottomMarginBand)) == null)
            {
                // Create a new BottomMargin band and add it to the report.
                BottomMarginBand bmBand = new BottomMarginBand();
                Bands.Add(bmBand);

                // Create an XRPageInfo object and set its width and PageInfo option.
                XRPageInfo datePageInfo = new XRPageInfo();
                datePageInfo.Width    = 200;
                datePageInfo.PageInfo = PageInfo.DateTime;

                // Add the page information control to the BottomMargin band.
                bmBand.Controls.Add(datePageInfo);
            }
        }
Exemplo n.º 4
0
        private void ReadBottomMarginBand(XtraReportBase xtraReport, BottomMarginBand xtraBand, StiPage page)
        {
            StiPageFooterBand band = new StiPageFooterBand();

            page.Components.Add(band);

            ReadBand(xtraBand, band);

            page.Margins.Bottom = page.Margins.Bottom - report.Unit.ConvertToHInches(band.Height);
        }
Exemplo n.º 5
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.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.MultiColumn.ColumnCount = 4;
     this.Detail.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail.Name = "Detail";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.ReportHeader.Name = "ReportHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(220.8333F, 10.00001F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(216.6667F, 23F);
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Test By N3n3";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // DXTestReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.ReportHeader
     });
     this.Font    = new System.Drawing.Font("Arial", 9.75F);
     this.Version = "19.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 6
0
 public void InitializeComponent()
 {
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Logo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.Logo,
         this.xrPictureBox1
     });
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.HeightF = 100F;
     this.detailBand1.Name    = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // Logo
     //
     this.Logo.LocationFloat = new DevExpress.Utils.PointFloat(29.86111F, 42.66667F);
     this.Logo.Name          = "Logo";
     this.Logo.SizeF         = new System.Drawing.SizeF(100F, 23F);
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(234.7222F, 32.25F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     //
     // ParentReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public static BottomMarginBand AddBottomMarginBand(this XtraReport report)
        {
            var result = report.GetBandByType <BottomMarginBand>();

            if (result == null)
            {
                result = new BottomMarginBand
                {
                    HeightF = report.Margins.Bottom
                };
                report.Bands.Add(result);
            }
            return(result);
        }
 private void InitializeComponent()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.lbText       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbText
     });
     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.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;
     //
     // lbText
     //
     this.lbText.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
     this.lbText.Name                           = "lbText";
     this.lbText.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbText.SizeF                          = new System.Drawing.SizeF(630F, 79.99999F);
     this.lbText.StylePriority.UseFont          = false;
     this.lbText.StylePriority.UseTextAlignment = false;
     this.lbText.Text                           = "Hello World";
     this.lbText.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // SampleReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.Version = "18.2";
     ((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()
 {
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.BeforePrint += XtraReport2_BeforePrint;
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.Detail.Name = "Detail";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(33.33333F, 10.00001F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // XtraReport2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.Font    = new System.Drawing.Font("Arial", 9.75F);
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 10
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.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Name = "Detail";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Name = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // Pharmacy_Purchase_Return
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.Font    = new System.Drawing.Font("Arial", 9.75F);
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        private static MyReportBase CreateReport(string reportName)
        {
            var report = new MyReportBase();

            report.Name = reportName;
            report.DisplayName = reportName;

            var Detail = new DetailBand();
            var TopMargin = new TopMarginBand();
            var BottomMargin = new BottomMarginBand();

            report.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                Detail,
                TopMargin,
                BottomMargin
            });

            return report;
        }
        private static MyReportBase CreateReport(string reportName)
        {
            var report = new MyReportBase();

            report.Name        = reportName;
            report.DisplayName = reportName;

            var Detail       = new DetailBand();
            var TopMargin    = new TopMarginBand();
            var BottomMargin = new BottomMarginBand();

            report.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                Detail,
                TopMargin,
                BottomMargin
            });

            return(report);
        }
 private void InitializeComponent()
 {
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new Q305659.MyLabel();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.detailBand1.Name = "detailBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(205.2083F, 10.00001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(144.7916F, 52.16667F);
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1
     });
     this.Version = "10.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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.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();
 }
Exemplo n.º 15
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.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.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHangHetHan));
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12    = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(825F, 48.95833F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell5,
         this.xrTableCell12
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell8.Summary       = xrSummary1;
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.75763685535931025D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TenMatHang")
     });
     this.xrTableCell6.Dpi  = 100F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "xrTableCell6";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 2.2934490375138443D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrTableCell9.Dpi  = 100F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.80335648845172447D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi  = 100F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "text";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.2194772748674545D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien", "{0:#,#}")
     });
     this.xrTableCell5.Dpi  = 100F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.4788878045182563D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().hsd")
     });
     this.xrTableCell12.Dpi  = 100F;
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 1.5562916415485952D;
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell2,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi  = 100F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "STT";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 0.94754186476410629D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 100F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Tên mặt hàng";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 2.8683133636581744D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 100F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "SL";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.0047211441528232D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi       = 100F;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Giá";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.5251447991699609D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Thành tiền ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.8495776226644305D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 100F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "HSD";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.9463830854592059D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 11.54162F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 48.95833F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.Expanded    = false;
     this.PageFooter.HeightF     = 100F;
     this.PageFooter.Name        = "PageFooter";
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 34.45834F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth   = 0F;
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.Font          = new System.Drawing.Font("Sitka Text", 34F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(160)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(804.9999F, 60.20834F);
     this.xrLabel1.StyleName     = "TableStyle";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Báo Cáo Hàng Hết Hạn Sử Dụng";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     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(825F, 55.62499F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 94.79166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF               = 55.62499F;
     this.GroupHeader1.Name                  = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage       = true;
     this.GroupHeader1.StylePriority.UseFont = false;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 115.0416F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(825F, 23F);
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien")
     });
     this.xrLabel3.Dpi                        = 100F;
     this.xrLabel3.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel3.LocationFloat              = new DevExpress.Utils.PointFloat(119.8967F, 58.49997F);
     this.xrLabel3.Name                       = "xrLabel3";
     this.xrLabel3.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                      = new System.Drawing.SizeF(546.77F, 30.29169F);
     this.xrLabel3.StylePriority.UseFont      = false;
     this.xrLabel3.StylePriority.UseForeColor = false;
     xrSummary2.FormatString                  = "{0:#,#} VNĐ";
     xrSummary2.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary                    = xrSummary2;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrLabel2.Dpi                        = 100F;
     this.xrLabel2.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel2.LocationFloat              = new DevExpress.Utils.PointFloat(160.5217F, 22.99999F);
     this.xrLabel2.Name                       = "xrLabel2";
     this.xrLabel2.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                      = new System.Drawing.SizeF(506.145F, 35.49998F);
     this.xrLabel2.StylePriority.UseFont      = false;
     this.xrLabel2.StylePriority.UseForeColor = false;
     xrSummary3.FormatString                  = "{0:#,#}";
     xrSummary3.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel2.Summary                    = xrSummary3;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHangHetHan()";
     storedProcQuery1.StoredProcName = "GetHangHetHan";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                        = 100F;
     this.xrLabel4.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel4.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 22.99999F);
     this.xrLabel4.Name                       = "xrLabel4";
     this.xrLabel4.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                      = new System.Drawing.SizeF(150.5217F, 35.49998F);
     this.xrLabel4.StylePriority.UseFont      = false;
     this.xrLabel4.StylePriority.UseForeColor = false;
     this.xrLabel4.Text                       = "Tổng số lượng:";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi                        = 100F;
     this.xrLabel5.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel5.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 58.49997F);
     this.xrLabel5.Name                       = "xrLabel5";
     this.xrLabel5.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                      = new System.Drawing.SizeF(109.8967F, 30.29168F);
     this.xrLabel5.StylePriority.UseFont      = false;
     this.xrLabel5.StylePriority.UseForeColor = false;
     this.xrLabel5.Text                       = "Tổng tiền:";
     //
     // BCHangHetHan
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter,
         this.GroupFooter1
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "GetHangHetHan()";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(10, 15, 34, 12);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 16
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(rptInvitationReturn));
     DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1 = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
     this.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader    = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2       = new DevExpress.XtraReports.UI.XRLine();
     this.efDataSource1 = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 20F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel7,
         this.xrLine1,
         this.xrLabel6,
         this.xrLabel5,
         this.xrPanel1
     });
     this.Detail.HeightF = 885F;
     this.Detail.Name    = "Detail";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Complaint].[ResidentRespondents].[FullName]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(289.5833F, 247.6667F);
     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(347.9167F, 23F);
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLine1
     //
     this.xrLine1.ForeColor     = System.Drawing.Color.Black;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(301.0416F, 120.9167F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(300F, 2F);
     this.xrLine1.StylePriority.UseForeColor = false;
     //
     // xrLabel6
     //
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(196.875F, 203.125F);
     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(543.125F, 22.99998F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "OFFICERS RETURN";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[LetterContent]")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(196.875F, 40.00003F);
     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(543.125F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrPanel1
     //
     this.xrPanel1.BorderColor = System.Drawing.Color.OrangeRed;
     this.xrPanel1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(171.875F, 873.9583F);
     this.xrPanel1.StylePriority.UseBorderColor = false;
     this.xrPanel1.StylePriority.UseBorders     = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.Font                           = new System.Drawing.Font("Arial Narrow", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(5.000003F, 30.00002F);
     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(155F, 829.7916F);
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = resources.GetString("xrLabel2.Text");
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.LocationFloat            = new DevExpress.Utils.PointFloat(5F, 5F);
     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(60F, 16F);
     this.xrLabel1.StylePriority.UseBorders = false;
     this.xrLabel1.Text                     = "VISION";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrPictureBox4,
         this.xrPictureBox3,
         this.xrLabel3,
         this.xrLine2
     });
     this.PageHeader.Name = "PageHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(251.25F, 75.00002F);
     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(260F, 23F);
     this.xrLabel4.Text          = " OFFICE OF THE PUNONG BARANGAY\r\n";
     //
     // xrPictureBox4
     //
     this.xrPictureBox4.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox4.ImageSource"));
     this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(538.75F, 0F);
     this.xrPictureBox4.Name          = "xrPictureBox4";
     this.xrPictureBox4.SizeF         = new System.Drawing.SizeF(80F, 90F);
     this.xrPictureBox4.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(126.25F, 0F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(80F, 90F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(263.75F, 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(230F, 70F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "REPUBLIC OF THE PHILIPPINES\r\nProvince of Nueva Vizcaya\r\nMunicipality of Quezon\r\nB" +
                                                    "ARANGAY RUNRUNO\r\n3713";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine2
     //
     this.xrLine2.ForeColor     = System.Drawing.Color.OrangeRed;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(50F, 98F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(650F, 2F);
     this.xrLine2.StylePriority.UseForeColor = false;
     //
     // efDataSource1
     //
     efConnectionParameters1.ConnectionString     = "";
     efConnectionParameters1.ConnectionStringName = "BrgyMgmtEntities";
     efConnectionParameters1.Source          = typeof(BrgyMgmt.Web.Models.BrgyMgmtEntities);
     this.efDataSource1.ConnectionParameters = efConnectionParameters1;
     this.efDataSource1.Name = "efDataSource1";
     //
     // rptInvitationReturn
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.efDataSource1
     });
     this.DataMember = "Settlements";
     this.DataSource = this.efDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(50, 50, 20, 20);
     this.Version    = "20.1";
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 17
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.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();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BorrowedDocs));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
     this.DeliveryDateExceeded = new DevExpress.XtraReports.UI.FormattingRule();
     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.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell15        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
     this.companyLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReceivedPercent  = new DevExpress.XtraReports.UI.CalculatedField();
     this.CompanyId        = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture          = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDocIds    = new DevExpress.XtraReports.Parameters.Parameter();
     this.DocsIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName       = new DevExpress.XtraReports.Parameters.Parameter();
     this.AssignEndDate    = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.ConEmpStartDate  = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "SP_BorrowedDocs";
     queryParameter1.Name  = "@Culture";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name  = "@LoginCompanyId";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name  = "@Doc";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingDocIds]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "SP_BorrowedDocs";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 63.5F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Silver;
     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.Dpi           = 254F;
     this.xrTable2.EvenStyleName = "tbl_odd_detail";
     this.xrTable2.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "tbl_even_detail";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders     = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont        = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Site")
     });
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell4.Weight        = 0.11056524965261336D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Purpose")
     });
     this.xrTableCell1.Dpi  = 254F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell1.Weight        = 0.14548798205074123D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.ExpdelvryDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi = 254F;
     this.xrTableCell7.FormattingRules.Add(this.DeliveryDateExceeded);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.10827628442976688D;
     //
     // DeliveryDateExceeded
     //
     this.DeliveryDateExceeded.Condition              = "[ExpdelvryDate]<LocalDateTimeToday()";
     this.DeliveryDateExceeded.DataMember             = "SP_BorrowedDocs";
     this.DeliveryDateExceeded.Formatting.BorderWidth = 1F;
     this.DeliveryDateExceeded.Formatting.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.DeliveryDateExceeded.Formatting.Visible     = DevExpress.Utils.DefaultBoolean.True;
     this.DeliveryDateExceeded.Name = "DeliveryDateExceeded";
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.RecvDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell8.Dpi  = 254F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.10964101182186527D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DocName")
     });
     this.xrTableCell9.Dpi  = 254F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.16753169367895224D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.JobName")
     });
     this.xrTableCell10.Dpi  = 254F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15556520642517518D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.EmpName")
     });
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.18201755971242239D;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.Dpi       = 254F;
     this.PageHeader.HeightF   = 63.5F;
     this.PageHeader.Name      = "PageHeader";
     this.PageHeader.StyleName = "tbl_header_style";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.xrTableCell14,
         this.xrTableCell13,
         this.xrTableCell6,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Dpi    = 254F;
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "الجهة";
     this.xrTableCell15.Weight = 1.2191038081965198D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Dpi    = 254F;
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "الغرض للإعارة";
     this.xrTableCell14.Weight = 1.6041660107525171D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Dpi    = 254F;
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "التاريخ المتوقع للارتجاع";
     this.xrTableCell13.Weight = 1.1938659267354235D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Dpi    = 254F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "تاريخ الاستلام";
     this.xrTableCell6.Weight = 1.2089125351471246D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 254F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "المستندات المعارة";
     this.xrTableCell5.Weight = 1.8472222615835232D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi    = 254F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "الوظيفة";
     this.xrTableCell2.Weight = 1.7152782049704727D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 254F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "اسم الموظف";
     this.xrTableCell3.Weight = 2.0069445512426181D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.companyLogo,
         this.xrLabel11
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 218.1666F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(883.6393F, 40.98377F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1117.212F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "تقرير المستندات المُعارة للموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // companyLogo
     //
     this.companyLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(3.000032F, 1.986098F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel11.Dpi                            = 254F;
     this.xrLabel11.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(2029.93F, 0F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(934.0693F, 105.7759F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 71.95106F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(707.6166F, 13.53106F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2709F, 13.53104F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.999978F, 10.74665F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(961.6166F, 13.53106F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // 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";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // ReceivedPercent
     //
     this.ReceivedPercent.DataMember = "SP_EmployeeDocumentsReport";
     this.ReceivedPercent.Expression = "(100*[ReceivedPaperCount])/([MissingPaperCount]+[ReceivedPaperCount])";
     this.ReceivedPercent.Name       = "ReceivedPercent";
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "ar-EG";
     this.Culture.Visible     = false;
     //
     // MappingDocIds
     //
     this.MappingDocIds.Description = "MappingDocIds";
     this.MappingDocIds.Name        = "MappingDocIds";
     this.MappingDocIds.Visible     = false;
     //
     // DocsIds
     //
     this.DocsIds.Description = "اسم المستند";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_BorrowedDocs";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "DocName";
     dynamicListLookUpSettings1.ValueMember   = "DocID";
     this.DocsIds.LookUpSettings = dynamicListLookUpSettings1;
     this.DocsIds.MultiValue     = true;
     this.DocsIds.Name           = "DocsIds";
     this.DocsIds.Type           = typeof(int);
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "BorrowedDocs";
     this.ReportName.Visible     = false;
     //
     // AssignEndDate
     //
     this.AssignEndDate.Description = "إلي";
     this.AssignEndDate.Name        = "AssignEndDate";
     this.AssignEndDate.Type        = typeof(System.DateTime);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("DeptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 95.25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DeptName")
     });
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2341F, 24.99998F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(509.7639F, 63.19446F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // ConEmpStartDate
     //
     this.ConEmpStartDate.Description = "تاريخ الاستلام من";
     this.ConEmpStartDate.Name        = "ConEmpStartDate";
     this.ConEmpStartDate.Type        = typeof(System.DateTime);
     //
     // BorrowedDocs
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.ReceivedPercent
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "SP_BorrowedDocs";
     this.DataSource   = this.sqlDataSource1;
     this.Dpi          = 254F;
     this.FilterString = "[RecvDate] Between(?ConEmpStartDate, ?AssignEndDate)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.DeliveryDateExceeded,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(3, 3, 0, 0);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.Culture,
         this.DocsIds,
         this.ConEmpStartDate,
         this.MappingDocIds,
         this.ReportName,
         this.AssignEndDate
     });
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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();
     DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1 = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
     this.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel20     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17     = 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.xrLabel11     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9      = 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.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.Total         = new DevExpress.XtraReports.UI.CalculatedField();
     this.efDataSource1 = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
     this.FullAddress   = new DevExpress.XtraReports.UI.CalculatedField();
     this.xrLabel21     = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19,
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.Font    = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Detail.HeightF = 386.4583F;
     this.Detail.Name    = "Detail";
     this.Detail.StylePriority.UseFont = false;
     //
     // xrLabel20
     //
     this.xrLabel20.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Interest]")
     });
     this.xrLabel20.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 301.9999F);
     this.xrLabel20.Multiline                      = true;
     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                           = "xrLabel20";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(59.99999F, 34.99999F);
     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(190F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "RUNRUNO, QUEZON, NV";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel19.TextFormatString               = "{0:d}";
     //
     // xrLabel18
     //
     this.xrLabel18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AmountPaid]")
     });
     this.xrLabel18.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 324.9999F);
     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(100F, 23F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "xrLabel18";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Total]")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 279F);
     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(100F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "xrLabel17";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PropertyEarningsTax]")
     });
     this.xrLabel16.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 256F);
     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(100F, 23F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "xrLabel16";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ProfessionalEarningsTax]")
     });
     this.xrLabel15.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 233F);
     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.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "xrLabel15";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BusinessEarningsTax]")
     });
     this.xrLabel14.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 210F);
     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.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "xrLabel14";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BasicCommunityTax]")
     });
     this.xrLabel13.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 170F);
     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(100F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "xrLabel13";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Resident].[Occupation]")
     });
     this.xrLabel12.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(11.04167F, 150F);
     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(100F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "xrLabel12";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Resident].[BirthDate]")
     });
     this.xrLabel11.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(370F, 130F);
     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                           = "xrLabel11";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel11.TextFormatString               = "{0:d}";
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Weight]")
     });
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 130F);
     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                           = "xrLabel10";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Height]")
     });
     this.xrLabel9.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(490F, 105F);
     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(100F, 23F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "xrLabel9";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Resident].[MiddleName]")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(271.0416F, 57.99999F);
     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(130F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "xrLabel5";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Resident].[FirstName]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(141.0417F, 57.99999F);
     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(130F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel4";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Resident].[LastName]")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(11.04167F, 57.99999F);
     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(130F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabel3";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateIssued]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(250F, 34.99999F);
     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                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel2.TextFormatString               = "{0:d}";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Year]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 35F);
     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(50F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "xrLabel1";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Total
     //
     this.Total.Expression = "[BasicCommunityTax]+[BusinessEarningsTax]+[ProfessionalEarningsTax]+[PropertyEarn" +
                             "ingsTax]";
     this.Total.Name = "Total";
     //
     // efDataSource1
     //
     efConnectionParameters1.ConnectionString     = "";
     efConnectionParameters1.ConnectionStringName = "MainConnection";
     efConnectionParameters1.Source          = typeof(BrgyMgmt.Web.Models.BrgyMgmtEntities);
     this.efDataSource1.ConnectionParameters = efConnectionParameters1;
     this.efDataSource1.Name = "efDataSource1";
     //
     // FullAddress
     //
     this.FullAddress.DataMember = "CertificateCommunities";
     this.FullAddress.Expression = "Concat([Resident].[Household].[BuildingNumber], [Resident].[Household].[StreetNam" +
                                   "e], [Resident].[Household].[Sitio])";
     this.FullAddress.Name = "FullAddress";
     //
     // xrLabel21
     //
     this.xrLabel21.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullAddress]")
     });
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(11.04167F, 80.99999F);
     this.xrLabel21.Multiline     = true;
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(298.9583F, 23F);
     this.xrLabel21.Text          = "xrLabel21";
     //
     // rptCommunityTax
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.Total,
         this.FullAddress
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.efDataSource1
     });
     this.DataMember = "CertificateCommunities";
     this.DataSource = this.efDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(20, 100, 20, 100);
     this.Version    = "19.2";
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.StartDate    = new DevExpress.XtraReports.Parameters.Parameter();
     this.EndDate      = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.Name = "Detail";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 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(217.7083F, 23F);
     this.xrLabel1.Text          = "Test Report. Specified Range:";
     //
     // StartDate
     //
     this.StartDate.Description = "Start Date";
     this.StartDate.Name        = "StartDate";
     this.StartDate.Type        = typeof(System.DateTime);
     this.StartDate.ValueInfo   = "2019-01-01";
     //
     // EndDate
     //
     this.EndDate.Description = "End Date";
     this.EndDate.Name        = "EndDate";
     this.EndDate.Type        = typeof(System.DateTime);
     this.EndDate.ValueInfo   = "2019-02-01";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?StartDate")
     });
     this.xrLabel2.LocationFloat    = new DevExpress.Utils.PointFloat(241.6667F, 10.00001F);
     this.xrLabel2.Multiline        = true;
     this.xrLabel2.Name             = "xrLabel2";
     this.xrLabel2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF            = new System.Drawing.SizeF(118.75F, 23F);
     this.xrLabel2.Text             = "xrLabel2";
     this.xrLabel2.TextFormatString = "{0:d}";
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?EndDate")
     });
     this.xrLabel3.LocationFloat    = new DevExpress.Utils.PointFloat(390.625F, 10.00001F);
     this.xrLabel3.Multiline        = true;
     this.xrLabel3.Name             = "xrLabel3";
     this.xrLabel3.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel3.SizeF            = new System.Drawing.SizeF(122.9167F, 23F);
     this.xrLabel3.Text             = "xrLabel3";
     this.xrLabel3.TextFormatString = "{0:d}";
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.Font = new System.Drawing.Font("Arial", 9.75F);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.StartDate,
         this.EndDate
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 20
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 = "rp_BusinessAward.resx";

        this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellContent       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellAwardDate     = 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.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.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleReport     = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.lblHRDepartment     = new DevExpress.XtraReports.UI.XRLabel();
        this.lblCreator          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1         = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellWorkingDate   = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | 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(1146F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrCellIndex,
            this.xrCellEmployeeCode,
            this.xrCellFullName,
            this.xrCellPosition,
            this.xrCellDepartment,
            this.xrCellWorkingDate,
            this.xrCellContent,
            this.xrCellAwardDate
        });
        this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow2.Name    = "xrTableRow2";
        this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UsePadding       = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrCellIndex
        //
        this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellIndex.Name    = "xrCellIndex";
        this.xrCellIndex.StylePriority.UseBorders       = false;
        this.xrCellIndex.StylePriority.UseFont          = false;
        this.xrCellIndex.StylePriority.UseTextAlignment = false;
        this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellIndex.Weight        = 0.11506288983747758D;
        this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrCellEmployeeCode
        //
        this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
        this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
        this.xrCellEmployeeCode.StylePriority.UseFont          = false;
        this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
        this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellEmployeeCode.Weight        = 0.22434974057846391D;
        //
        // xrCellFullName
        //
        this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellFullName.Name    = "xrCellFullName";
        this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellFullName.StylePriority.UseBorders       = false;
        this.xrCellFullName.StylePriority.UseFont          = false;
        this.xrCellFullName.StylePriority.UsePadding       = false;
        this.xrCellFullName.StylePriority.UseTextAlignment = false;
        this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellFullName.Weight        = 0.608546886004498D;
        //
        // xrCellPosition
        //
        this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellPosition.Name    = "xrCellPosition";
        this.xrCellPosition.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellPosition.StylePriority.UseBorders       = false;
        this.xrCellPosition.StylePriority.UseFont          = false;
        this.xrCellPosition.StylePriority.UsePadding       = false;
        this.xrCellPosition.StylePriority.UseTextAlignment = false;
        this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellPosition.Weight        = 0.36544811571709757D;
        //
        // xrCellDepartment
        //
        this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellDepartment.Name    = "xrCellDepartment";
        this.xrCellDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellDepartment.StylePriority.UseBorders       = false;
        this.xrCellDepartment.StylePriority.UseFont          = false;
        this.xrCellDepartment.StylePriority.UsePadding       = false;
        this.xrCellDepartment.StylePriority.UseTextAlignment = false;
        this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellDepartment.Weight        = 0.49783371921577657D;
        //
        // xrCellContent
        //
        this.xrCellContent.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellContent.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellContent.Name    = "xrCellContent";
        this.xrCellContent.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellContent.StylePriority.UseBorders       = false;
        this.xrCellContent.StylePriority.UseFont          = false;
        this.xrCellContent.StylePriority.UsePadding       = false;
        this.xrCellContent.StylePriority.UseTextAlignment = false;
        this.xrCellContent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellContent.Weight        = 0.50547172984727273D;
        //
        // xrCellAwardDate
        //
        this.xrCellAwardDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellAwardDate.Name    = "xrCellAwardDate";
        this.xrCellAwardDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellAwardDate.StylePriority.UseFont          = false;
        this.xrCellAwardDate.StylePriority.UsePadding       = false;
        this.xrCellAwardDate.StylePriority.UseTextAlignment = false;
        this.xrCellAwardDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellAwardDate.Weight        = 0.28492611216506358D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 46F;
        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       = 61F;
        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.xrTable1
        });
        this.PageHeader.HeightF = 50F;
        this.PageHeader.Name    = "PageHeader";
        //
        // 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.0002066294F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
        this.xrTable1.StylePriority.UseBorders       = 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.xrTableCell4,
            this.xrTableCell9,
            this.xrTableCell6,
            this.xrTableCell16,
            this.xrTableCell3,
            this.xrTableCell5
        });
        this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow1.Name    = "xrTableRow1";
        this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow1.StylePriority.UseFont          = false;
        this.xrTableRow1.StylePriority.UsePadding       = false;
        this.xrTableRow1.StylePriority.UseTextAlignment = false;
        this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow1.Weight        = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.12094174037649176D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBorders       = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã NV";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.23581333218491818D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.63964194689898424D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBorders       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "CHỨC VỤ";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.3841214906871902D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseBorders       = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "PHÒNG BAN";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 0.52327163459890191D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseBorders       = false;
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "NGÀY VÀO LÀM VIỆC";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.330692675458568D;
        //
        // 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.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "NGÀY TẶNG DANH HIỆU";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.29948614680039187D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblReportDate,
            this.xrl_TitleReport
        });
        this.ReportHeader.HeightF = 95.08333F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // lblReportDate
        //
        this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
        this.lblReportDate.Name                           = "lblReportDate";
        this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblReportDate.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblReportDate.StylePriority.UseFont          = false;
        this.lblReportDate.StylePriority.UseTextAlignment = false;
        this.lblReportDate.Text                           = "(Thời gian cập nhật {0}/{1}/{2})";
        this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TitleReport
        //
        this.xrl_TitleReport.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_TitleReport.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.xrl_TitleReport.Name                           = "xrl_TitleReport";
        this.xrl_TitleReport.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TitleReport.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.xrl_TitleReport.StylePriority.UseFont          = false;
        this.xrl_TitleReport.StylePriority.UseTextAlignment = false;
        this.xrl_TitleReport.Text                           = "DANH SÁCH CBCNV ĐƯỢC TẶNG DANH HIỆU THI ĐUA";
        this.xrl_TitleReport.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblHRDepartment,
            this.lblCreator,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 226F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // lblHRDepartment
        //
        this.lblHRDepartment.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblHRDepartment.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
        this.lblHRDepartment.Name                           = "lblHRDepartment";
        this.lblHRDepartment.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblHRDepartment.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
        this.lblHRDepartment.StylePriority.UseFont          = false;
        this.lblHRDepartment.StylePriority.UseTextAlignment = false;
        this.lblHRDepartment.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblCreator
        //
        this.lblCreator.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblCreator.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
        this.lblCreator.Name                           = "lblCreator";
        this.lblCreator.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblCreator.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
        this.lblCreator.StylePriority.UseFont          = false;
        this.lblCreator.StylePriority.UseTextAlignment = false;
        this.lblCreator.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(576.0577F, 63.54167F);
        this.xrl_footer3.Multiline                      = true;
        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(569.9422F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "NGƯỜI LẬP\r\n";
        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, 63.54167F);
        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(576.0578F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "PHÒNG NHÂN SỰ";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        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.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_GroupDepartment
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrt_GroupDepartment
        //
        this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
        this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
        this.xrt_GroupDepartment.StylePriority.UseFont          = false;
        this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
        this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
        this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_GroupDepartment.Weight        = 2D;
        this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
        //
        // xrTableCell3
        //
        this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseBorders       = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "NỘI DUNG";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.53129993609340875D;
        //
        // xrCellWorkingDate
        //
        this.xrCellWorkingDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellWorkingDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellWorkingDate.Name    = "xrCellWorkingDate";
        this.xrCellWorkingDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellWorkingDate.StylePriority.UseBorders       = false;
        this.xrCellWorkingDate.StylePriority.UseFont          = false;
        this.xrCellWorkingDate.StylePriority.UsePadding       = false;
        this.xrCellWorkingDate.StylePriority.UseTextAlignment = false;
        this.xrCellWorkingDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellWorkingDate.Weight        = 0.31461664117112442D;
        //
        // rp_BusinessAward
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.ReportHeader,
            this.ReportFooter,
            this.GroupHeader1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "15.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Exemplo n.º 21
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 = "XRPrintInvoice.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     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.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GrandTotal = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuplicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.SPName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.PaymentType = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvDate = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvoiceNumber = new DevExpress.XtraReports.Parameters.Parameter();
     this.InvoiceId = new DevExpress.XtraReports.Parameters.Parameter();
     this.AmmountDue = new DevExpress.XtraReports.Parameters.Parameter();
     this.DueAmmount = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.TotalPaid = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.dsPrintInvoice1 = new DsPrintInvoice();
     this.SPCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lblNote = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail.Dpi = 254F;
     this.Detail.HeightF = 61F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Transparent;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Dpi = 254F;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(5F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(2238F, 61F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell10,
         this.xrTableCell12});
     this.xrTableRow2.Dpi = 254F;
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemCode")});
     this.xrTableCell4.Dpi = 254F;
     this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 11.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell4.StylePriority.UseFont = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell4.Weight = 0.083109919571045576;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemDescription")});
     this.xrTableCell5.Dpi = 254F;
     this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell5.StylePriority.UseFont = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell5.Weight = 0.57327971403038425;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Quantity")});
     this.xrTableCell6.Dpi = 254F;
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell6.Weight = 0.055406613047363718;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Price", "{0:0.00}")});
     this.xrTableCell10.Dpi = 254F;
     this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell10.Weight = 0.13717605004468275;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.CanShrink = true;
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.TotalPrice", "{0:0.00}")});
     this.xrTableCell12.Dpi = 254F;
     this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UseFont = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell12.Weight = 0.15102770330652368;
     //
     // GrandTotal
     //
     this.GrandTotal.Name = "GrandTotal";
     this.GrandTotal.Type = typeof(decimal);
     this.GrandTotal.Value = 0;
     //
     // PageHeader
     //
     this.PageHeader.Dpi = 254F;
     this.PageHeader.HeightF = 0F;
     this.PageHeader.Name = "PageHeader";
     this.PageHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageHeader.StylePriority.UseTextAlignment = false;
     this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Quantity")});
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell9.Weight = 0;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Price")});
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell8.Weight = 0;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuplicate,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4});
     this.ReportHeader.Dpi = 254F;
     this.ReportHeader.HeightF = 638F;
     this.ReportHeader.Name = "ReportHeader";
     //
     // lblDuplicate
     //
     this.lblDuplicate.BackColor = System.Drawing.Color.Transparent;
     this.lblDuplicate.Dpi = 254F;
     this.lblDuplicate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
     this.lblDuplicate.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 445F);
     this.lblDuplicate.Name = "lblDuplicate";
     this.lblDuplicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblDuplicate.SizeF = new System.Drawing.SizeF(297.9999F, 58.41995F);
     this.lblDuplicate.StylePriority.UseBackColor = false;
     this.lblDuplicate.StylePriority.UseFont = false;
     this.lblDuplicate.Text = "DUPLICATE";
     this.lblDuplicate.Visible = false;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.SPName, "Text", "")});
     this.xrLabel8.Dpi = 254F;
     this.xrLabel8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 339F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text = "xrLabel8";
     //
     // SPName
     //
     this.SPName.Name = "SPName";
     this.SPName.Value = "";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerName, "Text", "")});
     this.xrLabel11.Dpi = 254F;
     this.xrLabel11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(100F, 234F);
     this.xrLabel11.Multiline = true;
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(339F, 64F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text = "xrLabel11";
     //
     // CustomerName
     //
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.Value = "";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerCode, "Text", "")});
     this.xrLabel7.Dpi = 254F;
     this.xrLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(100F, 444F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text = "xrLabel7";
     //
     // CustomerCode
     //
     this.CustomerCode.Name = "CustomerCode";
     this.CustomerCode.Value = "";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.PaymentType, "Text", "")});
     this.xrLabel6.Dpi = 254F;
     this.xrLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 445F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text = "xrLabel6";
     //
     // PaymentType
     //
     this.PaymentType.Name = "PaymentType";
     this.PaymentType.Value = "";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvDate, "Text", "{0:dd-MMM-yyyy}")});
     this.xrLabel5.Dpi = 254F;
     this.xrLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 234F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(347F, 64F);
     this.xrLabel5.StylePriority.UseFont = false;
     xrSummary1.FormatString = "dd/MMM/yyyy{0}";
     this.xrLabel5.Summary = xrSummary1;
     this.xrLabel5.Text = "xrLabel5";
     //
     // InvDate
     //
     this.InvDate.Name = "InvDate";
     this.InvDate.Type = typeof(System.DateTime);
     this.InvDate.Value = new System.DateTime(((long)(0)));
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvoiceNumber, "Text", "")});
     this.xrLabel4.Dpi = 254F;
     this.xrLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 339F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(361F, 64F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // InvoiceNumber
     //
     this.InvoiceNumber.Name = "InvoiceNumber";
     this.InvoiceNumber.Value = "";
     //
     // InvoiceId
     //
     this.InvoiceId.Name = "InvoiceId";
     this.InvoiceId.Type = typeof(int);
     this.InvoiceId.Value = 0;
     //
     // AmmountDue
     //
     this.AmmountDue.Name = "AmmountDue";
     this.AmmountDue.Type = typeof(decimal);
     this.AmmountDue.Value = 0;
     //
     // DueAmmount
     //
     this.DueAmmount.Name = "DueAmmount";
     this.DueAmmount.Type = typeof(decimal);
     this.DueAmmount.Value = 0;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel14,
         this.xrLabel17,
         this.xrLabel12,
         this.xrLabel2});
     this.ReportFooter.Dpi = 254F;
     this.ReportFooter.HeightF = 274F;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.PrintAtBottom = true;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi = 254F;
     this.xrLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(1569F, 130F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(294F, 63F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "Amount";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi = 254F;
     this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(1469F, 66F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(397F, 58F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text = "Recieved Amount";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.DueAmmount, "Text", "")});
     this.xrLabel14.Dpi = 254F;
     this.xrLabel14.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.ForeColor = System.Drawing.Color.Maroon;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 133F);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel14.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.StylePriority.UseForeColor = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel17
     //
     this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.TotalPaid, "Text", "")});
     this.xrLabel17.Dpi = 254F;
     this.xrLabel17.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 67F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text = "xrLabel17";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // TotalPaid
     //
     this.TotalPaid.Name = "TotalPaid";
     this.TotalPaid.Type = typeof(decimal);
     this.TotalPaid.Value = 0;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.GrandTotal, "Text", "")});
     this.xrLabel12.Dpi = 254F;
     this.xrLabel12.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 210F);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel12.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text = "xrLabel12";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi = 254F;
     this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(1468F, 130F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 63F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text = "Due";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BorderColor = System.Drawing.SystemColors.Desktop;
     this.xrControlStyle1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name = "xrControlStyle1";
     //
     // dsPrintInvoice1
     //
     this.dsPrintInvoice1.DataSetName = "DsPrintInvoice";
     this.dsPrintInvoice1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // SPCode
     //
     this.SPCode.Name = "SPCode";
     this.SPCode.Value = "";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblNote,
         this.xrPageInfo1});
     this.PageFooter.Dpi = 254F;
     this.PageFooter.HeightF = 65.00002F;
     this.PageFooter.Name = "PageFooter";
     this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lblNote
     //
     this.lblNote.Dpi = 254F;
     this.lblNote.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.lblNote.LocationFloat = new DevExpress.Utils.PointFloat(0F, 5.579924F);
     this.lblNote.Name = "lblNote";
     this.lblNote.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblNote.SizeF = new System.Drawing.SizeF(1246.188F, 58.42F);
     this.lblNote.StylePriority.UseFont = false;
     this.lblNote.Text = "Cash returns are not accepted. This invoice should be submitted for any returns.";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi = 254F;
     this.xrPageInfo1.Font = new System.Drawing.Font("Times New Roman", 11F);
     this.xrPageInfo1.Format = "Page {0} of {1}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1989F, 0F);
     this.xrPageInfo1.Name = "xrPageInfo1";
     this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // topMarginBand1
     //
     this.topMarginBand1.Dpi = 254F;
     this.topMarginBand1.HeightF = 5F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Dpi = 254F;
     this.bottomMarginBand1.HeightF = 5F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XRPrintInvoice
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.PageFooter,
         this.topMarginBand1,
         this.bottomMarginBand1});
     this.DataMember = "vw_Invoice_Detail_Sel_Report";
     this.DataSource = this.dsPrintInvoice1;
     this.Dpi = 254F;
     this.Margins = new System.Drawing.Printing.Margins(5, 5, 5, 5);
     this.PageHeight = 2000;
     this.PageWidth = 2317;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.InvoiceId,
         this.InvoiceNumber,
         this.InvDate,
         this.CustomerCode,
         this.CustomerName,
         this.GrandTotal,
         this.AmmountDue,
         this.PaymentType,
         this.DueAmmount,
         this.TotalPaid,
         this.SPCode,
         this.SPName});
     this.ReportUnit = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1});
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 22
0
        private void InitializeComponent()
        {
            components = new Container();
            var resources = new ComponentResourceManager(typeof(LeaveList));

            topMarginBand1       = new TopMarginBand();
            xrPictureBox1        = new XRPictureBox();
            detailBand1          = new DetailBand();
            xrTable4             = new XRTable();
            xrTableRow6          = new XRTableRow();
            xrTableCell15        = new XRTableCell();
            xrTableCell17        = new XRTableCell();
            xrTableCell18        = new XRTableCell();
            xrTableCell22        = new XRTableCell();
            xrTableCell24        = new XRTableCell();
            xrTableRow7          = new XRTableRow();
            xrTableCell19        = new XRTableCell();
            xrTableCell20        = new XRTableCell();
            xrTableCell21        = new XRTableCell();
            xrTableCell23        = new XRTableCell();
            xrTableCell25        = new XRTableCell();
            xrTableRow8          = new XRTableRow();
            xrTableCell26        = new XRTableCell();
            xrLabel2             = new XRLabel();
            xrTable3             = new XRTable();
            xrTableRow4          = new XRTableRow();
            xrTableCell14        = new XRTableCell();
            xrTableRow5          = new XRTableRow();
            xrTableCell16        = new XRTableCell();
            xrLabel1             = new XRLabel();
            bottomMarginBand1    = new BottomMarginBand();
            xrPageInfo2          = new XRPageInfo();
            xrPageInfo1          = new XRPageInfo();
            bindingSource1       = new BindingSource(components);
            xrTable1             = new XRTable();
            xrTableRow1          = new XRTableRow();
            xrTableCell1         = new XRTableCell();
            xrTableCell2         = new XRTableCell();
            xrTableCell3         = new XRTableCell();
            xrTable2             = new XRTable();
            xrTableRow2          = new XRTableRow();
            xrTableCell4         = new XRTableCell();
            xrTableCell5         = new XRTableCell();
            xrTableCell7         = new XRTableCell();
            xrTableCell8         = new XRTableCell();
            xrTableCell6         = new XRTableCell();
            xrTableRow3          = new XRTableRow();
            xrTableCell9         = new XRTableCell();
            xrTableCell10        = new XRTableCell();
            xrTableCell11        = new XRTableCell();
            xrTableCell12        = new XRTableCell();
            xrTableCell13        = new XRTableCell();
            ReportHeader         = new ReportHeaderBand();
            GroupHeader1         = new GroupHeaderBand();
            xrLabel3             = new XRLabel();
            statusCompleted      = new CalculatedField();
            statusNotStarted     = new CalculatedField();
            statusInProgress     = new CalculatedField();
            statusNeedAssistance = new CalculatedField();
            statusDeferred       = new CalculatedField();
            parameter1           = new Parameter();
            GroupFooter1         = new GroupFooterBand();
            ((ISupportInitialize)xrTable4).BeginInit();
            ((ISupportInitialize)xrTable3).BeginInit();
            ((ISupportInitialize)bindingSource1).BeginInit();
            ((ISupportInitialize)xrTable1).BeginInit();
            ((ISupportInitialize)xrTable2).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            //
            // topMarginBand1
            //
            topMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPictureBox1
            });
            topMarginBand1.HeightF = 138F;
            topMarginBand1.Name    = "topMarginBand1";
            //
            // xrPictureBox1
            //
            xrPictureBox1.Image         = (Image)resources.GetObject("xrPictureBox1.Image");
            xrPictureBox1.LocationFloat = new PointFloat(392.7083F, 6.243578F);
            xrPictureBox1.Name          = "xrPictureBox1";
            xrPictureBox1.SizeF         = new SizeF(344.7917F, 125.1618F);
            xrPictureBox1.Sizing        = ImageSizeMode.StretchImage;
            //
            // detailBand1
            //
            detailBand1.Controls.AddRange(new XRControl[]
            {
                xrTable4,
                xrLabel2,
                xrTable3,
                xrLabel1
            });
            detailBand1.HeightF = 179.1667F;
            detailBand1.Name    = "detailBand1";
            detailBand1.SortFields.AddRange(new[]
            {
                new GroupField("DueDate", XRColumnSortOrder.Ascending)
            });
            //
            // xrTable4
            //
            xrTable4.KeepTogether  = true;
            xrTable4.LocationFloat = new PointFloat(0F, 106.875F);
            xrTable4.Name          = "xrTable4";
            xrTable4.Rows.AddRange(new[]
            {
                xrTableRow6,
                xrTableRow7,
                xrTableRow8
            });
            xrTable4.SizeF = new SizeF(650F, 56.87504F);
            //
            // xrTableRow6
            //
            xrTableRow6.Cells.AddRange(new[]
            {
                xrTableCell15,
                xrTableCell17,
                xrTableCell18,
                xrTableCell22,
                xrTableCell24
            });
            xrTableRow6.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableRow6.Name      = "xrTableRow6";
            xrTableRow6.StylePriority.UseForeColor = false;
            xrTableRow6.Weight = 0.45665942772890605D;
            //
            // xrTableCell15
            //
            xrTableCell15.Name    = "xrTableCell15";
            xrTableCell15.Padding = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTableCell15.StylePriority.UseFont      = false;
            xrTableCell15.StylePriority.UseForeColor = false;
            xrTableCell15.StylePriority.UsePadding   = false;
            xrTableCell15.Text   = "DATE DE RETOUR";
            xrTableCell15.Weight = 0.60771602766636823D;
            //
            // xrTableCell17
            //
            xrTableCell17.Name    = "xrTableCell17";
            xrTableCell17.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell17.StylePriority.UseForeColor = false;
            xrTableCell17.StylePriority.UsePadding   = false;
            xrTableCell17.Text   = "CRÉE PAR";
            xrTableCell17.Weight = 0.62980608396886717D;
            //
            // xrTableCell18
            //
            xrTableCell18.Name    = "xrTableCell18";
            xrTableCell18.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell18.StylePriority.UsePadding = false;
            xrTableCell18.Text   = "EMPLOYÉ";
            xrTableCell18.Weight = 0.58008992577285823D;
            //
            // xrTableCell22
            //
            xrTableCell22.Name    = "xrTableCell22";
            xrTableCell22.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell22.StylePriority.UsePadding = false;
            xrTableCell22.Text   = "PROGRESSION";
            xrTableCell22.Weight = 0.70420532486194742D;
            //
            // xrTableCell24
            //
            xrTableCell24.Name    = "xrTableCell24";
            xrTableCell24.Padding = new PaddingInfo(0, 4, 0, 0, 100F);
            xrTableCell24.StylePriority.UsePadding       = false;
            xrTableCell24.StylePriority.UseTextAlignment = false;
            xrTableCell24.Text          = "PRIORITÉ";
            xrTableCell24.TextAlignment = TextAlignment.TopRight;
            xrTableCell24.Weight        = 0.47818263772995884D;
            //
            // xrTableRow7
            //
            xrTableRow7.Cells.AddRange(new[]
            {
                xrTableCell19,
                xrTableCell20,
                xrTableCell21,
                xrTableCell23,
                xrTableCell25
            });
            xrTableRow7.Font = new Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableRow7.Name = "xrTableRow7";
            xrTableRow7.StylePriority.UseFont = false;
            xrTableRow7.Weight = 0.45665943679824827D;
            //
            // xrTableCell19
            //
            xrTableCell19.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "DueDate", "{0:d}")
            });
            xrTableCell19.Name    = "xrTableCell19";
            xrTableCell19.Padding = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTableCell19.StylePriority.UseFont    = false;
            xrTableCell19.StylePriority.UsePadding = false;
            xrTableCell19.Text   = "12/17/2013";
            xrTableCell19.Weight = 0.60771602766636823D;
            //
            // xrTableCell20
            //
            xrTableCell20.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "AssignedEmployee.FullName")
            });
            xrTableCell20.Name    = "xrTableCell20";
            xrTableCell20.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell20.StylePriority.UsePadding = false;
            xrTableCell20.Text   = "John Hansen";
            xrTableCell20.Weight = 0.62980636210376506D;
            //
            // xrTableCell21
            //
            xrTableCell21.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Owner.FullName")
            });
            xrTableCell21.Name    = "xrTableCell21";
            xrTableCell21.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell21.StylePriority.UsePadding = false;
            xrTableCell21.Text   = "Jane Mitchell";
            xrTableCell21.Weight = 0.58008964763796045D;
            //
            // xrTableCell23
            //
            xrTableCell23.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Completion")
            });
            xrTableCell23.Name    = "xrTableCell23";
            xrTableCell23.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell23.StylePriority.UsePadding = false;
            xrTableCell23.Text   = "xrTableCell23";
            xrTableCell23.Weight = 0.70420532486194742D;
            //
            // xrTableCell25
            //
            xrTableCell25.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Priority")
            });
            xrTableCell25.ForeColor = Color.FromArgb(221, 128, 71);
            xrTableCell25.Name      = "xrTableCell25";
            xrTableCell25.Padding   = new PaddingInfo(0, 4, 0, 0, 100F);
            xrTableCell25.StylePriority.UseForeColor     = false;
            xrTableCell25.StylePriority.UsePadding       = false;
            xrTableCell25.StylePriority.UseTextAlignment = false;
            xrTableCell25.Text          = "High";
            xrTableCell25.TextAlignment = TextAlignment.TopRight;
            xrTableCell25.Weight        = 0.47818263772995884D;
            //
            // xrTableRow8
            //
            xrTableRow8.BorderColor = Color.FromArgb(175, 175, 175);
            xrTableRow8.Borders     = BorderSide.Bottom;
            xrTableRow8.Cells.AddRange(new[]
            {
                xrTableCell26
            });
            xrTableRow8.Name = "xrTableRow8";
            xrTableRow8.StylePriority.UseBorderColor = false;
            xrTableRow8.StylePriority.UseBorders     = false;
            xrTableRow8.Weight = 0.45665943679824827D;
            //
            // xrTableCell26
            //
            xrTableCell26.Name   = "xrTableCell26";
            xrTableCell26.Weight = 3D;
            //
            // xrLabel2
            //
            xrLabel2.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Description")
            });
            xrLabel2.Font                     = new Font("Segoe UI", 10F, FontStyle.Italic, GraphicsUnit.Point, 0);
            xrLabel2.KeepTogether             = true;
            xrLabel2.LocationFloat            = new PointFloat(128.125F, 53.66668F);
            xrLabel2.Name                     = "xrLabel2";
            xrLabel2.Padding                  = new PaddingInfo(7, 2, 0, 0, 100F);
            xrLabel2.SizeF                    = new SizeF(342.7083F, 40.625F);
            xrLabel2.StylePriority.UseFont    = false;
            xrLabel2.StylePriority.UsePadding = false;
            xrLabel2.Text                     = "Artwork is ready. The printer’s address is 100 Main Rd. We need to see the proofs" +
                                                " before we go to print.";
            //
            // xrTable3
            //
            xrTable3.LocationFloat = new PointFloat(0F, 53.66668F);
            xrTable3.Name          = "xrTable3";
            xrTable3.Padding       = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTable3.Rows.AddRange(new[]
            {
                xrTableRow4,
                xrTableRow5
            });
            xrTable3.SizeF = new SizeF(109.6389F, 40.625F);
            xrTable3.StylePriority.UsePadding = false;
            //
            // xrTableRow4
            //
            xrTableRow4.Cells.AddRange(new[]
            {
                xrTableCell14
            });
            xrTableRow4.Name   = "xrTableRow4";
            xrTableRow4.Weight = 0.79591859610841031D;
            //
            // xrTableCell14
            //
            xrTableCell14.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableCell14.Name      = "xrTableCell14";
            xrTableCell14.StylePriority.UseForeColor = false;
            xrTableCell14.Text   = "DATE DÉBUT";
            xrTableCell14.Weight = 3D;
            //
            // xrTableRow5
            //
            xrTableRow5.Cells.AddRange(new[]
            {
                xrTableCell16
            });
            xrTableRow5.Name   = "xrTableRow5";
            xrTableRow5.Weight = 0.79591820772148691D;
            //
            // xrTableCell16
            //
            xrTableCell16.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "StartDate", "{0:d}")
            });
            xrTableCell16.Name   = "xrTableCell16";
            xrTableCell16.Text   = "12/15/2013";
            xrTableCell16.Weight = 3D;
            //
            // xrLabel1
            //
            xrLabel1.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Subject")
            });
            xrLabel1.Font                     = new Font("Segoe UI", 11F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel1.LocationFloat            = new PointFloat(0F, 16F);
            xrLabel1.Name                     = "xrLabel1";
            xrLabel1.Padding                  = new PaddingInfo(17, 2, 0, 0, 100F);
            xrLabel1.SizeF                    = new SizeF(649.4167F, 22.91667F);
            xrLabel1.StylePriority.UseFont    = false;
            xrLabel1.StylePriority.UsePadding = false;
            //
            // bottomMarginBand1
            //
            bottomMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPageInfo2,
                xrPageInfo1
            });
            bottomMarginBand1.Font    = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            bottomMarginBand1.HeightF = 100F;
            bottomMarginBand1.Name    = "bottomMarginBand1";
            bottomMarginBand1.StylePriority.UseFont = false;
            //
            // xrPageInfo2
            //
            xrPageInfo2.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo2.Format        = "{0:MMMM d, yyyy}";
            xrPageInfo2.LocationFloat = new PointFloat(485.4167F, 0F);
            xrPageInfo2.Name          = "xrPageInfo2";
            xrPageInfo2.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo2.PageInfo      = PageInfo.DateTime;
            xrPageInfo2.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo2.StylePriority.UseForeColor     = false;
            xrPageInfo2.StylePriority.UseTextAlignment = false;
            xrPageInfo2.TextAlignment = TextAlignment.TopRight;
            //
            // xrPageInfo1
            //
            xrPageInfo1.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo1.Format        = "Page {0} of {1}";
            xrPageInfo1.LocationFloat = new PointFloat(0F, 0F);
            xrPageInfo1.Name          = "xrPageInfo1";
            xrPageInfo1.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo1.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo1.StylePriority.UseForeColor = false;
            //
            // bindingSource1
            //
            bindingSource1.DataSource = typeof(Leave);
            //
            // xrTable1
            //
            xrTable1.LocationFloat = new PointFloat(0F, 22F);
            xrTable1.Name          = "xrTable1";
            xrTable1.Rows.AddRange(new[]
            {
                xrTableRow1
            });
            xrTable1.SizeF = new SizeF(650F, 29.69642F);
            //
            // xrTableRow1
            //
            xrTableRow1.Cells.AddRange(new[]
            {
                xrTableCell1,
                xrTableCell2,
                xrTableCell3
            });
            xrTableRow1.Name = "xrTableRow1";
            xrTableRow1.StylePriority.UseTextAlignment = false;
            xrTableRow1.TextAlignment = TextAlignment.MiddleRight;
            xrTableRow1.Weight        = 1D;
            //
            // xrTableCell1
            //
            xrTableCell1.BackColor = Color.LimeGreen;
            xrTableCell1.Font      = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell1.ForeColor = Color.White;
            xrTableCell1.Name      = "xrTableCell1";
            xrTableCell1.Padding   = new PaddingInfo(8, 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          = "Congés";
            xrTableCell1.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell1.Weight        = 0.80032469757233127D;
            //
            // xrTableCell2
            //
            xrTableCell2.Name   = "xrTableCell2";
            xrTableCell2.Weight = 0.024452088141954528D;
            //
            // xrTableCell3
            //
            xrTableCell3.BackColor = Color.FromArgb(218, 218, 218);
            xrTableCell3.Font      = new Font("Segoe UI", 8F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell3.Name      = "xrTableCell3";
            xrTableCell3.Padding   = new PaddingInfo(0, 8, 0, 0, 100F);
            xrTableCell3.StylePriority.UseBackColor = false;
            xrTableCell3.StylePriority.UseFont      = false;
            xrTableCell3.StylePriority.UsePadding   = false;
            xrTableCell3.Text   = "Grouped by Status | Sorted by Due Date";
            xrTableCell3.Weight = 2.2141840142121296D;
            //
            // xrTable2
            //
            xrTable2.LocationFloat = new PointFloat(0F, 73.70834F);
            xrTable2.Name          = "xrTable2";
            xrTable2.Rows.AddRange(new[]
            {
                xrTableRow2,
                xrTableRow3
            });
            xrTable2.SizeF = new SizeF(648.9583F, 148.9583F);
            xrTable2.StylePriority.UseBorders       = false;
            xrTable2.StylePriority.UseTextAlignment = false;
            xrTable2.TextAlignment = TextAlignment.MiddleCenter;
            //
            // xrTableRow2
            //
            xrTableRow2.Cells.AddRange(new[]
            {
                xrTableCell4,
                xrTableCell5,
                xrTableCell7,
                xrTableCell8,
                xrTableCell6
            });
            xrTableRow2.Font = new Font("Microsoft Sans Serif", 36F);
            xrTableRow2.Name = "xrTableRow2";
            xrTableRow2.StylePriority.UseFont          = false;
            xrTableRow2.StylePriority.UseTextAlignment = false;
            xrTableRow2.Weight = 1D;
            //
            // xrTableCell4
            //
            xrTableCell4.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusNotStarted")
            });
            xrTableCell4.Name     = "xrTableCell4";
            xrTableCell4.Weight   = 1D;
            xrTableCell4.WordWrap = false;
            //
            // xrTableCell5
            //
            xrTableCell5.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusInProgress")
            });
            xrTableCell5.Name     = "xrTableCell5";
            xrTableCell5.Weight   = 1D;
            xrTableCell5.WordWrap = false;
            //
            // xrTableCell7
            //
            xrTableCell7.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusCompleted")
            });
            xrTableCell7.Name = "xrTableCell7";
            xrTableCell7.StylePriority.UseTextAlignment = false;
            xrTableCell7.Weight   = 1D;
            xrTableCell7.WordWrap = false;
            //
            // xrTableCell8
            //
            xrTableCell8.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusNeedAssistance")
            });
            xrTableCell8.Name     = "xrTableCell8";
            xrTableCell8.Weight   = 1D;
            xrTableCell8.WordWrap = false;
            //
            // xrTableCell6
            //
            xrTableCell6.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusDeferred")
            });
            xrTableCell6.Name     = "xrTableCell6";
            xrTableCell6.Weight   = 1D;
            xrTableCell6.WordWrap = false;
            //
            // xrTableRow3
            //
            xrTableRow3.BorderColor = Color.FromArgb(175, 175, 175);
            xrTableRow3.Borders     = BorderSide.Bottom;
            xrTableRow3.Cells.AddRange(new[]
            {
                xrTableCell9,
                xrTableCell10,
                xrTableCell11,
                xrTableCell12,
                xrTableCell13
            });
            xrTableRow3.Font      = new Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableRow3.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableRow3.Name      = "xrTableRow3";
            xrTableRow3.StylePriority.UseBorderColor   = false;
            xrTableRow3.StylePriority.UseBorders       = false;
            xrTableRow3.StylePriority.UseFont          = false;
            xrTableRow3.StylePriority.UseForeColor     = false;
            xrTableRow3.StylePriority.UseTextAlignment = false;
            xrTableRow3.Weight = 0.5423728813559322D;
            //
            // xrTableCell9
            //
            xrTableCell9.Name   = "xrTableCell9";
            xrTableCell9.Text   = "NOT STARTED";
            xrTableCell9.Weight = 1D;
            //
            // xrTableCell10
            //
            xrTableCell10.Name   = "xrTableCell10";
            xrTableCell10.Text   = "IN PROGRESS";
            xrTableCell10.Weight = 1D;
            //
            // xrTableCell11
            //
            xrTableCell11.Name   = "xrTableCell11";
            xrTableCell11.Text   = "COMPLETED";
            xrTableCell11.Weight = 1D;
            //
            // xrTableCell12
            //
            xrTableCell12.Name   = "xrTableCell12";
            xrTableCell12.Text   = "ASSISTANCE";
            xrTableCell12.Weight = 1D;
            //
            // xrTableCell13
            //
            xrTableCell13.Name   = "xrTableCell13";
            xrTableCell13.Text   = "DEFERRED";
            xrTableCell13.Weight = 1D;
            //
            // ReportHeader
            //
            ReportHeader.Controls.AddRange(new XRControl[]
            {
                xrTable2,
                xrTable1
            });
            ReportHeader.HeightF = 246.8749F;
            ReportHeader.Name    = "ReportHeader";
            //
            // GroupHeader1
            //
            GroupHeader1.Controls.AddRange(new XRControl[]
            {
                xrLabel3
            });
            GroupHeader1.GroupFields.AddRange(new[]
            {
                new GroupField("Status", XRColumnSortOrder.Ascending)
            });
            GroupHeader1.HeightF = 26.04167F;
            GroupHeader1.Name    = "GroupHeader1";
            //
            // xrLabel3
            //
            xrLabel3.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Status")
            });
            xrLabel3.Font                           = new Font("Segoe UI", 14F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel3.ForeColor                      = Color.LawnGreen;
            xrLabel3.LocationFloat                  = new PointFloat(0F, 0F);
            xrLabel3.Name                           = "xrLabel3";
            xrLabel3.Padding                        = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel3.SizeF                          = new SizeF(648.9583F, 26.04167F);
            xrLabel3.StylePriority.UseFont          = false;
            xrLabel3.StylePriority.UseForeColor     = false;
            xrLabel3.StylePriority.UseTextAlignment = false;
            xrLabel3.TextAlignment                  = TextAlignment.BottomCenter;
            //
            // statusCompleted
            //
            statusCompleted.Expression = "[][ToStr([Status]) = \'Completed\'].Count()";
            statusCompleted.FieldType  = FieldType.Int32;
            statusCompleted.Name       = "statusCompleted";
            //
            // statusNotStarted
            //
            statusNotStarted.Expression = "[][ToStr([Status]) = \'NotStarted\'].Count()";
            statusNotStarted.FieldType  = FieldType.Int32;
            statusNotStarted.Name       = "statusNotStarted";
            //
            // statusInProgress
            //
            statusInProgress.Expression = "[][ToStr([Status]) = \'InProgress\'].Count()";
            statusInProgress.FieldType  = FieldType.Int32;
            statusInProgress.Name       = "statusInProgress";
            //
            // statusNeedAssistance
            //
            statusNeedAssistance.Expression = "[][ToStr([Status]) = \'NeedAssistance\'].Count()";
            statusNeedAssistance.FieldType  = FieldType.Int32;
            statusNeedAssistance.Name       = "statusNeedAssistance";
            //
            // statusDeferred
            //
            statusDeferred.Expression = "[][ToStr([Status]) = \'Deferred\'].Count()";
            statusDeferred.FieldType  = FieldType.Int32;
            statusDeferred.Name       = "statusDeferred";
            //
            // parameter1
            //
            parameter1.Description = "Parameter1";
            parameter1.Name        = "parameter1";
            parameter1.Type        = typeof(bool);
            parameter1.ValueInfo   = "True";
            parameter1.Visible     = false;
            //
            // GroupFooter1
            //
            GroupFooter1.HeightF   = 0F;
            GroupFooter1.Name      = "GroupFooter1";
            GroupFooter1.PageBreak = PageBreak.AfterBand;
            //
            // LeaveList
            //
            Bands.AddRange(new Band[]
            {
                topMarginBand1,
                detailBand1,
                bottomMarginBand1,
                ReportHeader,
                GroupHeader1,
                GroupFooter1
            });
            CalculatedFields.AddRange(new[]
            {
                statusCompleted,
                statusNotStarted,
                statusInProgress,
                statusNeedAssistance,
                statusDeferred
            });
            DataSource = bindingSource1;
            DesignerOptions.ShowExportWarnings = false;
            DrawWatermark = true;
            Font          = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 0);
            Margins       = new Margins(100, 82, 138, 100);
            Parameters.AddRange(new[]
            {
                parameter1
            });
            SnappingMode        = SnappingMode.SnapToGrid;
            SnapToGrid          = false;
            Version             = "15.1";
            DataSourceDemanded += LeaveList_DataSourceDemanded;
            ((ISupportInitialize)xrTable4).EndInit();
            ((ISupportInitialize)xrTable3).EndInit();
            ((ISupportInitialize)bindingSource1).EndInit();
            ((ISupportInitialize)xrTable1).EndInit();
            ((ISupportInitialize)xrTable2).EndInit();
            ((ISupportInitialize)this).EndInit();
        }
Exemplo n.º 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();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeDocument));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     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.xrPictureBox8    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = 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.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.HasExDate        = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource2   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupHeader3     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.sqlDataSource3   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrSubreport1     = new DevExpress.XtraReports.UI.XRSubreport();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 1.763889F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 14F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 18F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox8,
         this.xrLabel1,
         this.xrLabel5,
         this.xrLabel4
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 305F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrPictureBox8
     //
     this.xrPictureBox8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.xrPictureBox8.Dpi           = 254F;
     this.xrPictureBox8.LocationFloat = new DevExpress.Utils.PointFloat(25.4F, 0F);
     this.xrPictureBox8.Name          = "xrPictureBox8";
     this.xrPictureBox8.SizeF         = new System.Drawing.SizeF(363.3611F, 284.9463F);
     this.xrPictureBox8.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2339.26F, 21.16667F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(502.6323F, 91.66478F);
     this.xrLabel1.StylePriority.UseBorderColor   = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "شركة العين للتوزيع";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel5.Dpi           = 254F;
     this.xrLabel5.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169)))));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(2421.503F, 112.8315F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(448.6116F, 70.63511F);
     this.xrLabel5.StylePriority.UseBorderColor   = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "منطقة العين - الدمام السعودية";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1180.839F, 143.5808F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1178.278F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "بيانات مرفقات الموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo3,
         this.xrPageInfo2
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 73.2367F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Dpi                            = 254F;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo3.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(2687.375F, 0F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(254.0002F, 58.42F);
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(24.99999F, 0F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6505F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // 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";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Black;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "EmployeeDocuments";
     storedProcQuery1.StoredProcName = "EmployeeDocuments";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTable2
     //
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EndDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell6.Dpi  = 254F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell6.Weight        = 0.058898504773092768D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.0583797479597113D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.StartDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi           = 254F;
     this.xrTableCell7.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell7.Name          = "xrTableCell7";
     this.xrTableCell7.OddStyleName  = "tbl_even_detail";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.072820293199522115D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocReqOpt")
     });
     this.xrTableCell8.Dpi           = 254F;
     this.xrTableCell8.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell8.Name          = "xrTableCell8";
     this.xrTableCell8.OddStyleName  = "tbl_even_detail";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.15029585798816569D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocType")
     });
     this.xrTableCell9.Dpi           = 254F;
     this.xrTableCell9.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell9.Name          = "xrTableCell9";
     this.xrTableCell9.OddStyleName  = "tbl_even_detail";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.15029585798816569D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.docTypeName")
     });
     this.xrTableCell10.Dpi           = 254F;
     this.xrTableCell10.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell10.Name          = "xrTableCell10";
     this.xrTableCell10.OddStyleName  = "tbl_even_detail";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15029585798816569D;
     //
     // xrTable1
     //
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF     = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable1.StyleName = "tbl_header_style";
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont    = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 0.5679012345679012D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell1.Dpi     = 254F;
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "تاريخ الانتهاء";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell1.Weight        = 0.12219295708371847D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 254F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "تاريخ الاصدار";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell2.Weight        = 0.0758719550880966D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 254F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "درجة إلزامية الوثيقة";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell3.Weight        = 0.15659421787239322D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "نوع الوثيقة";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell4.Weight        = 0.1628925777566208D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi  = 254F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "اسم الوثيقة";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.15029585798816569D;
     //
     // HasExDate
     //
     this.HasExDate.DataMember = "EmployeeDocuments";
     this.HasExDate.Expression = "Iif([HasExpiryDate]=true,\'لها تاريخ انتهاء\',\'ليس لها تاريخ انتهاء\')";
     this.HasExDate.Name       = "HasExDate";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionName = "HrContext";
     this.sqlDataSource2.Name           = "sqlDataSource2";
     storedProcQuery2.Name     = "sp_GetRequiredPaper";
     queryParameter1.Name      = "@jobId";
     queryParameter1.Type      = typeof(int);
     queryParameter1.ValueInfo = "0";
     storedProcQuery2.Parameters.Add(queryParameter1);
     storedProcQuery2.StoredProcName = "sp_GetRequiredPaper";
     this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery2
     });
     this.sqlDataSource2.ResultSchemaSerializable = resources.GetString("sqlDataSource2.ResultSchemaSerializable");
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("EmpName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 58.42F;
     this.GroupHeader1.Level   = 2;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.JobName")
     });
     this.xrLabel3.Dpi           = 254F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(197.1254F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(2396.652F, 58.42F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel2
     //
     this.xrLabel2.BackColor = System.Drawing.Color.LightGray;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EmpName")
     });
     this.xrLabel2.Dpi           = 254F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(2593.778F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(366.2224F, 58.42F);
     this.xrLabel2.StylePriority.UseBackColor     = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader2.Dpi = 254F;
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("docTypeName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 63.5F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrSubreport1
     });
     this.GroupFooter1.Dpi     = 254F;
     this.GroupFooter1.HeightF = 143.8628F;
     this.GroupFooter1.Level   = 1;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader3.Dpi     = 254F;
     this.GroupHeader3.HeightF = 63.5F;
     this.GroupHeader3.Level   = 1;
     this.GroupHeader3.Name    = "GroupHeader3";
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionName = "HrContext";
     this.sqlDataSource3.Name           = "sqlDataSource3";
     storedProcQuery3.Name           = "sp_EmployeeDocumentReport";
     storedProcQuery3.StoredProcName = "sp_EmployeeDocumentReport";
     this.sqlDataSource3.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery3
     });
     this.sqlDataSource3.ResultSchemaSerializable = resources.GetString("sqlDataSource3.ResultSchemaSerializable");
     //
     // xrSubreport1
     //
     this.xrSubreport1.Dpi           = 254F;
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(197.1249F, 0F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("CompanyId", null, "sp_EmployeeDocumentReport.CompanyId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("EmpId", null, "sp_EmployeeDocumentReport.EmpId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Nationality", null, "sp_EmployeeDocumentReport.nationalityId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Gender", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Culture", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ReportSource = new Sub();
     this.xrSubreport1.SizeF        = new System.Drawing.SizeF(2762.875F, 138.5711F);
     //
     // EmployeeDocument
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupFooter1,
         this.GroupHeader3
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.HasExDate
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1,
         this.sqlDataSource2,
         this.sqlDataSource3
     });
     this.DataMember   = "sp_EmployeeDocumentReport";
     this.DataSource   = this.sqlDataSource3;
     this.Dpi          = 254F;
     this.Landscape    = true;
     this.Margins      = new System.Drawing.Printing.Margins(0, 10, 14, 18);
     this.PageHeight   = 2100;
     this.PageWidth    = 2970;
     this.PaperKind    = System.Drawing.Printing.PaperKind.A4;
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     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                table3             = 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();
     System.ComponentModel.ComponentResourceManager resources          = new System.ComponentModel.ComponentResourceManager(typeof(Successful));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData1     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader    = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.pageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1          = 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.tableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.table2          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell10     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPictureBox2   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel7        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel8        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox3   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel9        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox4   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel10       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox5   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox6   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox7   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox8   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox9   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox10  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox11  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox12  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox13  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox14  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox15  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox16  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox17  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox18  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox19  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox20  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox21  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox22  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox23  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox24  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox25  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox26  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox27  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox28  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrRichText1     = new DevExpress.XtraReports.UI.XRRichText();
     this.parameter1      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "desktop-blobtuq\\sqlexpress.INF370test.dbo";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "INF370test";
     msSqlConnectionParameters1.ServerName        = "DESKTOP-BLOBTUQ\\SQLEXPRESS";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "RequestID";
     table3.Name                   = "ServiceRequest";
     columnExpression1.Table       = table3;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "DateStart";
     columnExpression2.Table       = table3;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "DateEnd";
     columnExpression3.Table       = table3;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "Pets";
     columnExpression4.Table       = table3;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "StatusDescription";
     columnExpression5.Table       = table3;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "SpecialNote";
     columnExpression6.Table       = table3;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "PetParentID";
     columnExpression7.Table       = table3;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "PaymentID";
     columnExpression8.Table       = table3;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "TypeID";
     columnExpression9.Table       = table3;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "SuburbID";
     columnExpression10.Table      = table3;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "CityID";
     columnExpression11.Table      = table3;
     column11.Expression           = columnExpression11;
     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.Name = "ServiceRequest";
     selectQuery1.Tables.Add(table3);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // 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("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption1
     //
     this.DetailCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(23)))), ((int)(((byte)(104)))), ((int)(((byte)(196)))));
     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("Arial", 8.25F, 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.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.DetailData1.BorderWidth   = 2F;
     this.DetailData1.Font          = new System.Drawing.Font("Arial", 8.25F);
     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;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(245)))), ((int)(((byte)(248)))));
     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("Arial", 8.25F);
     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;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox2,
         this.xrLabel7,
         this.xrPictureBox1,
         this.xrLabel8,
         this.xrPictureBox3,
         this.xrLabel9,
         this.xrPictureBox4,
         this.xrLabel10,
         this.xrPictureBox5,
         this.xrPictureBox6,
         this.xrPictureBox7,
         this.xrPictureBox8,
         this.xrPictureBox9,
         this.xrPictureBox10,
         this.xrPictureBox11,
         this.xrPictureBox12,
         this.xrPictureBox13,
         this.xrPictureBox14,
         this.xrPictureBox15,
         this.xrPictureBox16,
         this.xrPictureBox17,
         this.xrPictureBox18,
         this.xrPictureBox19,
         this.xrPictureBox20,
         this.xrPictureBox21,
         this.xrPictureBox22,
         this.xrPictureBox23,
         this.xrPictureBox24,
         this.xrPictureBox25,
         this.xrPictureBox26,
         this.xrPictureBox27,
         this.xrPictureBox28
     });
     this.TopMargin.HeightF = 116.4583F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText1,
         this.label1
     });
     this.ReportHeader.HeightF = 148.125F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 28F;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.BackColor     = System.Drawing.Color.MidnightBlue;
     this.label1.BorderColor   = System.Drawing.Color.Black;
     this.label1.ForeColor     = System.Drawing.Color.White;
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.StylePriority.UseBackColor   = false;
     this.label1.StylePriority.UseBorderColor = false;
     this.label1.StylePriority.UseForeColor   = false;
     this.label1.Text = "Successful Booking Report";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 28F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell3,
         this.tableCell4,
         this.tableCell5
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "DetailCaption1";
     this.tableCell1.StylePriority.UseBorders       = false;
     this.tableCell1.StylePriority.UseTextAlignment = false;
     this.tableCell1.Text          = "Request ID";
     this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell1.Weight        = 0.20565889798677883D;
     //
     // tableCell2
     //
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "DetailCaption1";
     this.tableCell2.Text      = "Date Start";
     this.tableCell2.Weight    = 0.18973743145282451D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "DetailCaption1";
     this.tableCell3.Text      = "Date End";
     this.tableCell3.Weight    = 0.17731775137094352D;
     //
     // tableCell4
     //
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "DetailCaption1";
     this.tableCell4.Text      = "Pets";
     this.tableCell4.Weight    = 0.10650382408728966D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "DetailCaption1";
     this.tableCell5.Text      = "Status Description";
     this.tableCell5.Weight    = 0.32078211857722355D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table2.Name          = "table2";
     this.table2.OddStyleName  = "DetailData3_Odd";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell6,
         this.tableCell7,
         this.tableCell8,
         this.tableCell9,
         this.tableCell10
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 11.5D;
     //
     // tableCell6
     //
     this.tableCell6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[RequestID]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "DetailData1";
     this.tableCell6.StylePriority.UseBorders       = false;
     this.tableCell6.StylePriority.UseTextAlignment = false;
     this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell6.Weight        = 0.20565889798677883D;
     //
     // tableCell7
     //
     this.tableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateStart]")
     });
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "DetailData1";
     this.tableCell7.Weight    = 0.18973743145282451D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateEnd]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "DetailData1";
     this.tableCell8.Weight    = 0.17731775137094352D;
     //
     // tableCell9
     //
     this.tableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Pets]")
     });
     this.tableCell9.Name      = "tableCell9";
     this.tableCell9.StyleName = "DetailData1";
     this.tableCell9.Weight    = 0.10650382408728966D;
     //
     // tableCell10
     //
     this.tableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[StatusDescription]")
     });
     this.tableCell10.Name      = "tableCell10";
     this.tableCell10.StyleName = "DetailData1";
     this.tableCell10.Weight    = 0.32078209510216349D;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox2.ImageSource"));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(438.4616F, 15.6795F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel7
     //
     this.xrLabel7.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(471.795F, 15.6795F);
     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(178.205F, 23F);
     this.xrLabel7.StylePriority.UseForeColor = false;
     this.xrLabel7.Text = "Company Contact:0721345678";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(438.4616F, 49.01283F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel8.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(471.795F, 49.01283F);
     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(178.205F, 23F);
     this.xrLabel8.StylePriority.UseBackColor = false;
     this.xrLabel8.StylePriority.UseForeColor = false;
     this.xrLabel8.Text = "Company:Petcetra";
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(21.47438F, 15.6795F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel9
     //
     this.xrLabel9.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(54.80772F, 15.6795F);
     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(178.8462F, 23F);
     this.xrLabel9.StylePriority.UseForeColor = false;
     this.xrLabel9.Text = "Generated by:Admin\r\n";
     //
     // xrPictureBox4
     //
     this.xrPictureBox4.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox4.ImageSource"));
     this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(21.47438F, 49.01285F);
     this.xrPictureBox4.Name          = "xrPictureBox4";
     this.xrPictureBox4.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox4.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel10
     //
     this.xrLabel10.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(54.80772F, 49.01283F);
     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(178.8462F, 23F);
     this.xrLabel10.StylePriority.UseForeColor = false;
     this.xrLabel10.Text = "Date Generated:2019/07/08";
     //
     // xrPictureBox5
     //
     this.xrPictureBox5.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox5.ImageSource"));
     this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(10F, 83.45831F);
     this.xrPictureBox5.Name          = "xrPictureBox5";
     this.xrPictureBox5.SizeF         = new System.Drawing.SizeF(32.30772F, 32.99999F);
     //
     // xrPictureBox6
     //
     this.xrPictureBox6.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox6.ImageSource"));
     this.xrPictureBox6.LocationFloat = new DevExpress.Utils.PointFloat(42.30772F, 83.45831F);
     this.xrPictureBox6.Name          = "xrPictureBox6";
     this.xrPictureBox6.SizeF         = new System.Drawing.SizeF(26.49533F, 32.99999F);
     //
     // xrPictureBox7
     //
     this.xrPictureBox7.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox7.ImageSource"));
     this.xrPictureBox7.LocationFloat = new DevExpress.Utils.PointFloat(68.80304F, 83.45831F);
     this.xrPictureBox7.Name          = "xrPictureBox7";
     this.xrPictureBox7.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox8
     //
     this.xrPictureBox8.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox8.ImageSource"));
     this.xrPictureBox8.LocationFloat = new DevExpress.Utils.PointFloat(95.90244F, 83.45831F);
     this.xrPictureBox8.Name          = "xrPictureBox8";
     this.xrPictureBox8.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox9
     //
     this.xrPictureBox9.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox9.ImageSource"));
     this.xrPictureBox9.LocationFloat = new DevExpress.Utils.PointFloat(123.0018F, 83.45831F);
     this.xrPictureBox9.Name          = "xrPictureBox9";
     this.xrPictureBox9.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox10
     //
     this.xrPictureBox10.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox10.ImageSource"));
     this.xrPictureBox10.LocationFloat = new DevExpress.Utils.PointFloat(150.1012F, 83.45831F);
     this.xrPictureBox10.Name          = "xrPictureBox10";
     this.xrPictureBox10.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox11
     //
     this.xrPictureBox11.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox11.ImageSource"));
     this.xrPictureBox11.LocationFloat = new DevExpress.Utils.PointFloat(177.2006F, 83.45831F);
     this.xrPictureBox11.Name          = "xrPictureBox11";
     this.xrPictureBox11.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox12
     //
     this.xrPictureBox12.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox12.ImageSource"));
     this.xrPictureBox12.LocationFloat = new DevExpress.Utils.PointFloat(204.2999F, 83.45831F);
     this.xrPictureBox12.Name          = "xrPictureBox12";
     this.xrPictureBox12.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox13
     //
     this.xrPictureBox13.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox13.ImageSource"));
     this.xrPictureBox13.LocationFloat = new DevExpress.Utils.PointFloat(231.3993F, 83.45834F);
     this.xrPictureBox13.Name          = "xrPictureBox13";
     this.xrPictureBox13.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox14
     //
     this.xrPictureBox14.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox14.ImageSource"));
     this.xrPictureBox14.LocationFloat = new DevExpress.Utils.PointFloat(258.4986F, 83.45834F);
     this.xrPictureBox14.Name          = "xrPictureBox14";
     this.xrPictureBox14.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox15
     //
     this.xrPictureBox15.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox15.ImageSource"));
     this.xrPictureBox15.LocationFloat = new DevExpress.Utils.PointFloat(285.598F, 83.45834F);
     this.xrPictureBox15.Name          = "xrPictureBox15";
     this.xrPictureBox15.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox16
     //
     this.xrPictureBox16.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox16.ImageSource"));
     this.xrPictureBox16.LocationFloat = new DevExpress.Utils.PointFloat(312.6974F, 83.45834F);
     this.xrPictureBox16.Name          = "xrPictureBox16";
     this.xrPictureBox16.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox17
     //
     this.xrPictureBox17.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox17.ImageSource"));
     this.xrPictureBox17.LocationFloat = new DevExpress.Utils.PointFloat(339.7807F, 83.45834F);
     this.xrPictureBox17.Name          = "xrPictureBox17";
     this.xrPictureBox17.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox18
     //
     this.xrPictureBox18.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox18.ImageSource"));
     this.xrPictureBox18.LocationFloat = new DevExpress.Utils.PointFloat(366.864F, 83.45834F);
     this.xrPictureBox18.Name          = "xrPictureBox18";
     this.xrPictureBox18.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox19
     //
     this.xrPictureBox19.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox19.ImageSource"));
     this.xrPictureBox19.LocationFloat = new DevExpress.Utils.PointFloat(393.9474F, 83.45831F);
     this.xrPictureBox19.Name          = "xrPictureBox19";
     this.xrPictureBox19.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox20
     //
     this.xrPictureBox20.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox20.ImageSource"));
     this.xrPictureBox20.LocationFloat = new DevExpress.Utils.PointFloat(421.0307F, 83.45834F);
     this.xrPictureBox20.Name          = "xrPictureBox20";
     this.xrPictureBox20.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox21
     //
     this.xrPictureBox21.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox21.ImageSource"));
     this.xrPictureBox21.LocationFloat = new DevExpress.Utils.PointFloat(448.114F, 83.45834F);
     this.xrPictureBox21.Name          = "xrPictureBox21";
     this.xrPictureBox21.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox22
     //
     this.xrPictureBox22.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox22.ImageSource"));
     this.xrPictureBox22.LocationFloat = new DevExpress.Utils.PointFloat(475.1974F, 83.45831F);
     this.xrPictureBox22.Name          = "xrPictureBox22";
     this.xrPictureBox22.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox23
     //
     this.xrPictureBox23.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox23.ImageSource"));
     this.xrPictureBox23.LocationFloat = new DevExpress.Utils.PointFloat(502.2807F, 83.45834F);
     this.xrPictureBox23.Name          = "xrPictureBox23";
     this.xrPictureBox23.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox24
     //
     this.xrPictureBox24.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox24.ImageSource"));
     this.xrPictureBox24.LocationFloat = new DevExpress.Utils.PointFloat(529.364F, 83.45831F);
     this.xrPictureBox24.Name          = "xrPictureBox24";
     this.xrPictureBox24.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox25
     //
     this.xrPictureBox25.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox25.ImageSource"));
     this.xrPictureBox25.LocationFloat = new DevExpress.Utils.PointFloat(556.4473F, 83.45831F);
     this.xrPictureBox25.Name          = "xrPictureBox25";
     this.xrPictureBox25.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox26
     //
     this.xrPictureBox26.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox26.ImageSource"));
     this.xrPictureBox26.LocationFloat = new DevExpress.Utils.PointFloat(583.5307F, 83.45834F);
     this.xrPictureBox26.Name          = "xrPictureBox26";
     this.xrPictureBox26.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox27
     //
     this.xrPictureBox27.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox27.ImageSource"));
     this.xrPictureBox27.LocationFloat = new DevExpress.Utils.PointFloat(612.9167F, 83.45831F);
     this.xrPictureBox27.Name          = "xrPictureBox27";
     this.xrPictureBox27.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox28
     //
     this.xrPictureBox28.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox28.ImageSource"));
     this.xrPictureBox28.LocationFloat = new DevExpress.Utils.PointFloat(258.4986F, 0F);
     this.xrPictureBox28.Name          = "xrPictureBox28";
     this.xrPictureBox28.SizeF         = new System.Drawing.SizeF(162.532F, 74.40813F);
     this.xrPictureBox28.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrRichText1
     //
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 38.12501F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(600.614F, 99.99999F);
     //
     // parameter1
     //
     this.parameter1.Description              = "Parameter1";
     dynamicListLookUpSettings1.DataMember    = "ServiceRequest";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "StatusDescription";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.ValueMember   = "StatusDescription";
     this.parameter1.LookUpSettings           = dynamicListLookUpSettings1;
     this.parameter1.Name = "parameter1";
     //
     // Successful
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.Detail
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "ServiceRequest";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[StatusDescription] = \'Successful\'";
     this.Font         = new System.Drawing.Font("Arial", 9.75F);
     this.Margins      = new System.Drawing.Printing.Margins(100, 100, 116, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.parameter1
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption1,
         this.DetailData1,
         this.DetailData3_Odd,
         this.PageInfo
     });
     this.Version = "19.1";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 25
0
        protected virtual void Inizializza(ImpostazioneReportDTO impostazioniReport, string noteRtf)
        {
            _impostazioniReport = impostazioniReport;

            // Create XtraReport instance
            _report = GetXtraReport(impostazioniReport, _isSubreport);
            _report.BeginInit();

            if (!_isSubreport)
            {
                _reportHeaderBand = new ReportHeaderBand();
                _reportFooterBand = new ReportFooterBand();
                _topMarginBand = new TopMarginBand();
                _bottomMarginBand = new BottomMarginBand();
                _pageFooterBand = new PageFooterBand();
            }

            _pageHeaderBand = new PageHeaderBand();
            _detailBand = new DetailBand();

            //
            // Report Header
            //
            if (_reportHeaderBand != null)
            {
                _reportHeaderBand.Name = "ReportHeader";
                _reportHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _reportHeaderBand.TextAlignment = TextAlignment.TopLeft;
            }

            //
            // Report Footer
            //
            if (_reportFooterBand != null)
            {
                _reportFooterBand.Name = "ReportFooter";
                _reportFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _reportFooterBand.TextAlignment = TextAlignment.TopLeft;
            }

            //
            // Page Header
            //
            if (_pageHeaderBand != null)
            {
                _pageHeaderBand.Name = "PageHeader";
                _pageHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _pageHeaderBand.TextAlignment = TextAlignment.TopLeft;
                if (_isSubreport)
                    _pageHeaderBand.HeightF = 40f;
            }

            //
            // Page Footer
            //
            if (_pageFooterBand != null)
            {
                _pageFooterBand.Name = "PageFooter";
                _pageFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _pageFooterBand.TextAlignment = TextAlignment.TopLeft;
            }

            // 
            // TopMargin
            // 
            if (_topMarginBand != null)
            {
                _topMarginBand.Name = "TopMargin";
                _topMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _topMarginBand.TextAlignment = TextAlignment.TopLeft;
                _topMarginBand.HeightF = 10;
            }

            // 
            // BottomMargin
            //
            if (_bottomMarginBand != null)
            {
                _bottomMarginBand.Name = "BottomMargin";
                _bottomMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _bottomMarginBand.TextAlignment = TextAlignment.TopLeft;
                _bottomMarginBand.HeightF = 10;
            }

            // 
            // Detail
            // 
            _detailBand.Name = "Detail";
            _detailBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            _detailBand.TextAlignment = TextAlignment.TopLeft;

            // 
            // RipartoConsuntivo
            // 
            _report.Bands.Add(_detailBand);

            if (_reportHeaderBand != null)
                _report.Bands.Add(_reportHeaderBand);
            if (_reportFooterBand != null)
                _report.Bands.Add(_reportFooterBand);
            if (_pageHeaderBand != null)
                _report.Bands.Add(_pageHeaderBand);
            if (_pageFooterBand != null)
                _report.Bands.Add(_pageFooterBand);
            if (_topMarginBand != null)
                _report.Bands.Add(_topMarginBand);
            if (_bottomMarginBand != null)
                _report.Bands.Add(_bottomMarginBand);

            _report.BeforePrint += RipartoConsuntivo_BeforePrint;

            if(!_isSubreport && _addLogo)
                addLogo();
            if (!_isSubreport && _addPageNumberFooter)
                addFooter();
        }
Exemplo n.º 26
0
        private void InitializeComponent()
        {
            XRSummary xrSummary1 = new XRSummary();
            XRSummary xrSummary2 = new XRSummary();
            Detail = new DetailBand();
            xrLabel21 = new XRLabel();
            xrLabel20 = new XRLabel();
            xrLabel19 = new XRLabel();
            xrLabel18 = new XRLabel();
            xrLabel26 = new XRLabel();
            TopMargin = new TopMarginBand();
            labelcompany = new XRLabel();
            xrLabel1 = new XRLabel();
            BottomMargin = new BottomMarginBand();
            xrLabel2 = new XRLabel();
            xrLabel3 = new XRLabel();
            xrLabel4 = new XRLabel();
            xrLabel5 = new XRLabel();
            PageHeader = new PageHeaderBand();
            xrLine2 = new XRLine();
            xrLine1 = new XRLine();
            xrLabel32 = new XRLabel();
            lbldoctor = new XRLabel();
            xrLabel23 = new XRLabel();
            xrLabel22 = new XRLabel();
            xrLabel15 = new XRLabel();
            xrLabel29 = new XRLabel();
            xrLabel30 = new XRLabel();
            xrLabel31 = new XRLabel();
            xrLabel16 = new XRLabel();
            xrLabel17 = new XRLabel();
            xrLabel10 = new XRLabel();
            xrLabel9 = new XRLabel();
            xrLabel6 = new XRLabel();
            xrLabel8 = new XRLabel();
            xrLabel7 = new XRLabel();
            ReportFooter = new ReportFooterBand();
            xrLine3 = new XRLine();
            xrLabel34 = new XRLabel();
            xrLabel33 = new XRLabel();
            patdisc = new XRLabel();
            compdiscamt = new XRLabel();
            xrLabel25 = new XRLabel();
            lbldiscount = new XRLabel();
            xrLabel13 = new XRLabel();
            lblpatshare = new XRLabel();
            xrLabel11 = new XRLabel();
            xrLabel24 = new XRLabel();
            xrCrossBandBox1 = new XRCrossBandBox();
            ((ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            Detail.Controls.AddRange(new XRControl[] {
            xrLabel21,
            xrLabel20,
            xrLabel19,
            xrLabel18,
            xrLabel26});
            Detail.HeightF = 20F;
            Detail.KeepTogether = true;
            Detail.Name = "Detail";
            Detail.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            Detail.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel21
            // 
            xrLabel21.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.LINETOTAL", "{0:n2}")});
            xrLabel21.LocationFloat = new PointFloat(625.0834F, 0F);
            xrLabel21.Name = "xrLabel21";
            xrLabel21.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel21.SizeF = new SizeF(72.91669F, 20F);
            xrLabel21.StylePriority.UseTextAlignment = false;
            xrLabel21.Text = "xrLabel21";
            xrLabel21.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel20
            // 
            xrLabel20.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.INVRATE", "{0:n2}")});
            xrLabel20.LocationFloat = new PointFloat(566.1246F, 0F);
            xrLabel20.Name = "xrLabel20";
            xrLabel20.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel20.SizeF = new SizeF(54.16656F, 20F);
            xrLabel20.StylePriority.UseTextAlignment = false;
            xrLabel20.Text = "xrLabel20";
            xrLabel20.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel19
            // 
            xrLabel19.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.QTY", "{0:#,#}")});
            xrLabel19.LocationFloat = new PointFloat(515.2913F, 0F);
            xrLabel19.Name = "xrLabel19";
            xrLabel19.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel19.SizeF = new SizeF(46.62515F, 20F);
            xrLabel19.StylePriority.UseTextAlignment = false;
            xrLabel19.Text = "[SalesInvList.QTY]";
            xrLabel19.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel18
            // 
            xrLabel18.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.ITEMNAME")});
            xrLabel18.LocationFloat = new PointFloat(31.54163F, 0F);
            xrLabel18.Name = "xrLabel18";
            xrLabel18.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel18.SizeF = new SizeF(470.0833F, 20F);
            xrLabel18.StylePriority.UseTextAlignment = false;
            xrLabel18.Text = "xrLabel18";
            xrLabel18.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel26
            // 
            xrLabel26.LocationFloat = new PointFloat(2.083333F, 0F);
            xrLabel26.Name = "xrLabel26";
            xrLabel26.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel26.SizeF = new SizeF(26.33333F, 20F);
            xrLabel26.StylePriority.UseTextAlignment = false;
            xrSummary1.Func = SummaryFunc.RecordNumber;
            xrSummary1.Running = SummaryRunning.Report;
            xrLabel26.Summary = xrSummary1;
            xrLabel26.Text = "xrLabel26";
            xrLabel26.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // TopMargin
            // 
            TopMargin.Controls.AddRange(new XRControl[] {
            labelcompany,
            xrLabel1});
            TopMargin.HeightF = 69F;
            TopMargin.Name = "TopMargin";
            TopMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            TopMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // labelcompany
            // 
            labelcompany.Font = new Font("Tahoma", 12F, FontStyle.Bold);
            labelcompany.LocationFloat = new PointFloat(85.41666F, 15.25F);
            labelcompany.Name = "labelcompany";
            labelcompany.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            labelcompany.SizeF = new SizeF(534.8745F, 25.5F);
            labelcompany.StylePriority.UseFont = false;
            labelcompany.StylePriority.UseTextAlignment = false;
            labelcompany.Text = "labelcompany";
            labelcompany.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel1
            // 
            xrLabel1.Borders = ((BorderSide.Left | BorderSide.Top) 
                                | BorderSide.Right) 
                               | BorderSide.Bottom;
            xrLabel1.Font = new Font("Tahoma", 9.75F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel1.LocationFloat = new PointFloat(256.1667F, 43.75F);
            xrLabel1.Name = "xrLabel1";
            xrLabel1.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel1.SizeF = new SizeF(182.7082F, 23.75F);
            xrLabel1.StylePriority.UseBorders = false;
            xrLabel1.StylePriority.UseFont = false;
            xrLabel1.StylePriority.UseTextAlignment = false;
            xrLabel1.Text = "Sales Invoice";
            xrLabel1.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // BottomMargin
            // 
            BottomMargin.HeightF = 25F;
            BottomMargin.Name = "BottomMargin";
            BottomMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            BottomMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel2
            // 
            xrLabel2.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel2.LocationFloat = new PointFloat(455.6246F, 6F);
            xrLabel2.Name = "xrLabel2";
            xrLabel2.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel2.SizeF = new SizeF(87.5F, 18F);
            xrLabel2.StylePriority.UseFont = false;
            xrLabel2.StylePriority.UseTextAlignment = false;
            xrLabel2.Text = "Invoice No. :";
            xrLabel2.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel3
            // 
            xrLabel3.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel3.LocationFloat = new PointFloat(455.6246F, 30.00002F);
            xrLabel3.Name = "xrLabel3";
            xrLabel3.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel3.SizeF = new SizeF(87.5F, 18F);
            xrLabel3.StylePriority.UseFont = false;
            xrLabel3.StylePriority.UseTextAlignment = false;
            xrLabel3.Text = "Date :";
            xrLabel3.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel4
            // 
            xrLabel4.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel4.LocationFloat = new PointFloat(5.124998F, 6.00001F);
            xrLabel4.Name = "xrLabel4";
            xrLabel4.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel4.SizeF = new SizeF(129.4583F, 18F);
            xrLabel4.StylePriority.UseFont = false;
            xrLabel4.StylePriority.UseTextAlignment = false;
            xrLabel4.Text = "Customer name :";
            xrLabel4.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel5
            // 
            xrLabel5.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel5.LocationFloat = new PointFloat(5.000003F, 30.00002F);
            xrLabel5.Name = "xrLabel5";
            xrLabel5.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel5.SizeF = new SizeF(129.5833F, 18F);
            xrLabel5.StylePriority.UseFont = false;
            xrLabel5.StylePriority.UseTextAlignment = false;
            xrLabel5.Text = "Doctor :";
            xrLabel5.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // PageHeader
            // 
            PageHeader.Controls.AddRange(new XRControl[] {
            xrLine2,
            xrLine1,
            xrLabel32,
            lbldoctor,
            xrLabel23,
            xrLabel22,
            xrLabel4,
            xrLabel15,
            xrLabel5,
            xrLabel29,
            xrLabel30,
            xrLabel31,
            xrLabel3,
            xrLabel2,
            xrLabel16,
            xrLabel17,
            xrLabel10,
            xrLabel9,
            xrLabel6,
            xrLabel8,
            xrLabel7});
            PageHeader.HeightF = 112.4167F;
            PageHeader.Name = "PageHeader";
            // 
            // xrLine2
            // 
            xrLine2.LocationFloat = new PointFloat(3.208333F, 110.4167F);
            xrLine2.Name = "xrLine2";
            xrLine2.SizeF = new SizeF(700.6667F, 2F);
            // 
            // xrLine1
            // 
            xrLine1.LocationFloat = new PointFloat(3.333333F, 86.54166F);
            xrLine1.Name = "xrLine1";
            xrLine1.SizeF = new SizeF(699.3334F, 2F);
            // 
            // xrLabel32
            // 
            xrLabel32.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDNO")});
            xrLabel32.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel32.LocationFloat = new PointFloat(543.1246F, 54.00003F);
            xrLabel32.Name = "xrLabel32";
            xrLabel32.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel32.SizeF = new SizeF(154.9586F, 18F);
            xrLabel32.StylePriority.UseFont = false;
            xrLabel32.StylePriority.UseTextAlignment = false;
            xrLabel32.Text = "xrLabel32";
            xrLabel32.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lbldoctor
            // 
            lbldoctor.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            lbldoctor.LocationFloat = new PointFloat(134.5833F, 30F);
            lbldoctor.Name = "lbldoctor";
            lbldoctor.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldoctor.SizeF = new SizeF(291.6667F, 18F);
            lbldoctor.StylePriority.UseFont = false;
            lbldoctor.StylePriority.UseTextAlignment = false;
            lbldoctor.Text = "lbldoctorname";
            lbldoctor.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel23
            // 
            xrLabel23.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.GRADE")});
            xrLabel23.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel23.LocationFloat = new PointFloat(327.3748F, 54.00003F);
            xrLabel23.Name = "xrLabel23";
            xrLabel23.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel23.SizeF = new SizeF(122.2498F, 18F);
            xrLabel23.StylePriority.UseFont = false;
            xrLabel23.StylePriority.UseTextAlignment = false;
            xrLabel23.Text = "xrLabel23";
            xrLabel23.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel23.Visible = false;
            // 
            // xrLabel22
            // 
            xrLabel22.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDID")});
            xrLabel22.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel22.LocationFloat = new PointFloat(134.5833F, 54.00001F);
            xrLabel22.Name = "xrLabel22";
            xrLabel22.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel22.SizeF = new SizeF(142.9167F, 18F);
            xrLabel22.StylePriority.UseFont = false;
            xrLabel22.StylePriority.UseTextAlignment = false;
            xrLabel22.Text = "xrLabel22";
            xrLabel22.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel15
            // 
            xrLabel15.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTNAME")});
            xrLabel15.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel15.LocationFloat = new PointFloat(134.5833F, 5.999994F);
            xrLabel15.Name = "xrLabel15";
            xrLabel15.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel15.SizeF = new SizeF(291.6667F, 18F);
            xrLabel15.StylePriority.UseFont = false;
            xrLabel15.StylePriority.UseTextAlignment = false;
            xrLabel15.Text = "xrLabel15";
            xrLabel15.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel29
            // 
            xrLabel29.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel29.LocationFloat = new PointFloat(455.6246F, 54.00003F);
            xrLabel29.Name = "xrLabel29";
            xrLabel29.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel29.SizeF = new SizeF(87.5F, 18F);
            xrLabel29.StylePriority.UseFont = false;
            xrLabel29.StylePriority.UseTextAlignment = false;
            xrLabel29.Text = "Policy No. :";
            xrLabel29.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel30
            // 
            xrLabel30.Font = new Font("Tahoma", 9.75F);
            xrLabel30.LocationFloat = new PointFloat(280.5832F, 54.00003F);
            xrLabel30.Name = "xrLabel30";
            xrLabel30.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel30.SizeF = new SizeF(46.79153F, 18F);
            xrLabel30.StylePriority.UseFont = false;
            xrLabel30.StylePriority.UseTextAlignment = false;
            xrLabel30.Text = "Class :";
            xrLabel30.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel30.Visible = false;
            // 
            // xrLabel31
            // 
            xrLabel31.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel31.LocationFloat = new PointFloat(4.166667F, 54.00003F);
            xrLabel31.Name = "xrLabel31";
            xrLabel31.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel31.SizeF = new SizeF(130.4166F, 18F);
            xrLabel31.StylePriority.UseFont = false;
            xrLabel31.StylePriority.UseTextAlignment = false;
            xrLabel31.Text = "Member Id / File No. :";
            xrLabel31.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel16
            // 
            xrLabel16.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.SINVNO")});
            xrLabel16.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel16.LocationFloat = new PointFloat(543.1246F, 6.00001F);
            xrLabel16.Name = "xrLabel16";
            xrLabel16.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel16.SizeF = new SizeF(154.8755F, 18F);
            xrLabel16.StylePriority.UseFont = false;
            xrLabel16.StylePriority.UseTextAlignment = false;
            xrLabel16.Text = "xrLabel16";
            xrLabel16.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel17
            // 
            xrLabel17.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.TRANDATE")});
            xrLabel17.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel17.LocationFloat = new PointFloat(543.1246F, 30.00002F);
            xrLabel17.Name = "xrLabel17";
            xrLabel17.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel17.SizeF = new SizeF(153.8754F, 18F);
            xrLabel17.StylePriority.UseFont = false;
            xrLabel17.StylePriority.UseTextAlignment = false;
            xrLabel17.Text = "xrLabel17";
            xrLabel17.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel10
            // 
            xrLabel10.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel10.LocationFloat = new PointFloat(625.0833F, 88.54166F);
            xrLabel10.Name = "xrLabel10";
            xrLabel10.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel10.SizeF = new SizeF(72.91669F, 19.79166F);
            xrLabel10.StylePriority.UseFont = false;
            xrLabel10.StylePriority.UseTextAlignment = false;
            xrLabel10.Text = "Total";
            xrLabel10.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel9
            // 
            xrLabel9.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel9.LocationFloat = new PointFloat(568.1246F, 88.54166F);
            xrLabel9.Name = "xrLabel9";
            xrLabel9.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel9.SizeF = new SizeF(52.16663F, 19.79166F);
            xrLabel9.StylePriority.UseFont = false;
            xrLabel9.StylePriority.UseTextAlignment = false;
            xrLabel9.Text = "Price";
            xrLabel9.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel6
            // 
            xrLabel6.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel6.LocationFloat = new PointFloat(4.083333F, 88.62505F);
            xrLabel6.Name = "xrLabel6";
            xrLabel6.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel6.SizeF = new SizeF(26.33333F, 19.79166F);
            xrLabel6.StylePriority.UseFont = false;
            xrLabel6.StylePriority.UseTextAlignment = false;
            xrLabel6.Text = "S #";
            xrLabel6.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel8
            // 
            xrLabel8.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel8.LocationFloat = new PointFloat(518.1666F, 88.54166F);
            xrLabel8.Name = "xrLabel8";
            xrLabel8.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel8.SizeF = new SizeF(43.75009F, 19.79166F);
            xrLabel8.StylePriority.UseFont = false;
            xrLabel8.StylePriority.UseTextAlignment = false;
            xrLabel8.Text = "Qty";
            xrLabel8.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel7
            // 
            xrLabel7.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel7.LocationFloat = new PointFloat(31.54163F, 88.62505F);
            xrLabel7.Name = "xrLabel7";
            xrLabel7.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel7.SizeF = new SizeF(470.0833F, 19.79167F);
            xrLabel7.StylePriority.UseFont = false;
            xrLabel7.StylePriority.UseTextAlignment = false;
            xrLabel7.Text = "Item name";
            xrLabel7.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // ReportFooter
            // 
            ReportFooter.Controls.AddRange(new XRControl[] {
            xrLine3,
            xrLabel34,
            xrLabel33,
            patdisc,
            compdiscamt,
            xrLabel25,
            lbldiscount,
            xrLabel13,
            lblpatshare,
            xrLabel11,
            xrLabel24});
            ReportFooter.Font = new Font("Tahoma", 9F);
            ReportFooter.HeightF = 81.25003F;
            ReportFooter.KeepTogether = true;
            ReportFooter.Name = "ReportFooter";
            ReportFooter.StylePriority.UseFont = false;
            // 
            // xrLine3
            // 
            xrLine3.LocationFloat = new PointFloat(3.25F, 0F);
            xrLine3.Name = "xrLine3";
            xrLine3.SizeF = new SizeF(699.5833F, 2.083333F);
            // 
            // xrLabel34
            // 
            xrLabel34.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTOMERFIXDISC", "{0:#.00}")});
            xrLabel34.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel34.LocationFloat = new PointFloat(451.5833F, 20.83333F);
            xrLabel34.Name = "xrLabel34";
            xrLabel34.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel34.SizeF = new SizeF(60.25003F, 18F);
            xrLabel34.StylePriority.UseFont = false;
            xrLabel34.StylePriority.UseTextAlignment = false;
            xrLabel34.Text = "xrLabel34";
            xrLabel34.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel33
            // 
            xrLabel33.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDDISC", "{0:n2}")});
            xrLabel33.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel33.LocationFloat = new PointFloat(420.9164F, 41.41665F);
            xrLabel33.Name = "xrLabel33";
            xrLabel33.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel33.SizeF = new SizeF(60.25003F, 18F);
            xrLabel33.StylePriority.UseFont = false;
            xrLabel33.StylePriority.UseTextAlignment = false;
            xrLabel33.Text = "xrLabel33";
            xrLabel33.TextAlignment = TextAlignment.MiddleRight;
            // 
            // patdisc
            // 
            patdisc.LocationFloat = new PointFloat(598.75F, 41.62499F);
            patdisc.Name = "patdisc";
            patdisc.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            patdisc.SizeF = new SizeF(95.37476F, 17.79165F);
            patdisc.StylePriority.UseTextAlignment = false;
            patdisc.TextAlignment = TextAlignment.MiddleRight;
            // 
            // compdiscamt
            // 
            compdiscamt.LocationFloat = new PointFloat(598.75F, 20.62499F);
            compdiscamt.Name = "compdiscamt";
            compdiscamt.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            compdiscamt.SizeF = new SizeF(96.24994F, 21F);
            compdiscamt.StylePriority.UseTextAlignment = false;
            compdiscamt.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel25
            // 
            xrLabel25.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.NETAMT", "{0:n2}")});
            xrLabel25.LocationFloat = new PointFloat(598.7499F, 0F);
            xrLabel25.Name = "xrLabel25";
            xrLabel25.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel25.SizeF = new SizeF(98.24994F, 20F);
            xrLabel25.StylePriority.UseTextAlignment = false;
            xrLabel25.Text = "xrLabel25";
            xrLabel25.TextAlignment = TextAlignment.MiddleRight;
            // 
            // lbldiscount
            // 
            lbldiscount.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lbldiscount.LocationFloat = new PointFloat(511.8333F, 20.83333F);
            lbldiscount.Name = "lbldiscount";
            lbldiscount.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldiscount.SizeF = new SizeF(86.91678F, 21F);
            lbldiscount.StylePriority.UseFont = false;
            lbldiscount.StylePriority.UseTextAlignment = false;
            lbldiscount.Text = "% Discount : ";
            lbldiscount.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel13
            // 
            xrLabel13.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel13.LocationFloat = new PointFloat(509.8332F, 60.41667F);
            xrLabel13.Name = "xrLabel13";
            xrLabel13.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel13.SizeF = new SizeF(87.91675F, 18.79166F);
            xrLabel13.StylePriority.UseFont = false;
            xrLabel13.StylePriority.UseTextAlignment = false;
            xrLabel13.Text = "Net Amount :";
            xrLabel13.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lblpatshare
            // 
            lblpatshare.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lblpatshare.LocationFloat = new PointFloat(481.9999F, 40.625F);
            lblpatshare.Name = "lblpatshare";
            lblpatshare.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lblpatshare.SizeF = new SizeF(116.7501F, 19.79167F);
            lblpatshare.StylePriority.UseFont = false;
            lblpatshare.StylePriority.UseTextAlignment = false;
            lblpatshare.Text = "% Patient Share :";
            lblpatshare.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel11
            // 
            xrLabel11.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel11.LocationFloat = new PointFloat(528.5831F, 0.2083461F);
            xrLabel11.Name = "xrLabel11";
            xrLabel11.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel11.SizeF = new SizeF(70.16687F, 19.79166F);
            xrLabel11.StylePriority.UseFont = false;
            xrLabel11.StylePriority.UseTextAlignment = false;
            xrLabel11.Text = "Sub total :";
            xrLabel11.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel24
            // 
            xrLabel24.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CREDITAMT", "{0:#.00}")});
            xrLabel24.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel24.LocationFloat = new PointFloat(598.7499F, 59.54167F);
            xrLabel24.Name = "xrLabel24";
            xrLabel24.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel24.SizeF = new SizeF(94.24994F, 19.625F);
            xrLabel24.StylePriority.UseFont = false;
            xrLabel24.StylePriority.UseTextAlignment = false;
            xrSummary2.FormatString = "{0:n2}";
            xrLabel24.Summary = xrSummary2;
            xrLabel24.Text = "xrLabel24";
            xrLabel24.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrCrossBandBox1
            // 
            xrCrossBandBox1.BorderWidth = 1F;
            xrCrossBandBox1.EndBand = PageHeader;
            xrCrossBandBox1.EndPointFloat = new PointFloat(2.083333F, 82.29166F);
            xrCrossBandBox1.LocationFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.Name = "xrCrossBandBox1";
            xrCrossBandBox1.StartBand = PageHeader;
            xrCrossBandBox1.StartPointFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.WidthF = 704.1667F;
            // 
            // RptSalesInsurance
            // 
            Bands.AddRange(new Band[] {
            Detail,
            TopMargin,
            BottomMargin,
            PageHeader,
            ReportFooter});
            CrossBandControls.AddRange(new XRCrossBandControl[] {
            xrCrossBandBox1});
            Margins = new Margins(54, 66, 69, 25);
            PageHeight = 1169;
            PageWidth = 827;
            PaperKind = PaperKind.A4;
            ShowPrintMarginsWarning = false;
            SnapToGrid = false;
            Version = "14.1";
            ((ISupportInitialize)(this)).EndInit();

        }
Exemplo n.º 27
0
 private void InitializeComponent()
 {
     string resourceFileName = "BaseReport.resx";
         this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
         this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // topMarginBand1
         //
         this.topMarginBand1.HeightF = 0F;
         this.topMarginBand1.Name = "topMarginBand1";
         //
         // bottomMarginBand1
         //
         this.bottomMarginBand1.HeightF = 94.79166F;
         this.bottomMarginBand1.Name = "bottomMarginBand1";
         //
         // detailBand1
         //
         this.detailBand1.HeightF = 100F;
         this.detailBand1.Name = "detailBand1";
         //
         // BaseReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.bottomMarginBand1,
         this.detailBand1});
         this.Margins = new System.Drawing.Printing.Margins(100, 100, 0, 95);
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 28
0
 private void InitializeComponent()
 {
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XtraReportDefault3
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.topMarginBand1,
     this.detailBand1,
     this.bottomMarginBand1});
     this.Version = "11.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_ContractNumber   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_ContractType     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_Job              = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_ContractDate     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_EffectiveDate    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_ContractEndDate  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrt_ContractStatus   = 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.lblDuration          = new DevExpress.XtraReports.UI.XRLabel();
     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.xrLabel1             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrt_Seniority        = new DevExpress.XtraReports.UI.XRLabel();
     this.xr_ParticipationDate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrl_Occupation       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrl_Position         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrl_DepartmentName   = new DevExpress.XtraReports.UI.XRLabel();
     this.xrl_FullName         = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7         = 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.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12        = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter         = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblSignedByName      = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReviewedByName    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportDate        = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReviewedByTitle   = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
     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(1044.958F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrt_ContractNumber,
         this.xrt_ContractType,
         this.xrt_Job,
         this.xrt_ContractDate,
         this.xrt_EffectiveDate,
         this.xrt_ContractEndDate,
         this.xrt_ContractStatus
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Name = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.096422348839708683D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrt_ContractNumber
     //
     this.xrt_ContractNumber.Name                           = "xrt_ContractNumber";
     this.xrt_ContractNumber.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrt_ContractNumber.SnapLineMargin                 = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrt_ContractNumber.StylePriority.UsePadding       = false;
     this.xrt_ContractNumber.StylePriority.UseTextAlignment = false;
     this.xrt_ContractNumber.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_ContractNumber.Weight                         = 0.2954840395505004D;
     //
     // xrt_ContractType
     //
     this.xrt_ContractType.Name    = "xrt_ContractType";
     this.xrt_ContractType.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrt_ContractType.StylePriority.UsePadding       = false;
     this.xrt_ContractType.StylePriority.UseTextAlignment = false;
     this.xrt_ContractType.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_ContractType.Weight        = 0.6254364431133298D;
     //
     // xrt_Job
     //
     this.xrt_Job.Name    = "xrt_Job";
     this.xrt_Job.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrt_Job.StylePriority.UsePadding       = false;
     this.xrt_Job.StylePriority.UseTextAlignment = false;
     this.xrt_Job.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_Job.Weight        = 0.456369945373317D;
     //
     // xrt_ContractDate
     //
     this.xrt_ContractDate.Name = "xrt_ContractDate";
     this.xrt_ContractDate.StylePriority.UseTextAlignment = false;
     this.xrt_ContractDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrt_ContractDate.Weight        = 0.24094738800203636D;
     //
     // xrt_EffectiveDate
     //
     this.xrt_EffectiveDate.Name = "xrt_EffectiveDate";
     this.xrt_EffectiveDate.StylePriority.UseTextAlignment = false;
     this.xrt_EffectiveDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrt_EffectiveDate.Weight        = 0.24093636913793445D;
     //
     // xrt_ContractEndDate
     //
     this.xrt_ContractEndDate.Name = "xrt_ContractEndDate";
     this.xrt_ContractEndDate.StylePriority.UseTextAlignment = false;
     this.xrt_ContractEndDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrt_ContractEndDate.Weight        = 0.23548234874855148D;
     //
     // xrt_ContractStatus
     //
     this.xrt_ContractStatus.Name    = "xrt_ContractStatus";
     this.xrt_ContractStatus.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrt_ContractStatus.StylePriority.UsePadding       = false;
     this.xrt_ContractStatus.StylePriority.UseTextAlignment = false;
     this.xrt_ContractStatus.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_ContractStatus.Weight        = 0.54441424295042706D;
     //
     // 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       = 64F;
     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.lblDuration,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel1,
         this.xrt_Seniority,
         this.xr_ParticipationDate,
         this.xrl_Occupation,
         this.xrl_Position,
         this.xrl_DepartmentName,
         this.xrl_FullName,
         this.lblReportTitle,
         this.xrLabel2
     });
     this.ReportHeader.HeightF = 182.4167F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(2.042039F, 59.04166F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày {0} đến ngày {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(672.4592F, 133.0001F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(156.1577F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "Thâm niên :";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(672.4593F, 110.0001F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(156.1578F, 22.99998F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Ngày tuyển chính thức :";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(316.4172F, 133.0001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(114.5832F, 23.00002F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Vị trí công việc :";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(316.4172F, 110F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(114.5832F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Phòng ban :";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(2.042039F, 110F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(80.20834F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Họ tên : ";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrt_Seniority
     //
     this.xrt_Seniority.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrt_Seniority.LocationFloat                  = new DevExpress.Utils.PointFloat(828.6171F, 133.0001F);
     this.xrt_Seniority.Name                           = "xrt_Seniority";
     this.xrt_Seniority.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrt_Seniority.SizeF                          = new System.Drawing.SizeF(218.3829F, 23F);
     this.xrt_Seniority.StylePriority.UseFont          = false;
     this.xrt_Seniority.StylePriority.UseTextAlignment = false;
     this.xrt_Seniority.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xr_ParticipationDate
     //
     this.xr_ParticipationDate.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xr_ParticipationDate.LocationFloat                  = new DevExpress.Utils.PointFloat(828.6171F, 110F);
     this.xr_ParticipationDate.Name                           = "xr_ParticipationDate";
     this.xr_ParticipationDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xr_ParticipationDate.SizeF                          = new System.Drawing.SizeF(218.3829F, 23F);
     this.xr_ParticipationDate.StylePriority.UseFont          = false;
     this.xr_ParticipationDate.StylePriority.UseTextAlignment = false;
     this.xr_ParticipationDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrl_Occupation
     //
     this.xrl_Occupation.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrl_Occupation.LocationFloat                  = new DevExpress.Utils.PointFloat(431.0005F, 133.0001F);
     this.xrl_Occupation.Name                           = "xrl_Occupation";
     this.xrl_Occupation.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrl_Occupation.SizeF                          = new System.Drawing.SizeF(241.4586F, 23F);
     this.xrl_Occupation.StylePriority.UseFont          = false;
     this.xrl_Occupation.StylePriority.UseTextAlignment = false;
     this.xrl_Occupation.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrl_Position
     //
     this.xrl_Position.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrl_Position.LocationFloat                  = new DevExpress.Utils.PointFloat(82.25037F, 133.0001F);
     this.xrl_Position.Name                           = "xrl_Position";
     this.xrl_Position.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrl_Position.SizeF                          = new System.Drawing.SizeF(234.1669F, 23F);
     this.xrl_Position.StylePriority.UseFont          = false;
     this.xrl_Position.StylePriority.UseTextAlignment = false;
     this.xrl_Position.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrl_DepartmentName
     //
     this.xrl_DepartmentName.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrl_DepartmentName.LocationFloat                  = new DevExpress.Utils.PointFloat(431.0005F, 110F);
     this.xrl_DepartmentName.Name                           = "xrl_DepartmentName";
     this.xrl_DepartmentName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrl_DepartmentName.SizeF                          = new System.Drawing.SizeF(241.4586F, 23F);
     this.xrl_DepartmentName.StylePriority.UseFont          = false;
     this.xrl_DepartmentName.StylePriority.UseTextAlignment = false;
     this.xrl_DepartmentName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrl_FullName
     //
     this.xrl_FullName.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrl_FullName.LocationFloat                  = new DevExpress.Utils.PointFloat(82.25037F, 110F);
     this.xrl_FullName.Name                           = "xrl_FullName";
     this.xrl_FullName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrl_FullName.SizeF                          = new System.Drawing.SizeF(234.1669F, 23F);
     this.xrl_FullName.StylePriority.UseFont          = false;
     this.xrl_FullName.StylePriority.UseTextAlignment = false;
     this.xrl_FullName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(2.042007F, 36.04167F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "BÁO CÁO DANH SÁCH HỢP ĐỒNG CỦA NHÂN VIÊN";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 11F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.042039F, 133.0001F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(80.20834F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Chức vụ : ";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 35F;
     this.PageHeader.Name    = "PageHeader";
     //
     // 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.Font          = new System.Drawing.Font("Times New Roman", 10F, 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(1044.958F, 34.625F);
     this.xrTable1.StylePriority.UseBorders       = 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.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell3,
         this.xrTableCell12
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "STT";
     this.xrTableCell4.Weight = 0.096422355212466268D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "Số hợp đồng";
     this.xrTableCell1.Weight = 0.2954839803715959D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Loại hợp đồng";
     this.xrTableCell7.Weight = 0.62543627430773951D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Công việc";
     this.xrTableCell2.Weight = 0.45637012307178776D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Ngày ký";
     this.xrTableCell5.Weight = 0.24094738231432739D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Ngày hiệu lực";
     this.xrTableCell6.Weight = 0.24093636541416669D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Ngày hết hạn";
     this.xrTableCell3.Weight = 0.23548234502478369D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Tình trạng hợp đồng";
     this.xrTableCell12.Weight = 0.544414299998938D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblSignedByName,
         this.lblReviewedByName,
         this.lblCreatedByName,
         this.lblReportDate,
         this.lblCreatedByTitle,
         this.lblSignedByTitle,
         this.lblReviewedByTitle
     });
     this.ReportFooter.HeightF = 175F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(775F, 137.5F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(269.9579F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblReviewedByName
     //
     this.lblReviewedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReviewedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(362.5F, 137.5F);
     this.lblReviewedByName.Name                           = "lblReviewedByName";
     this.lblReviewedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReviewedByName.SizeF                          = new System.Drawing.SizeF(289.3651F, 23F);
     this.lblReviewedByName.StylePriority.UseFont          = false;
     this.lblReviewedByName.StylePriority.UseTextAlignment = false;
     this.lblReviewedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 137.5F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(289.3651F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(775F, 12.5F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(269.9579F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0} tháng {1} năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 37.5F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(291.366F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "NGƯỜI LẬP";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(775F, 37.5F);
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(269.9581F, 23F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "GIÁM ĐỐC";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblReviewedByTitle
     //
     this.lblReviewedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReviewedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(362.5F, 37.5F);
     this.lblReviewedByTitle.Name                           = "lblReviewedByTitle";
     this.lblReviewedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReviewedByTitle.SizeF                          = new System.Drawing.SizeF(291.366F, 23F);
     this.lblReviewedByTitle.StylePriority.UseFont          = false;
     this.lblReviewedByTitle.StylePriority.UseTextAlignment = false;
     this.lblReviewedByTitle.Text                           = "PHÒNG TCHC";
     this.lblReviewedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // rpHRM_ContractsOfEmployee
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader,
         this.ReportFooter
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(58, 64, 50, 64);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 30
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource3 = new System.Windows.Forms.BindingSource(this.components);
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel2,
     this.xrLabel1});
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // bindingSource3
     //
     this.bindingSource3.DataSource = typeof(anyproject.Form1.Taxi);
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType")});
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 47.91667F);
     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";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType", "Заказанная машина:")});
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 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(100F, 23F);
     this.xrLabel2.Text = "xrLabel1";
     //
     // TaxiReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.topMarginBand1,
     this.detailBand1,
     this.bottomMarginBand1});
     this.DataSource = this.bindingSource3;
     this.Version = "13.2";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(rptOrders));
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = 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.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     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.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.objectDataSource2 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 25F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 25F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // xrTable1
     //
     this.xrTable1.Font          = new System.Drawing.Font("Calibri", 9.75F);
     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(800F, 25F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrderedDate]")
     });
     this.xrTableCell7.Multiline        = true;
     this.xrTableCell7.Name             = "xrTableCell7";
     this.xrTableCell7.Text             = "Ordered Date";
     this.xrTableCell7.TextFormatString = "{0:MM/dd/yy}";
     this.xrTableCell7.Weight           = 0.32172849890067212D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrderNumber]")
     });
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Text      = "Order Number";
     this.xrTableCell8.Weight    = 0.35961926693942908D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Carts].[Products].[Name]")
     });
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.Text      = "Product Name";
     this.xrTableCell9.Weight    = 0.624267512841469D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Carts].[Users].[FullName]")
     });
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Text      = "Customer";
     this.xrTableCell10.Weight    = 0.6165526599986646D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Carts].[Amount]")
     });
     this.xrTableCell11.Multiline = true;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text             = "Total Amount";
     this.xrTableCell11.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.TextFormatString = "{0:0.00}";
     this.xrTableCell11.Weight           = 0.38129912568822921D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Status]")
     });
     this.xrTableCell12.Multiline = true;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "Status";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight        = 0.65903281093557209D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1,
         this.xrPictureBox1
     });
     this.ReportHeader.HeightF = 77.66668F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Calibri", 16F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 38.83334F);
     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(800F, 38.83334F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Preloved Order Reports [Carts.Products.Users.FullName]";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 28F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 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(800F, 38.83334F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Nueva Vizcaya State University";
     this.xrLabel1.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(0F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(115F, 77.66668F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable2
     //
     this.xrTable2.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     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(800F, 25F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Text      = "Ordered Date";
     this.xrTableCell4.Weight    = 0.32172849890067212D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Text      = "Order Number";
     this.xrTableCell5.Weight    = 0.35961926693942908D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Text      = "Product Name";
     this.xrTableCell6.Weight    = 0.624267512841469D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Text      = "Customer";
     this.xrTableCell1.Weight    = 0.6165526599986646D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Total Amount";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell2.Weight        = 0.38129912568822921D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Status";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell3.Weight        = 0.65903281093557209D;
     //
     // objectDataSource2
     //
     this.objectDataSource2.DataSource = typeof(Models.Orders);
     this.objectDataSource2.Name       = "objectDataSource2";
     //
     // rptOrders
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.ReportHeader,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource2
     });
     this.DataSource    = this.objectDataSource2;
     this.Font          = new System.Drawing.Font("Arial", 9.75F);
     this.Margins       = new System.Drawing.Printing.Margins(25, 25, 25, 25);
     this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.Version       = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 32
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();
        }
Exemplo n.º 33
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.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEmployeeCode   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellFullName       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellPosition       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDepartment     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDecisionNumber = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDecisionDate   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellSeniority      = 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.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.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuration          = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter         = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblCreatedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByName      = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable3             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrt_GroupDepartment  = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblReportDate        = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | 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(1146F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrCellEmployeeCode,
         this.xrCellFullName,
         this.xrCellPosition,
         this.xrCellDepartment,
         this.xrCellDecisionNumber,
         this.xrCellDecisionDate,
         this.xrCellSeniority
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellIndex.Name    = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseBorders       = false;
     this.xrCellIndex.StylePriority.UseFont          = false;
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.05702810020241271D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrCellEmployeeCode
     //
     this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
     this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
     this.xrCellEmployeeCode.StylePriority.UseFont          = false;
     this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
     this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEmployeeCode.Weight        = 0.14654721132732851D;
     //
     // xrCellFullName
     //
     this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellFullName.Name    = "xrCellFullName";
     this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellFullName.StylePriority.UseBorders       = false;
     this.xrCellFullName.StylePriority.UseFont          = false;
     this.xrCellFullName.StylePriority.UsePadding       = false;
     this.xrCellFullName.StylePriority.UseTextAlignment = false;
     this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellFullName.Weight        = 0.31341169777002409D;
     //
     // xrCellPosition
     //
     this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellPosition.Name    = "xrCellPosition";
     this.xrCellPosition.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellPosition.StylePriority.UseBorders       = false;
     this.xrCellPosition.StylePriority.UseFont          = false;
     this.xrCellPosition.StylePriority.UsePadding       = false;
     this.xrCellPosition.StylePriority.UseTextAlignment = false;
     this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellPosition.Weight        = 0.25551551948788509D;
     //
     // xrCellDepartment
     //
     this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDepartment.Name    = "xrCellDepartment";
     this.xrCellDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellDepartment.StylePriority.UseBorders       = false;
     this.xrCellDepartment.StylePriority.UseFont          = false;
     this.xrCellDepartment.StylePriority.UsePadding       = false;
     this.xrCellDepartment.StylePriority.UseTextAlignment = false;
     this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDepartment.Weight        = 0.28887965140185D;
     //
     // xrCellDecisionNumber
     //
     this.xrCellDecisionNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDecisionNumber.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDecisionNumber.Name    = "xrCellDecisionNumber";
     this.xrCellDecisionNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellDecisionNumber.StylePriority.UseBorders       = false;
     this.xrCellDecisionNumber.StylePriority.UseFont          = false;
     this.xrCellDecisionNumber.StylePriority.UsePadding       = false;
     this.xrCellDecisionNumber.StylePriority.UseTextAlignment = false;
     this.xrCellDecisionNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDecisionNumber.Weight        = 0.22890291865417364D;
     //
     // xrCellDecisionDate
     //
     this.xrCellDecisionDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDecisionDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDecisionDate.Name    = "xrCellDecisionDate";
     this.xrCellDecisionDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellDecisionDate.StylePriority.UseBorders       = false;
     this.xrCellDecisionDate.StylePriority.UseFont          = false;
     this.xrCellDecisionDate.StylePriority.UsePadding       = false;
     this.xrCellDecisionDate.StylePriority.UseTextAlignment = false;
     this.xrCellDecisionDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDecisionDate.Weight        = 0.15843534670754922D;
     //
     // xrCellSeniority
     //
     this.xrCellSeniority.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellSeniority.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellSeniority.Name    = "xrCellSeniority";
     this.xrCellSeniority.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellSeniority.StylePriority.UseBorders       = false;
     this.xrCellSeniority.StylePriority.UseFont          = false;
     this.xrCellSeniority.StylePriority.UsePadding       = false;
     this.xrCellSeniority.StylePriority.UseTextAlignment = false;
     this.xrCellSeniority.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellSeniority.Weight        = 0.27614528537696448D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 46F;
     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       = 61F;
     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.xrTable1
     });
     this.PageHeader.HeightF = 50F;
     this.PageHeader.Name    = "PageHeader";
     //
     // 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.0002066294F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
     this.xrTable1.StylePriority.UseBorders       = 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.xrTableCell4,
         this.xrTableCell9,
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell3,
         this.xrTableCell5
     });
     this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow1.Name    = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow1.StylePriority.UseFont          = false;
     this.xrTableRow1.StylePriority.UsePadding       = false;
     this.xrTableRow1.StylePriority.UseTextAlignment = false;
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow1.Weight        = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "STT";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.056828446194336781D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã NV";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.14603486812448346D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 0.31231602732247454D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "CHỨC VỤ";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.25462237074352834D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "PHÒNG BAN";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.28786973945276267D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "SỐ QĐ ";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.228102707088102D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "NGÀY QĐ NGHỈ HƯU";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 0.15788146895903601D;
     //
     // 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.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "THÂM NIÊN CÔNG TÁC";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 0.27518052122995984D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuration,
         this.lblReportTitle
     });
     this.ReportHeader.HeightF = 95.08333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày {0} đến ngày {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "BÁO CÁO NHÂN SỰ NGHỈ HƯU";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportDate,
         this.lblCreatedByName,
         this.lblSignedByName,
         this.lblSignedByTitle,
         this.lblCreatedByTitle
     });
     this.ReportFooter.HeightF = 226F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
     this.lblSignedByTitle.Multiline                      = true;
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "NGƯỜI LẬP\r\n";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "PHÒNG NHÂN SỰ";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable3
     //
     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.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrt_GroupDepartment
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrt_GroupDepartment
     //
     this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
     this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
     this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
     this.xrt_GroupDepartment.StylePriority.UseFont          = false;
     this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
     this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
     this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_GroupDepartment.Weight        = 2D;
     this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 40.54165F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(569.9426F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0} tháng {1} năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // rp_BusinessRetirement
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).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>
	public void InitializeComponent() {
            string resourceFileName = "OgrenciSinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.OgrenciSinifListesi.ResourceManager;
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell5 = 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.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.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
            this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            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.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
            this.cat_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.dersid = new DevExpress.XtraReports.Parameters.Parameter();
            this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "CustomSqlQuery";
            relationColumnInfo1.NestedKeyColumn = "ogr_no";
            relationColumnInfo1.ParentKeyColumn = "ogr_no";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Ogrenci";
            relationInfo1.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo2.NestedKeyColumn = "Sinav_id";
            relationColumnInfo2.ParentKeyColumn = "Sinav_id";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Sinavlar";
            relationInfo2.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo3.NestedKeyColumn = "ders_id";
            relationColumnInfo3.ParentKeyColumn = "ders_id";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "Dersler";
            relationInfo3.ParentTable = "Sinavlar";
            relationColumnInfo4.NestedKeyColumn = "derslik_id";
            relationColumnInfo4.ParentKeyColumn = "derslik_id";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "Derslik";
            relationInfo4.ParentTable = "ogr_sinav_derslik";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4});
            tableInfo1.Name = "ogr_sinav_derslik";
            columnInfo1.Name = "ogr_no";
            columnInfo2.Name = "Sinav_id";
            columnInfo3.Name = "derslik_id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3});
            tableInfo2.Name = "Ogrenci";
            columnInfo4.Name = "ogr_adi";
            columnInfo5.Name = "ogr_soyadi";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo4,
            columnInfo5});
            tableInfo3.Name = "Sinavlar";
            columnInfo6.Name = "ders_id";
            columnInfo7.Name = "tarih";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6,
            columnInfo7});
            tableInfo4.Name = "Dersler";
            columnInfo8.Alias = "Dersler_ders_id";
            columnInfo8.Name = "ders_id";
            columnInfo9.Name = "ders_adi";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo8,
            columnInfo9});
            tableInfo5.Name = "Derslik";
            columnInfo10.Name = "derslik_adi";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo10});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4,
            tableInfo5});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 24.93844F;
            this.Detail.MultiColumn.ColumnSpacing = 10F;
            this.Detail.MultiColumn.ColumnWidth = 355F;
            this.Detail.MultiColumn.Layout = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
            this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
            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;
            // 
            // xrTable2
            // 
            this.xrTable2.BackColor = System.Drawing.Color.Transparent;
            this.xrTable2.BorderColor = System.Drawing.Color.Gainsboro;
            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", 12F);
            this.xrTable2.ForeColor = System.Drawing.Color.Black;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(737.5F, 24.39223F);
            this.xrTable2.StylePriority.UseBackColor = false;
            this.xrTable2.StylePriority.UseBorderColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseForeColor = false;
            this.xrTable2.StylePriority.UsePadding = false;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_no")});
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_adi")});
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_soyadi")});
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Text = "xrTableCell7";
            this.xrTableCell7.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.derslik_adi")});
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Weight = 1D;
            // 
            // 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);
            // 
            // topMarginBand1
            // 
            this.topMarginBand1.HeightF = 0F;
            this.topMarginBand1.Name = "topMarginBand1";
            // 
            // bottomMarginBand1
            // 
            this.bottomMarginBand1.HeightF = 0F;
            this.bottomMarginBand1.Name = "bottomMarginBand1";
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.ReportHeader.HeightF = 27.41666F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.BorderWidth = 14F;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrLabel1.ForeColor = System.Drawing.Color.Black;
            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(253.125F, 26.41666F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorderWidth = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseForeColor = false;
            this.xrLabel1.Text = "Öğrenci Sınıf Listesi";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.PageHeader.HeightF = 33.37498F;
            this.PageHeader.Name = "PageHeader";
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.SlateGray;
            this.xrTable1.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(737.5F, 32.29167F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseBorderColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UsePadding = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "Öğrenci Numarası";
            this.xrTableCell1.Weight = 1D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "Öğrenci Adi";
            this.xrTableCell2.Weight = 1D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "Öğrenci Soyadı";
            this.xrTableCell3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.Text = "Derslik";
            this.xrTableCell4.Weight = 1D;
            // 
            // sharedImageCollection1
            // 
            // 
            // 
            // 
            this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
            this.sharedImageCollection1.ParentControl = null;
            // 
            // cat_id
            // 
            this.cat_id.Description = "categoryid";
            this.cat_id.Name = "cat_id";
            this.cat_id.Type = typeof(int);
            this.cat_id.ValueInfo = "1";
            this.cat_id.Visible = false;
            // 
            // dersid
            // 
            this.dersid.Description = "dersid";
            this.dersid.Name = "dersid";
            this.dersid.Type = typeof(int);
            this.dersid.ValueInfo = "0";
            this.dersid.Visible = false;
            // 
            // formattingRule1
            // 
            this.formattingRule1.Name = "formattingRule1";
            // 
            // XtraReport1
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.topMarginBand1,
            this.bottomMarginBand1,
            this.ReportHeader,
            this.PageHeader});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "CustomSqlQuery";
            this.DataSource = this.sqlDataSource1;
            this.FilterString = "[Sinav_id] = ?dersid";
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1});
            this.Margins = new System.Drawing.Printing.Margins(65, 0, 0, 0);
            this.PageHeight = 1169;
            this.PageWidth = 827;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.cat_id,
            this.dersid});
            this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12;
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
Exemplo n.º 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(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();

    }
Exemplo n.º 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 = "rp_SocialInsurance.resx";

            this.Detail                = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2           = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrtstt                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtEmployeeCode       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtFullName           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtBirthDate          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtSex                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtAddress            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtPhone              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtInsuranceNumber    = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtInsuranceIssueDate = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtPosition           = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.GroupHeader1          = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrTable3              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3           = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell9          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtDepartmentName     = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLogo                = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrl_TitleBC           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TenCongTy         = new DevExpress.XtraReports.UI.XRLabel();
            this.ReportFooter          = new DevExpress.XtraReports.UI.ReportFooterBand();
            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.xrtReportDate         = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer1           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer3           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer2           = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader            = new DevExpress.XtraReports.UI.PageHeaderBand();
            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.xrTableCell4          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3          = 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.xrTableCell8          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15         = new DevExpress.XtraReports.UI.XRTableCell();
            this.GroupFooter1          = new DevExpress.XtraReports.UI.GroupFooterBand();
            this.PageFooter            = new DevExpress.XtraReports.UI.PageFooterBand();
            this.xrPageInfo1           = new DevExpress.XtraReports.UI.XRPageInfo();
            this.formattingRule1       = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable2
            });
            this.Detail.HeightF       = 25.41666F;
            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;
            this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrTable2
            //
            this.xrTable2.Borders =
                ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left |
                                                        DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(2.000936F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1082.999F, 25.41666F);
            this.xrTable2.StylePriority.UseBorders       = false;
            this.xrTable2.StylePriority.UseFont          = false;
            this.xrTable2.StylePriority.UsePadding       = false;
            this.xrTable2.StylePriority.UseTextAlignment = false;
            this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrtstt,
                this.xrtEmployeeCode,
                this.xrtFullName,
                this.xrtBirthDate,
                this.xrtSex,
                this.xrtAddress,
                this.xrtPhone,
                this.xrtInsuranceNumber,
                this.xrtInsuranceIssueDate,
                this.xrtPosition
            });
            this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.StylePriority.UseFont          = false;
            this.xrTableRow2.StylePriority.UseTextAlignment = false;
            this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            this.xrTableRow2.Weight        = 1D;
            //
            // xrtstt
            //
            this.xrtstt.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtstt.Name = "xrtstt";
            this.xrtstt.StylePriority.UseFont          = false;
            this.xrtstt.StylePriority.UseTextAlignment = false;
            this.xrtstt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtstt.Weight        = 0.35416665980020634D;
            //
            // xrtEmployeeCode
            //
            this.xrtEmployeeCode.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtEmployeeCode.Name = "xrtEmployeeCode";
            this.xrtEmployeeCode.StylePriority.UseFont          = false;
            this.xrtEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrtEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtEmployeeCode.Weight        = 0.86457550153778651D;
            //
            // xrtFullName
            //
            this.xrtFullName.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtFullName.Name = "xrtFullName";
            this.xrtFullName.StylePriority.UseFont          = false;
            this.xrtFullName.StylePriority.UseTextAlignment = false;
            this.xrtFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtFullName.Weight        = 1.2500006236660197D;
            //
            // xrtBirthDate
            //
            this.xrtBirthDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtBirthDate.Name = "xrtBirthDate";
            this.xrtBirthDate.StylePriority.UseFont          = false;
            this.xrtBirthDate.StylePriority.UseTextAlignment = false;
            this.xrtBirthDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtBirthDate.Weight        = 0.80729853147345287D;
            //
            // xrtSex
            //
            this.xrtSex.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtSex.Name = "xrtSex";
            this.xrtSex.StylePriority.UseFont          = false;
            this.xrtSex.StylePriority.UseTextAlignment = false;
            this.xrtSex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtSex.Weight        = 0.63802091000874361D;
            //
            // xrtAddress
            //
            this.xrtAddress.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtAddress.Name = "xrtAddress";
            this.xrtAddress.StylePriority.UseFont          = false;
            this.xrtAddress.StylePriority.UseTextAlignment = false;
            this.xrtAddress.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtAddress.Weight        = 2.4648422184067971D;
            //
            // xrtPhone
            //
            this.xrtPhone.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtPhone.Name = "xrtPhone";
            this.xrtPhone.StylePriority.UseFont          = false;
            this.xrtPhone.StylePriority.UseTextAlignment = false;
            this.xrtPhone.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtPhone.Weight        = 0.90429476301779521D;
            //
            // xrtInsuranceNumber
            //
            this.xrtInsuranceNumber.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtInsuranceNumber.Name = "xrtInsuranceNumber";
            this.xrtInsuranceNumber.StylePriority.UseFont          = false;
            this.xrtInsuranceNumber.StylePriority.UseTextAlignment = false;
            this.xrtInsuranceNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtInsuranceNumber.Weight        = 1.0511087973976754D;
            //
            // xrtInsuranceIssueDate
            //
            this.xrtInsuranceIssueDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtInsuranceIssueDate.Name = "xrtInsuranceIssueDate";
            this.xrtInsuranceIssueDate.StylePriority.UseFont          = false;
            this.xrtInsuranceIssueDate.StylePriority.UseTextAlignment = false;
            this.xrtInsuranceIssueDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtInsuranceIssueDate.Weight        = 1.0670792866941483D;
            //
            // xrtPosition
            //
            this.xrtPosition.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtPosition.Name = "xrtPosition";
            this.xrtPosition.StylePriority.UseFont          = false;
            this.xrtPosition.StylePriority.UseTextAlignment = false;
            this.xrtPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtPosition.Weight        = 1.4286072963765166D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 49F;
            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       = 54F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // GroupHeader1
            //
            this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable3
            });
            this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[]
            {
                new DevExpress.XtraReports.UI.GroupField("", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
            });
            this.GroupHeader1.HeightF = 25.41666F;
            this.GroupHeader1.Name    = "GroupHeader1";
            //
            // xrTable3
            //
            this.xrTable3.Borders =
                ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left |
                                                        DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(2.000936F, 0F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow3
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(1082.999F, 25.41666F);
            this.xrTable3.StylePriority.UseBorders = false;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrTableCell9,
                this.xrtDepartmentName
            });
            this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.StylePriority.UseFont          = false;
            this.xrTableRow3.StylePriority.UseTextAlignment = false;
            this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow3.Weight        = 1D;
            //
            // xrTableCell9
            //
            this.xrTableCell9.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left |
                                                       DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.StylePriority.UseBorders = false;
            this.xrTableCell9.Weight = 0.020000008040643349D;
            //
            // xrtDepartmentName
            //
            this.xrtDepartmentName.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right |
                                                       DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrtDepartmentName.Name    = "xrtDepartmentName";
            this.xrtDepartmentName.Padding = new DevExpress.XtraPrinting.PaddingInfo(11, 0, 0, 0, 100F);
            this.xrtDepartmentName.StylePriority.UseBorders       = false;
            this.xrtDepartmentName.StylePriority.UsePadding       = false;
            this.xrtDepartmentName.StylePriority.UseTextAlignment = false;
            this.xrtDepartmentName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtDepartmentName.Weight        = 10.809994580338495D;
            xrtDepartmentName.BeforePrint       += new PrintEventHandler(Group_BeforePrint);
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrLogo,
                this.xrl_TitleBC,
                this.xrl_TenCongTy
            });
            this.ReportHeader.HeightF = 207F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrLogo
            //
            this.xrLogo.LocationFloat            = new DevExpress.Utils.PointFloat(58.33333F, 0F);
            this.xrLogo.Name                     = "xrLogo";
            this.xrLogo.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 1, 1, 100F);
            this.xrLogo.SizeF                    = new System.Drawing.SizeF(110F, 110F);
            this.xrLogo.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
            this.xrLogo.StylePriority.UsePadding = false;
            //
            // xrl_TitleBC
            //
            this.xrl_TitleBC.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_TitleBC.LocationFloat                  = new DevExpress.Utils.PointFloat(1.00046F, 154.5417F);
            this.xrl_TitleBC.Name                           = "xrl_TitleBC";
            this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1083F, 23F);
            this.xrl_TitleBC.StylePriority.UseFont          = false;
            this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
            this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH CÁN BỘ THAM GIA BHXH";
            this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrl_TenCongTy
            //
            this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(1.00046F, 112.875F);
            this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
            this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
            this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(570.8333F, 23F);
            this.xrl_TenCongTy.StylePriority.UseFont          = false;
            this.xrl_TenCongTy.StylePriority.UsePadding       = false;
            this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
            this.xrl_TenCongTy.Text                           = "CÔNG TY TNHH THƯƠNG MẠI VÀ XÂY DỰNG TRUNG CHÍNH";
            this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrl_ten3,
                this.xrl_ten2,
                this.xrl_ten1,
                this.xrtReportDate,
                this.xrl_footer1,
                this.xrl_footer3,
                this.xrl_footer2
            });
            this.ReportFooter.HeightF = 209F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // 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(764.0483F, 149.375F);
            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(302.1819F, 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(372.7372F, 149.375F);
            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(302.1819F, 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(1.000458F, 149.375F);
            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(302.1819F, 23F);
            this.xrl_ten1.StylePriority.UseFont          = false;
            this.xrl_ten1.StylePriority.UseTextAlignment = false;
            this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrtReportDate
            //
            this.xrtReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
            this.xrtReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(745.2785F, 24.58331F);
            this.xrtReportDate.Name                           = "xrtReportDate";
            this.xrtReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrtReportDate.SizeF                          = new System.Drawing.SizeF(339.7215F, 23F);
            this.xrtReportDate.StylePriority.UseFont          = false;
            this.xrtReportDate.StylePriority.UseTextAlignment = false;
            this.xrtReportDate.Text                           = "{0} ngày {1} tháng {2} năm {3}";
            this.xrtReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // 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, 49.58331F);
            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(304.1828F, 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_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(763.5075F, 49.58331F);
            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(303.2635F, 23F);
            this.xrl_footer3.StylePriority.UseFont          = false;
            this.xrl_footer3.StylePriority.UseTextAlignment = false;
            this.xrl_footer3.Text                           = "TỔNG GIÁM ĐỐC";
            this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // 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(371.7368F, 49.58331F);
            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(304.1828F, 23F);
            this.xrl_footer2.StylePriority.UseFont          = false;
            this.xrl_footer2.StylePriority.UseTextAlignment = false;
            this.xrl_footer2.Text                           = "PHÒNG HCNS";
            this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable1
            });
            this.PageHeader.HeightF = 38.33333F;
            this.PageHeader.Name    = "PageHeader";
            //
            // 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.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(2.000038F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1083F, 38.33333F);
            this.xrTable1.StylePriority.UseBorders       = false;
            this.xrTable1.StylePriority.UseFont          = 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.xrTableCell1,
                this.xrTableCell2,
                this.xrTableCell4,
                this.xrTableCell3,
                this.xrTableCell5,
                this.xrTableCell6,
                this.xrTableCell7,
                this.xrTableCell8,
                this.xrTableCell12,
                this.xrTableCell15
            });
            this.xrTableRow1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.StylePriority.UseFont          = false;
            this.xrTableRow1.StylePriority.UseTextAlignment = false;
            this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow1.Weight        = 1D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.Name   = "xrTableCell1";
            this.xrTableCell1.Text   = "STT";
            this.xrTableCell1.Weight = 0.35416665980020634D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.Name   = "xrTableCell2";
            this.xrTableCell2.Text   = "Mã nhân viên";
            this.xrTableCell2.Weight = 0.8645834853771206D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Name   = "xrTableCell4";
            this.xrTableCell4.Text   = "Họ tên";
            this.xrTableCell4.Weight = 1.2499995319741089D;
            //
            // xrTableCell3
            //
            this.xrTableCell3.Name   = "xrTableCell3";
            this.xrTableCell3.Text   = "Ngày sinh";
            this.xrTableCell3.Weight = 0.80729163932602965D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.Name   = "xrTableCell5";
            this.xrTableCell5.Text   = "Giới tính";
            this.xrTableCell5.Weight = 0.63802091000874361D;
            //
            // xrTableCell6
            //
            this.xrTableCell6.Name   = "xrTableCell6";
            this.xrTableCell6.Text   = "Địa chỉ";
            this.xrTableCell6.Weight = 2.4648454812932687D;
            //
            // xrTableCell7
            //
            this.xrTableCell7.Name   = "xrTableCell7";
            this.xrTableCell7.Text   = "Điện thoại";
            this.xrTableCell7.Weight = 0.90429460460702282D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Name   = "xrTableCell8";
            this.xrTableCell8.Text   = "Số thẻ BHXH";
            this.xrTableCell8.Weight = 1.0511072598253863D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Name   = "xrTableCell12";
            this.xrTableCell12.Text   = "Ngày cấp BHXH";
            this.xrTableCell12.Weight = 1.0670777197907384D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.Name   = "xrTableCell15";
            this.xrTableCell15.Text   = "Chức vụ";
            this.xrTableCell15.Weight = 1.4286072963765166D;
            //
            // GroupFooter1
            //
            this.GroupFooter1.HeightF = 25F;
            this.GroupFooter1.Name    = "GroupFooter1";
            //
            // PageFooter
            //
            this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrPageInfo1
            });
            this.PageFooter.HeightF = 100F;
            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(961.9583F, 38.54167F);
            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;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // rp_SocialInsurance
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.GroupHeader1,
                this.ReportHeader,
                this.ReportFooter,
                this.PageHeader,
                this.GroupFooter1,
                this.PageFooter
            });
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[]
            {
                this.formattingRule1
            });
            this.Landscape  = true;
            this.Margins    = new System.Drawing.Printing.Margins(6, 6, 49, 54);
            this.PageHeight = 850;
            this.PageWidth  = 1100;
            this.Version    = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(Bio_ChemistryDetails_OnTreatment));
     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.QueryParameter       queryParameter7  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.vendorLogo      = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.vendorLogo2     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.vendorTable     = new DevExpress.XtraReports.UI.XRTable();
     this.vendorTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.vendorName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorPhone     = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorEmail     = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.vendorAddress   = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorEmptyCell = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorWebsite   = new DevExpress.XtraReports.UI.XRTableCell();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.table4          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow4       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell33     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell34     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell35     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell36     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell16     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.table2          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5    = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell7      = 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.tableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel6        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.FromDate        = new DevExpress.XtraReports.Parameters.Parameter();
     this.ToDate          = new DevExpress.XtraReports.Parameters.Parameter();
     this.NullParam       = new DevExpress.XtraReports.Parameters.Parameter();
     this.MRN             = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.vendorTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.vendorLogo
     });
     this.TopMargin.Name = "TopMargin";
     //
     // vendorLogo
     //
     this.vendorLogo.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.vendorLogo.ImageSource    = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("vendorLogo.ImageSource"));
     this.vendorLogo.LocationFloat  = new DevExpress.Utils.PointFloat(10F, 10F);
     this.vendorLogo.Name           = "vendorLogo";
     this.vendorLogo.SizeF          = new System.Drawing.SizeF(195.1282F, 80.1281F);
     this.vendorLogo.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.vendorLogo.StylePriority.UseBorderColor = false;
     this.vendorLogo.StylePriority.UseBorders     = false;
     this.vendorLogo.StylePriority.UsePadding     = false;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.vendorLogo2,
         this.vendorTable
     });
     this.BottomMargin.HeightF = 108.3333F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // vendorLogo2
     //
     this.vendorLogo2.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.vendorLogo2.ImageSource    = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("vendorLogo2.ImageSource"));
     this.vendorLogo2.LocationFloat  = new DevExpress.Utils.PointFloat(10F, 10F);
     this.vendorLogo2.Name           = "vendorLogo2";
     this.vendorLogo2.SizeF          = new System.Drawing.SizeF(105F, 50F);
     this.vendorLogo2.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.vendorLogo2.StylePriority.UseBorderColor = false;
     this.vendorLogo2.StylePriority.UseBorders     = false;
     this.vendorLogo2.StylePriority.UsePadding     = false;
     //
     // vendorTable
     //
     this.vendorTable.BorderColor   = System.Drawing.Color.Gray;
     this.vendorTable.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.vendorTable.Font          = new System.Drawing.Font("Segoe UI", 8F);
     this.vendorTable.LocationFloat = new DevExpress.Utils.PointFloat(265.5013F, 10F);
     this.vendorTable.Name          = "vendorTable";
     this.vendorTable.Padding       = new DevExpress.XtraPrinting.PaddingInfo(12, 0, 0, 0, 100F);
     this.vendorTable.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.vendorTableRow1,
         this.vendorTableRow2
     });
     this.vendorTable.SizeF = new System.Drawing.SizeF(534.4988F, 80.00002F);
     this.vendorTable.StylePriority.UseBorderColor = false;
     this.vendorTable.StylePriority.UseBorders     = false;
     this.vendorTable.StylePriority.UseFont        = false;
     this.vendorTable.StylePriority.UsePadding     = false;
     //
     // vendorTableRow1
     //
     this.vendorTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.vendorName,
         this.vendorPhone,
         this.vendorEmail
     });
     this.vendorTableRow1.Name   = "vendorTableRow1";
     this.vendorTableRow1.Weight = 1.0000282429281655D;
     //
     // vendorName
     //
     this.vendorName.CanShrink                      = true;
     this.vendorName.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorName.Name                           = "vendorName";
     this.vendorName.StylePriority.UseFont          = false;
     this.vendorName.StylePriority.UseTextAlignment = false;
     this.vendorName.Text                           = "Address";
     this.vendorName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorName.Weight                         = 3.373293860445004D;
     //
     // vendorPhone
     //
     this.vendorPhone.CanShrink                      = true;
     this.vendorPhone.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorPhone.Name                           = "vendorPhone";
     this.vendorPhone.StylePriority.UseFont          = false;
     this.vendorPhone.StylePriority.UseTextAlignment = false;
     this.vendorPhone.Text                           = "Phone";
     this.vendorPhone.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorPhone.Weight                         = 2.3969332849888629D;
     //
     // vendorEmail
     //
     this.vendorEmail.CanShrink                      = true;
     this.vendorEmail.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorEmail.Name                           = "vendorEmail";
     this.vendorEmail.StylePriority.UseFont          = false;
     this.vendorEmail.StylePriority.UseTextAlignment = false;
     this.vendorEmail.Text                           = "Fax";
     this.vendorEmail.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorEmail.Weight                         = 2.6324616055564403D;
     //
     // vendorTableRow2
     //
     this.vendorTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.vendorAddress,
         this.vendorEmptyCell,
         this.vendorWebsite
     });
     this.vendorTableRow2.Name   = "vendorTableRow2";
     this.vendorTableRow2.Weight = 1.57413724941719D;
     //
     // vendorAddress
     //
     this.vendorAddress.CanShrink = true;
     this.vendorAddress.Multiline = true;
     this.vendorAddress.Name      = "vendorAddress";
     this.vendorAddress.StylePriority.UseBorders       = false;
     this.vendorAddress.StylePriority.UseTextAlignment = false;
     this.vendorAddress.Text   = "F-6/1, Block-8, KDA Scheme No.5,\r\nClifton, Karachi-75600";
     this.vendorAddress.Weight = 3.373293860445004D;
     //
     // vendorEmptyCell
     //
     this.vendorEmptyCell.CanShrink = true;
     this.vendorEmptyCell.Multiline = true;
     this.vendorEmptyCell.Name      = "vendorEmptyCell";
     this.vendorEmptyCell.Text      = "92 21 35361846\r\n          35361397 \r\n          35810049";
     this.vendorEmptyCell.Weight    = 2.3969332849888629D;
     //
     // vendorWebsite
     //
     this.vendorWebsite.CanShrink = true;
     this.vendorWebsite.Name      = "vendorWebsite";
     this.vendorWebsite.Text      = "021-35361397";
     this.vendorWebsite.Weight    = 2.6324616055564403D;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table4
     });
     this.Detail.HeightF = 26.95852F;
     this.Detail.Name    = "Detail";
     //
     // table4
     //
     this.table4.BackColor     = System.Drawing.Color.Transparent;
     this.table4.Font          = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table4.Name          = "table4";
     this.table4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow4
     });
     this.table4.SizeF = new System.Drawing.SizeF(800F, 26.95852F);
     this.table4.StylePriority.UseBackColor     = false;
     this.table4.StylePriority.UseFont          = false;
     this.table4.StylePriority.UsePadding       = false;
     this.table4.StylePriority.UseTextAlignment = false;
     this.table4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tableRow4
     //
     this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell33,
         this.tableCell34,
         this.tableCell35,
         this.tableCell36,
         this.tableCell16,
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.tableRow4.Name   = "tableRow4";
     this.tableRow4.Weight = 1D;
     //
     // tableCell33
     //
     this.tableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell33.Multiline = true;
     this.tableCell33.Name      = "tableCell33";
     this.tableCell33.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell33.StylePriority.UseBorders = false;
     this.tableCell33.Text   = "5";
     this.tableCell33.Weight = 0.563882183070174D;
     //
     // tableCell34
     //
     this.tableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell34.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[collectiondate]")
     });
     this.tableCell34.Multiline = true;
     this.tableCell34.Name      = "tableCell34";
     this.tableCell34.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell34.StylePriority.UseBorders       = false;
     this.tableCell34.StylePriority.UseTextAlignment = false;
     this.tableCell34.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.tableCell34.TextFormatString = "{0:dd/MM/yyyy}";
     this.tableCell34.Weight           = 1.1245444048226929D;
     //
     // tableCell35
     //
     this.tableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell35.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[mrn]")
     });
     this.tableCell35.Multiline = true;
     this.tableCell35.Name      = "tableCell35";
     this.tableCell35.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell35.StylePriority.UseBorders       = false;
     this.tableCell35.StylePriority.UsePadding       = false;
     this.tableCell35.StylePriority.UseTextAlignment = false;
     this.tableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell35.Weight        = 1.0698966061896642D;
     //
     // tableCell36
     //
     this.tableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell36.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[patient]")
     });
     this.tableCell36.Multiline = true;
     this.tableCell36.Name      = "tableCell36";
     this.tableCell36.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell36.StylePriority.UseBorders       = false;
     this.tableCell36.StylePriority.UsePadding       = false;
     this.tableCell36.StylePriority.UseTextAlignment = false;
     this.tableCell36.Text          = "0";
     this.tableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell36.Weight        = 2.2017829454641134D;
     //
     // tableCell16
     //
     this.tableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[dob]")
     });
     this.tableCell16.Multiline = true;
     this.tableCell16.Name      = "tableCell16";
     this.tableCell16.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell16.StylePriority.UseBorders       = false;
     this.tableCell16.StylePriority.UsePadding       = false;
     this.tableCell16.StylePriority.UseTextAlignment = false;
     this.tableCell16.Text             = "0";
     this.tableCell16.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell16.TextFormatString = "{0:dd/MM/yyyy}";
     this.tableCell16.Weight           = 0.94900068264858162D;
     //
     // 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.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[particulars]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell1.Weight        = 0.98550357015655943D;
     //
     // 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.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[result]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell2.Weight        = 0.84180133949879843D;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.GroupHeader1.HeightF = 116.6667F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // table2
     //
     this.table2.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.table2.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 87.5F);
     this.table2.Name          = "table2";
     this.table2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 2, 2, 100F);
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(800F, 29.16666F);
     this.table2.StylePriority.UseBackColor     = false;
     this.table2.StylePriority.UseFont          = false;
     this.table2.StylePriority.UsePadding       = false;
     this.table2.StylePriority.UseTextAlignment = false;
     this.table2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tableRow2
     //
     this.tableRow2.BackColor = System.Drawing.Color.LightSeaGreen;
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell6,
         this.xrTableCell5,
         this.tableCell7,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.tableCell1
     });
     this.tableRow2.ForeColor = System.Drawing.Color.White;
     this.tableRow2.Name      = "tableRow2";
     this.tableRow2.StylePriority.UseBackColor = false;
     this.tableRow2.StylePriority.UseForeColor = false;
     this.tableRow2.Weight = 1D;
     //
     // tableCell6
     //
     this.tableCell6.BackColor = System.Drawing.Color.DarkSlateGray;
     this.tableCell6.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell6.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.tableCell6.Multiline = true;
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.tableCell6.StylePriority.UseBackColor     = false;
     this.tableCell6.StylePriority.UseBorders       = false;
     this.tableCell6.StylePriority.UseFont          = false;
     this.tableCell6.StylePriority.UsePadding       = false;
     this.tableCell6.StylePriority.UseTextAlignment = false;
     this.tableCell6.Text          = "Sr. #";
     this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell6.Weight        = 0.55618162599752519D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.BackColor = System.Drawing.Color.DarkSlateGray;
     this.xrTableCell5.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.xrTableCell5.StylePriority.UseBackColor     = false;
     this.xrTableCell5.StylePriority.UseBorders       = false;
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UsePadding       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Date";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.109186558770169D;
     //
     // tableCell7
     //
     this.tableCell7.BackColor = System.Drawing.Color.DarkSlateGray;
     this.tableCell7.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell7.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.tableCell7.Multiline = true;
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.tableCell7.StylePriority.UseBackColor     = false;
     this.tableCell7.StylePriority.UseBorders       = false;
     this.tableCell7.StylePriority.UseFont          = false;
     this.tableCell7.StylePriority.UsePadding       = false;
     this.tableCell7.StylePriority.UseTextAlignment = false;
     this.tableCell7.Text          = "File No.";
     this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell7.Weight        = 1.0552855925761455D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BackColor = System.Drawing.Color.DarkSlateGray;
     this.xrTableCell7.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.xrTableCell7.StylePriority.UseBackColor     = false;
     this.xrTableCell7.StylePriority.UseBorders       = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UsePadding       = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Name";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 2.1717138169896666D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.BackColor = System.Drawing.Color.DarkSlateGray;
     this.xrTableCell8.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.xrTableCell8.StylePriority.UseBackColor     = false;
     this.xrTableCell8.StylePriority.UseBorders       = false;
     this.xrTableCell8.StylePriority.UseFont          = false;
     this.xrTableCell8.StylePriority.UsePadding       = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "DOB";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.93604047201408347D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.BackColor = System.Drawing.Color.DarkSlateGray;
     this.xrTableCell9.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.xrTableCell9.StylePriority.UseBackColor     = false;
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UsePadding       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "Particulars";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.97204490923044229D;
     //
     // tableCell1
     //
     this.tableCell1.BackColor = System.Drawing.Color.DarkSlateGray;
     this.tableCell1.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tableCell1.Font      = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
     this.tableCell1.Multiline = true;
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 5, 100F);
     this.tableCell1.StylePriority.UseBackColor     = false;
     this.tableCell1.StylePriority.UseBorders       = false;
     this.tableCell1.StylePriority.UseFont          = false;
     this.tableCell1.StylePriority.UsePadding       = false;
     this.tableCell1.StylePriority.UseTextAlignment = false;
     this.tableCell1.Text          = "Result";
     this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell1.Weight        = 0.83030500798350071D;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(406.1153F, 40.43592F);
     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(85.12818F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "To Date:";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?ToDate")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(491.2435F, 40.43592F);
     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(100F, 23F);
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text             = "15-08-2018";
     this.xrLabel7.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel7.TextFormatString = "{0:dd/MM/yyyy}";
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?FromDate")
     });
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(300.9388F, 40.43597F);
     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.UseTextAlignment = false;
     this.xrLabel3.Text             = "15-08-2018";
     this.xrLabel3.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel3.TextFormatString = "{0:dd/MM/yyyy}";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(215.8105F, 40.43592F);
     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(85.12818F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "From Date:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.AutoWidth                      = true;
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 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(800F, 28.76924F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Bio-Chemistry Details (On Treatment)";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // FromDate
     //
     this.FromDate.AllowNull   = true;
     this.FromDate.Description = "From Date";
     this.FromDate.Name        = "FromDate";
     this.FromDate.Type        = typeof(System.DateTime);
     //
     // ToDate
     //
     this.ToDate.AllowNull   = true;
     this.ToDate.Description = "To Date";
     this.ToDate.Name        = "ToDate";
     this.ToDate.Type        = typeof(System.DateTime);
     //
     // NullParam
     //
     this.NullParam.AllowNull   = true;
     this.NullParam.Description = "Null";
     this.NullParam.Name        = "NullParam";
     this.NullParam.Visible     = false;
     //
     // MRN
     //
     this.MRN.AllowNull   = true;
     this.MRN.Description = "MRN";
     this.MRN.Name        = "MRN";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "sp_biochemistry_details_ontreatment";
     queryParameter1.Name  = "@fromdate";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?FromDate", typeof(System.DateTime));
     queryParameter2.Name  = "@todate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?ToDate", typeof(System.DateTime));
     queryParameter3.Name  = "@mrn";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?MRN", typeof(string));
     queryParameter4.Name  = "@companyid";
     queryParameter4.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter5.Name  = "@countryid";
     queryParameter5.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter6.Name  = "@branchid";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter7.Name  = "@cityid";
     queryParameter7.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value = new DevExpress.DataAccess.Expression("?NullParam", 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.Parameters.Add(queryParameter7);
     storedProcQuery1.StoredProcName = "sp_biochemistry_details_ontreatment";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Bio_ChemistryDetails_OnTreatment
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "sp_biochemistry_details_ontreatment";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(25, 25, 100, 108);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.FromDate,
         this.ToDate,
         this.NullParam,
         this.MRN
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.vendorTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 38
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.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     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                table5            = 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();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ZaposleniSaoOsig2));
     this.sqlDataSource1         = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption1          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupData1             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupFooterBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo               = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader           = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader2           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader3           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader4           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupFooter1           = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.pageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1                 = 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.table2                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table3                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table4                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.label2                 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "localhost_DesignSaoOsig1_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "DesignSaoOsig1";
     msSqlConnectionParameters1.ServerName        = "(LocalDb)\\MSSQLLocalDB";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "PrezimeIme";
     table5.Name                  = "tblZaposleni_AD";
     columnExpression1.Table      = table5;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "NetworkLogin";
     columnExpression2.Table      = table5;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "OrgUnitID";
     columnExpression3.Table      = table5;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Status";
     columnExpression4.Table      = table5;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Name = "tblZaposleni_AD";
     selectQuery1.Tables.Add(table5);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // 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("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // GroupCaption1
     //
     this.GroupCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupCaption1.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption1.BorderWidth   = 2F;
     this.GroupCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupCaption1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupCaption1.Name          = "GroupCaption1";
     this.GroupCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupData1
     //
     this.GroupData1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupData1.BorderColor   = System.Drawing.Color.White;
     this.GroupData1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupData1.BorderWidth   = 2F;
     this.GroupData1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupData1.ForeColor     = System.Drawing.Color.White;
     this.GroupData1.Name          = "GroupData1";
     this.GroupData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooterBackground3
     //
     this.GroupFooterBackground3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(117)))), ((int)(((byte)(129)))));
     this.GroupFooterBackground3.BorderColor   = System.Drawing.Color.White;
     this.GroupFooterBackground3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupFooterBackground3.BorderWidth   = 2F;
     this.GroupFooterBackground3.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupFooterBackground3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupFooterBackground3.Name          = "GroupFooterBackground3";
     this.GroupFooterBackground3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupFooterBackground3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label1
     });
     this.ReportHeader.HeightF = 60F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Status", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 27F;
     this.GroupHeader1.Level      = 1;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrgUnitID", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader2.HeightF    = 27F;
     this.GroupHeader2.Level      = 2;
     this.GroupHeader2.Name       = "GroupHeader2";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table3
     });
     this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("NetworkLogin", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader3.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader3.HeightF    = 27F;
     this.GroupHeader3.Level      = 3;
     this.GroupHeader3.Name       = "GroupHeader3";
     //
     // GroupHeader4
     //
     this.GroupHeader4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table4
     });
     this.GroupHeader4.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("PrezimeIme", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader4.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader4.HeightF    = 27F;
     this.GroupHeader4.Level      = 4;
     this.GroupHeader4.Name       = "GroupHeader4";
     //
     // Detail
     //
     this.Detail.HeightF = 0F;
     this.Detail.Name    = "Detail";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label2
     });
     this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
     this.GroupFooter1.HeightF    = 6F;
     this.GroupFooter1.Name       = "GroupFooter1";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.Text          = "Izvjestaj o zaposlenicima SaoOsig";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "GroupCaption1";
     this.tableCell1.Text      = "STATUS";
     this.tableCell1.Weight    = 0.082820504995492789D;
     //
     // tableCell2
     //
     this.tableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Status]")
     });
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "GroupData1";
     this.tableCell2.Weight    = 0.91717951847956736D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table2.Name          = "table2";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell3,
         this.tableCell4
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 1D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "GroupCaption1";
     this.tableCell3.Text      = "ORG UNIT ID";
     this.tableCell3.Weight    = 0.12101206852839544D;
     //
     // tableCell4
     //
     this.tableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrgUnitID]")
     });
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "GroupData1";
     this.tableCell4.Weight    = 0.87898794320913465D;
     //
     // table3
     //
     this.table3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table3.Name          = "table3";
     this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow3
     });
     this.table3.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow3
     //
     this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow3.Name   = "tableRow3";
     this.tableRow3.Weight = 1D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "GroupCaption1";
     this.tableCell5.Text      = "NETWORK LOGIN";
     this.tableCell5.Weight    = 0.16409270066481371D;
     //
     // tableCell6
     //
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NetworkLogin]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "GroupData1";
     this.tableCell6.Weight    = 0.83590726412259619D;
     //
     // table4
     //
     this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table4.Name          = "table4";
     this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow4
     });
     this.table4.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow4
     //
     this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell7,
         this.tableCell8
     });
     this.tableRow4.Name   = "tableRow4";
     this.tableRow4.Weight = 1D;
     //
     // tableCell7
     //
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "GroupCaption1";
     this.tableCell7.Text      = "PREZIME IME";
     this.tableCell7.Weight    = 0.12689961360051083D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PrezimeIme]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "GroupData1";
     this.tableCell8.Weight    = 0.87310039813701923D;
     //
     // label2
     //
     this.label2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.label2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.label2.Name                     = "label2";
     this.label2.SizeF                    = new System.Drawing.SizeF(650F, 2.08F);
     this.label2.StyleName                = "GroupFooterBackground3";
     this.label2.StylePriority.UseBorders = false;
     //
     // ZaposleniSaoOsig2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupHeader3,
         this.GroupHeader4,
         this.Detail,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblZaposleni_AD";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.GroupCaption1,
         this.GroupData1,
         this.GroupFooterBackground3,
         this.PageInfo
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }