Esempio n. 1
0
        public void GivenTheDetailReportBandContainsASubreportInItsHeaderBand(string location)
        {
            Band band;

            switch (location.ToUpper())
            {
            case "HEADER":
                band = new ReportHeaderBand();
                break;

            case "FOOTER":
                band = new ReportFooterBand();
                break;

            case "DETAIL":
                band = new DetailBand();
                break;

            default:
                throw new NotImplementedException();
            }


            _xrSubreportContainer = new XRSubreport();
            band.Controls.Add(_xrSubreportContainer);
            _detailReport.Bands.Add(band);
        }
Esempio n. 2
0
        public void GivenTheXRSubreportContainerExistsInTheParentReportBand(string location)
        {
            const string nameToUse = "SubReportContainer";

            Band band;

            switch (location.ToUpper())
            {
            case "HEADER":
                band = new ReportHeaderBand();
                _getContainerFunc = r => (XRSubreport)r.Bands[BandKind.ReportHeader].Controls[nameToUse];
                break;

            case "FOOTER":
                band = new ReportFooterBand();
                _getContainerFunc = r => (XRSubreport)r.Bands[BandKind.ReportFooter].Controls[nameToUse];
                break;

            case "DETAIL":
                band = new DetailBand();
                _getContainerFunc = r => (XRSubreport)r.Bands[BandKind.Detail].Controls[nameToUse];
                break;

            default:
                throw new NotImplementedException();
            }

            _parentReport.Bands.Add(band);
            _xrSubreportContainer = new XRSubreport {
                Name = nameToUse
            };
            band.Controls.Add(_xrSubreportContainer);
        }
        public void GivenTheXRSubreportContainerExistsInTheParentReportBand(string location)
        {
            const string nameToUse = "SubReportContainer";

            Band band;
            switch (location.ToUpper())
            {
                case "HEADER":  
                    band = new ReportHeaderBand();
                    _getContainerFunc = r => (XRSubreport)r.Bands[BandKind.ReportHeader].Controls[nameToUse];
                    break;
                case "FOOTER":
                    band = new ReportFooterBand();
                    _getContainerFunc = r => (XRSubreport) r.Bands[BandKind.ReportFooter].Controls[nameToUse];
                    break;
                case "DETAIL":
                    band = new DetailBand();
                    _getContainerFunc = r => (XRSubreport) r.Bands[BandKind.Detail].Controls[nameToUse];
                    break;
                default:
                    throw new NotImplementedException();
            }

            _parentReport.Bands.Add(band);
            _xrSubreportContainer = new XRSubreport {Name = nameToUse};
            band.Controls.Add(_xrSubreportContainer);

        }
        public void InitBands(XtraReport rep)
        {
            DetailBand detail = new DetailBand();
            PageHeaderBand pageHeader = new PageHeaderBand();
            ReportFooterBand reportFooter = new ReportFooterBand();
            detail.Height = 20;
            reportFooter.Height = 380;
            pageHeader.Height = 20;

            rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter });
        }
Esempio n. 5
0
        public void InitBands(XtraReport rep)
        {
            DetailBand       detail       = new DetailBand();
            PageHeaderBand   pageHeader   = new PageHeaderBand();
            ReportHeaderBand reportHeader = new ReportHeaderBand();
            ReportFooterBand reportFooter = new ReportFooterBand();

            reportHeader.HeightF = 40;
            detail.HeightF       = 20;
            reportFooter.HeightF = 380;
            pageHeader.HeightF   = 20;
            rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { reportHeader, detail, pageHeader, reportFooter });
        }
        public static ReportFooterBand AddReportFooterBand(this XtraReportBase report)
        {
            var result = report.GetBandByType <ReportFooterBand>();

            if (result == null)
            {
                result = new ReportFooterBand()
                {
                    HeightF = 0F,
                };
                report.Bands.Add(result);
            }
            return(result);
        }
Esempio n. 7
0
        public void InitBands(XtraReport rep)
        {
            // Create bands
            DetailBand       detail       = new DetailBand();
            PageHeaderBand   pageHeader   = new PageHeaderBand();
            ReportFooterBand reportFooter = new ReportFooterBand();

            detail.Height       = 40;
            reportFooter.Height = 380;
            pageHeader.Height   = 20;

            // Place the bands onto a report
            rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter });
        }
Esempio n. 8
0
        protected virtual ReportFooterBand CreateContainerBand()
        {
            var result = this.Report.GetBandByType <ReportFooterBand>();

            if (result == null)
            {
                result = new ReportFooterBand()
                {
                    HeightF = 0F,
                };
                this.Report.Bands.Add(result);
            }
            return(result);
        }
Esempio n. 9
0
        public void InitBands(XtraReport rep)
        {
            // Create bands
            DetailBand       detail       = new DetailBand();
            PageHeaderBand   pageHeader   = new PageHeaderBand();
            ReportFooterBand reportFooter = new ReportFooterBand();

            detail.Height       = 20;
            reportFooter.Height = 380;
            pageHeader.Height   = 20;

            var reportHeaderBand = CreateReportHeader("BẢNG ĐIỂM TỔNG KẾT ", "Lớp: " + txtTenLop.Text.Trim(), 15.75f, 12f);

            // Place the bands onto a report
            rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter, reportHeaderBand });
        }
        public void CreateBands(XtraReport report)
        {
            var detail = new DetailBand()
            {
                HeightF = 20
            };
            var pageHeader = new PageHeaderBand()
            {
                HeightF = 20
            };
            var reportFooter = new ReportFooterBand()
            {
                HeightF = 380
            };

            report.Bands.AddRange(new Band[] { detail, pageHeader, reportFooter });
        }
Esempio n. 11
0
        private void ReadReportFooterBand(XtraReportBase xtraReport, ReportFooterBand xtraBand, StiPage page)
        {
            StiBand band = null;

            if (detailLevel == 0)
            {
                band = new StiReportSummaryBand();
            }
            else
            {
                band = new StiFooterBand();
                (band as StiFooterBand).PrintOnAllPages = false;
            }
            page.Components.Add(band);

            ReadBand(xtraBand, band);
        }
        public void GivenTheDetailReportBandContainsASubreportInItsHeaderBand(string location)
        {
            Band band;
            switch (location.ToUpper())
            {
                case "HEADER":  
                    band = new ReportHeaderBand();
                    break;
                case "FOOTER":
                    band = new ReportFooterBand();
                    break;
                case "DETAIL":
                    band = new DetailBand();
                    break;
                default:
                    throw new NotImplementedException();
            }

            
            _xrSubreportContainer = new XRSubreport();
            band.Controls.Add(_xrSubreportContainer);
            _detailReport.Bands.Add(band);
        }
 public static GroupFooterHelper AddGroupFooter(this ReportFooterBand band)
 {
     return(new GroupFooterHelper(band));
 }
Esempio 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.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.pccData      = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel15    = new DevExpress.XtraReports.UI.XRLabel();
     this.beginBalance = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel13    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14    = new DevExpress.XtraReports.UI.XRLabel();
     this.endBalance   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPanel3     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel59    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel49    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel50    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel51    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel54    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel55    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel56    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel57    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel58    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17    = new DevExpress.XtraReports.UI.XRLabel();
     this.datePeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel12    = new DevExpress.XtraReports.UI.XRLabel();
     this.yearPeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel10    = new DevExpress.XtraReports.UI.XRLabel();
     this.monthPeriod  = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pccData
     });
     this.Detail.HeightF       = 140.625F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pccData
     //
     this.pccData.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.pccData.Name          = "pccData";
     this.pccData.SizeF         = new System.Drawing.SizeF(1100F, 140.625F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     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       = 17.70833F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.beginBalance, "Text", "{0:#,#}")
     });
     this.xrLabel15.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(914.136F, 190.5523F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(134.3749F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "xrLabel15";
     //
     // beginBalance
     //
     this.beginBalance.Description = "Parameter1";
     this.beginBalance.Name        = "beginBalance";
     this.beginBalance.Type        = typeof(int);
     this.beginBalance.ValueInfo   = "0";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(790.6812F, 190.5523F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(123.4548F, 23.00002F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Số dư đầu tháng:";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(194.1521F, 102.5442F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "BẢNG KÊ SỐ 1";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(429.5912F, 157.534F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Tháng";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(525.338F, 157.534F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "năm";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(194.1521F, 134.5338F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(652.5292F, 22.99999F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Ghi Nợ Tài Khoản 111 - Tiền mặt";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 23.95833F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(1080F, 72.11725F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 7.117249F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 7.117249F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = ".........................";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 39.11728F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Địa chỉ:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 39.11728F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = ".........................";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(835.7247F, 7.117256F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(234.2751F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Mẫu số S04b1-DN";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(835.7247F, 30.11723F);
     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(234.2751F, 32.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Ban hành theo QĐ số 15/2006/QĐ-BTC \r\nngày 20/03/2006 của Bộ trưởng BTC)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.endBalance, "Text", "{0:#,#}")
     });
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(924.761F, 9.999974F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(134.3749F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "xrLabel14";
     //
     // endBalance
     //
     this.endBalance.Description = "Parameter1";
     this.endBalance.Name        = "endBalance";
     this.endBalance.Type        = typeof(int);
     this.endBalance.ValueInfo   = "0";
     //
     // xrPanel3
     //
     this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel59,
         this.xrLabel48,
         this.xrLabel49,
         this.xrLabel50,
         this.xrLabel51,
         this.xrLabel54,
         this.xrLabel55,
         this.xrLabel56,
         this.xrLabel57,
         this.xrLabel58
     });
     this.xrPanel3.LocationFloat = new DevExpress.Utils.PointFloat(5F, 32.99999F);
     this.xrPanel3.Name          = "xrPanel3";
     this.xrPanel3.SizeF         = new System.Drawing.SizeF(1090F, 96.14252F);
     //
     // xrLabel59
     //
     this.xrLabel59.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel59.LocationFloat                  = new DevExpress.Utils.PointFloat(682.8936F, 10.00001F);
     this.xrLabel59.Name                           = "xrLabel59";
     this.xrLabel59.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel59.SizeF                          = new System.Drawing.SizeF(46.06677F, 22.99999F);
     this.xrLabel59.StylePriority.UseFont          = false;
     this.xrLabel59.StylePriority.UseTextAlignment = false;
     this.xrLabel59.Text                           = "Ngày";
     this.xrLabel59.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel48
     //
     this.xrLabel48.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel48.LocationFloat                  = new DevExpress.Utils.PointFloat(107.0181F, 33.00002F);
     this.xrLabel48.Name                           = "xrLabel48";
     this.xrLabel48.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel48.StylePriority.UseFont          = false;
     this.xrLabel48.StylePriority.UseTextAlignment = false;
     this.xrLabel48.Text                           = "Người ghi sổ";
     this.xrLabel48.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel49
     //
     this.xrLabel49.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel49.LocationFloat                  = new DevExpress.Utils.PointFloat(107.0181F, 56.00011F);
     this.xrLabel49.Name                           = "xrLabel49";
     this.xrLabel49.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel49.StylePriority.UseFont          = false;
     this.xrLabel49.StylePriority.UseTextAlignment = false;
     this.xrLabel49.Text                           = "(Ký, họ tên)";
     this.xrLabel49.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel50
     //
     this.xrLabel50.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel50.LocationFloat                  = new DevExpress.Utils.PointFloat(738.1652F, 56.00011F);
     this.xrLabel50.Name                           = "xrLabel50";
     this.xrLabel50.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel50.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel50.StylePriority.UseFont          = false;
     this.xrLabel50.StylePriority.UseTextAlignment = false;
     this.xrLabel50.Text                           = "(Ký, họ tên)";
     this.xrLabel50.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel51
     //
     this.xrLabel51.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel51.LocationFloat                  = new DevExpress.Utils.PointFloat(738.1652F, 33.00002F);
     this.xrLabel51.Name                           = "xrLabel51";
     this.xrLabel51.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel51.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel51.StylePriority.UseFont          = false;
     this.xrLabel51.StylePriority.UseTextAlignment = false;
     this.xrLabel51.Text                           = "Kế toán trưởng";
     this.xrLabel51.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel54
     //
     this.xrLabel54.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel54.LocationFloat                  = new DevExpress.Utils.PointFloat(818.8935F, 10.00001F);
     this.xrLabel54.Name                           = "xrLabel54";
     this.xrLabel54.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel54.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel54.StylePriority.UseFont          = false;
     this.xrLabel54.StylePriority.UseTextAlignment = false;
     this.xrLabel54.Text                           = "........";
     this.xrLabel54.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel55
     //
     this.xrLabel55.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel55.LocationFloat                  = new DevExpress.Utils.PointFloat(903.0126F, 10.00001F);
     this.xrLabel55.Name                           = "xrLabel55";
     this.xrLabel55.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel55.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel55.StylePriority.UseFont          = false;
     this.xrLabel55.StylePriority.UseTextAlignment = false;
     this.xrLabel55.Text                           = "........";
     this.xrLabel55.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel56
     //
     this.xrLabel56.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel56.LocationFloat                  = new DevExpress.Utils.PointFloat(866.767F, 10.00001F);
     this.xrLabel56.Name                           = "xrLabel56";
     this.xrLabel56.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel56.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel56.StylePriority.UseFont          = false;
     this.xrLabel56.StylePriority.UseTextAlignment = false;
     this.xrLabel56.Text                           = "năm";
     this.xrLabel56.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel57
     //
     this.xrLabel57.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel57.LocationFloat                  = new DevExpress.Utils.PointFloat(771.02F, 10.00001F);
     this.xrLabel57.Name                           = "xrLabel57";
     this.xrLabel57.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel57.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel57.StylePriority.UseFont          = false;
     this.xrLabel57.StylePriority.UseTextAlignment = false;
     this.xrLabel57.Text                           = "tháng";
     this.xrLabel57.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel58
     //
     this.xrLabel58.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel58.LocationFloat                  = new DevExpress.Utils.PointFloat(728.9604F, 10.00001F);
     this.xrLabel58.Name                           = "xrLabel58";
     this.xrLabel58.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel58.SizeF                          = new System.Drawing.SizeF(42.05952F, 23F);
     this.xrLabel58.StylePriority.UseFont          = false;
     this.xrLabel58.StylePriority.UseTextAlignment = false;
     this.xrLabel58.Text                           = "......";
     this.xrLabel58.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(801.3063F, 9.999974F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(123.4548F, 23.00002F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Số dư cuối tháng:";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // datePeriod
     //
     this.datePeriod.Description = "Parameter1";
     this.datePeriod.Name        = "datePeriod";
     this.datePeriod.Type        = typeof(System.DateTime);
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel11,
         this.xrLabel8,
         this.xrLabel7,
         this.xrPanel2,
         this.xrLabel13,
         this.xrLabel15
     });
     this.ReportHeader.HeightF = 220.8333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.yearPeriod, "Text", "")
     });
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(561.5836F, 157.534F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(63.54169F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // yearPeriod
     //
     this.yearPeriod.Description = "Parameter1";
     this.yearPeriod.Name        = "yearPeriod";
     this.yearPeriod.Type        = typeof(short);
     this.yearPeriod.ValueInfo   = "0";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.monthPeriod, "Text", "")
     });
     this.xrLabel10.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(477.4647F, 157.5338F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(28.62346F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "xrLabel10";
     //
     // monthPeriod
     //
     this.monthPeriod.Description = "Parameter1";
     this.monthPeriod.Name        = "monthPeriod";
     this.monthPeriod.Type        = typeof(short);
     this.monthPeriod.ValueInfo   = "0";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrPanel3,
         this.xrLabel14
     });
     this.ReportFooter.HeightF = 180.2083F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // S04b1_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(0, 0, 0, 18);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.beginBalance,
         this.endBalance,
         this.datePeriod,
         this.monthPeriod,
         this.yearPeriod
     });
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio 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.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();
 }
Esempio 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()
 {
     string resourceFileName = "Footer.resx";
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.lbngay = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF = 0F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 0F;
     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 = 0.9583156F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel20,
         this.xrLabel17,
         this.lbngay});
     this.ReportFooter.HeightF = 73F;
     this.ReportFooter.Name = "ReportFooter";
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(479.5833F, 50F);
     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.Text = "Nhân viên";
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(29.5833F, 50F);
     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.Text = "Giám đốc";
     //
     // lbngay
     //
     this.lbngay.LocationFloat = new DevExpress.Utils.PointFloat(479.5833F, 0F);
     this.lbngay.Name = "lbngay";
     this.lbngay.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbngay.SizeF = new System.Drawing.SizeF(170.4167F, 23F);
     this.lbngay.StylePriority.UseTextAlignment = false;
     this.lbngay.Text = "Ngày 20 tháng 10 năm 2011";
     this.lbngay.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(423.75F, 0F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(55.83325F, 23F);
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text = "TPHCM,";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // Footer
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportFooter});
     this.Margins = new System.Drawing.Printing.Margins(100, 100, 0, 1);
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio 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()
    {
        string resourceFileName = "rp_austfeed_BaoCaoNVKyHDThoiVu.resx";

        System.Resources.ResourceManager resources = global::Resources.rp_austfeed_BaoCaoNVKyHDThoiVu.ResourceManager;
        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = 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.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        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.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10     = 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       = 37.29166F;
        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", 12F);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(968.9999F, 37.29166F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont          = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 0.32541128637820549D;
        this.xrTableCell7.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
        //
        // xrTableCell8
        //
        this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseFont = false;
        this.xrTableCell8.Weight = 0.55575865200515961D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell9.Name    = "xrTableCell9";
        this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.xrTableCell9.StylePriority.UseFont          = false;
        this.xrTableCell9.StylePriority.UsePadding       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell9.Weight        = 2.15173650677963D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.xrTableCell10.StylePriority.UseFont          = false;
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell10.Weight        = 0.65813452697487185D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseFont = false;
        this.xrTableCell11.Weight = 0.71846397383912053D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseBorders = false;
        this.xrTableCell12.Weight = 0.69235949228458438D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 91F;
        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;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 166F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 3.041649F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(129.1667F, 42.79167F);
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 106F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(969F, 22.99999F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Ngày báo cáo.........................................";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 68.83335F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(969F, 37.16666F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "BÁO CÁO NHÂN VIÊN HƯỞNG KÝ HỢP ĐỒNG THỜI VỤ";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(9.536743E-05F, 45.83333F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(259.375F, 23F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "CÔNG TY AUSTFEED VIỆT NAM";
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 45F;
        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", 12F, 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(969F, 45F);
        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.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell6,
            this.xrTableCell5,
            this.xrTableCell4
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.32541128637820549D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Mã nhân viên";
        this.xrTableCell2.Weight = 0.55575865200515961D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Họ và tên";
        this.xrTableCell3.Weight = 2.1517374842395385D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Chức vụ";
        this.xrTableCell6.Weight = 0.65813444222341067D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Ngày ký HĐ";
        this.xrTableCell5.Weight = 0.71846436655124013D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Ngày kết thúc HĐ";
        this.xrTableCell4.Weight = 0.69235949228458438D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel7,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel6,
            this.xrLabel10
        });
        this.ReportFooter.HeightF = 194F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrLabel7
        //
        this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(336.4583F, 113.5417F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(204.1667F, 23.00001F);
        this.xrLabel7.StylePriority.UseFont          = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(61.80564F, 113.5417F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(151.0417F, 23.00001F);
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(52.08333F, 51.04167F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Người lập";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel9
        //
        this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(714.5833F, 51.04167F);
        this.xrLabel9.Name                           = "xrLabel9";
        this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel9.StylePriority.UseFont          = false;
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.Text                           = "Trưởng phòng HCNS";
        this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel8
        //
        this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(639.5833F, 26.04167F);
        this.xrLabel8.Name                  = "xrLabel8";
        this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF                 = new System.Drawing.SizeF(326.0417F, 23F);
        this.xrLabel8.StylePriority.UseFont = false;
        this.xrLabel8.Text                  = "Hưng Yên,ngày.........tháng............năm...........";
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(352.0833F, 51.04167F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Kế toán trưởng";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel10
        //
        this.xrLabel10.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(714.5833F, 113.5417F);
        this.xrLabel10.Name                           = "xrLabel10";
        this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel10.StylePriority.UseFont          = false;
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // rp_austfeed_BaoCaoNVKyHDThoiVu
        //
        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(100, 100, 91, 100);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).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()
 {
     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.xrTableCell6          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14         = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.dsBaoCaoTonKhoOnHand1 = new WebUI.Report.DsBaoCaoTonKhoOnHand();
     this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel7              = 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.xrLabel2              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3              = new DevExpress.XtraReports.UI.XRLabel();
     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.xrTableCell15         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9          = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter          = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrTable3              = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3           = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12         = new DevExpress.XtraReports.UI.XRTableCell();
     this.TonCuoi               = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoTonKhoOnHand1)).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.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(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(801F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     this.xrTable2.StylePriority.UsePadding = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell16,
         this.xrTableCell10,
         this.xrTableCell13,
         this.xrTableCell14
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.STT")
     });
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "xrTableCell6";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.80689117431640534D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ProductCode")
     });
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "xrTableCell7";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 2.4007986617135022D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ProductName")
     });
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight        = 3.5281243031447995D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.Specifications")
     });
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell16.Weight        = 1.205614867029601D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ImportPrice", "{0:n0}")
     });
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "xrTableCell10";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell10.Weight        = 1.29353471967155D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.Price", "{0:n0}")
     });
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "xrTableCell13";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell13.Weight        = 1.3611873839452389D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.TonCuoi", "{0:n2}")
     });
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell14.Weight        = 1.4038487390098602D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 31F;
     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       = 98F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // dsBaoCaoTonKhoOnHand1
     //
     this.dsBaoCaoTonKhoOnHand1.DataSetName             = "DsBaoCaoTonKhoOnHand";
     this.dsBaoCaoTonKhoOnHand1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 150.7917F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel7
     //
     this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.CreatedDate", "{0:dd/MM/yyyy}")
     });
     this.xrLabel7.Font                     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat            = new DevExpress.Utils.PointFloat(368.75F, 115.7084F);
     this.xrLabel7.Name                     = "xrLabel7";
     this.xrLabel7.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                    = new System.Drawing.SizeF(158.3333F, 22.99999F);
     this.xrLabel7.StylePriority.UseBorders = false;
     this.xrLabel7.StylePriority.UseFont    = false;
     this.xrLabel7.Text                     = "xrLabel7";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(276.0417F, 115.7084F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(92.70834F, 23.00002F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "Ngày:";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel5
     //
     this.xrLabel5.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(211.4584F, 80.20837F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(382.2917F, 35.50002F);
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "BÁO CÁO TỒN KHO ON HAND";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.WarehouseName")
     });
     this.xrLabel4.Font                     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat            = new DevExpress.Utils.PointFloat(139.8442F, 29.87499F);
     this.xrLabel4.Name                     = "xrLabel4";
     this.xrLabel4.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                    = new System.Drawing.SizeF(257.2917F, 23F);
     this.xrLabel4.StylePriority.UseBorders = false;
     this.xrLabel4.StylePriority.UseFont    = false;
     this.xrLabel4.Text                     = "xrLabel4";
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.StoreName")
     });
     this.xrLabel2.Font                     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat            = new DevExpress.Utils.PointFloat(139.8442F, 6.875006F);
     this.xrLabel2.Name                     = "xrLabel2";
     this.xrLabel2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                    = new System.Drawing.SizeF(257.2917F, 23F);
     this.xrLabel2.StylePriority.UseBorders = false;
     this.xrLabel2.StylePriority.UseFont    = false;
     this.xrLabel2.Text                     = "xrLabel2";
     //
     // xrLabel3
     //
     this.xrLabel3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(47.13589F, 29.87502F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(92.70834F, 23.00002F);
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Kho:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(47.13589F, 6.875006F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(92.70834F, 23F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Cửa hàng:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 25F;
     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", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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(801F, 25F);
     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.xrTableCell3,
         this.xrTableCell15,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell9
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 11.5D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "STT";
     this.xrTableCell1.Weight = 1.0192306988055888D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Text      = "Mã sản phẩm\r\n";
     this.xrTableCell2.Weight    = 3.0325870693346304D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Tên sản phẩm";
     this.xrTableCell3.Weight = 4.4565775688398D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "Quy cách";
     this.xrTableCell15.Weight = 1.5228828512522117D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Giá nhập";
     this.xrTableCell4.Weight = 1.6339375574141903D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Text      = "Giá bán\r\n";
     this.xrTableCell5.Weight    = 1.7193953821867061D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "Tồn kho";
     this.xrTableCell9.Weight = 1.7732814032771018D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.ReportFooter.HeightF = 63.54167F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrTable3
     //
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(801F, 25F);
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseFont    = false;
     this.xrTable3.StylePriority.UsePadding = false;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell12
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Tổng";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.7660252028245196D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.InventoryQty")
     });
     this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString          = "{0:n2}";
     xrSummary1.Running               = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell12.Summary       = xrSummary1;
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight        = 0.23397479717548081D;
     //
     // TonCuoi
     //
     this.TonCuoi.DataMember = "Detail";
     this.TonCuoi.Expression = "Iif([InventoryQty]==0, \'-\'  ,[InventoryQty] )";
     this.TonCuoi.Name       = "TonCuoi";
     //
     // BaoCaoTonKhoOnHandXtraReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader,
         this.ReportFooter
     });
     this.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                           | DevExpress.XtraPrinting.BorderSide.Right)));
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.TonCuoi
     });
     this.DataMember = "Detail";
     this.DataSource = this.dsBaoCaoTonKhoOnHand1;
     this.Margins    = new System.Drawing.Printing.Margins(21, 28, 31, 98);
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoTonKhoOnHand1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio 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()
    {
        string resourceFileName = "rp_BusinessRetirement.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.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.lblReportDate        = new DevExpress.XtraReports.UI.XRLabel();
        this.lblTitle             = 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();
        ((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.lblReportDate,
            this.lblTitle
        });
        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;
        //
        // lblTitle
        //
        this.lblTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.lblTitle.Name                           = "lblTitle";
        this.lblTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblTitle.StylePriority.UseFont          = false;
        this.lblTitle.StylePriority.UseTextAlignment = false;
        this.lblTitle.Text                           = "BÁO CÁO CBCNV ĐẾN THỜI HẠN NGHỈ HƯU";
        this.lblTitle.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);
        //
        // 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();
    }
Esempio 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()
 {
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppGroupHeaderBand1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppDetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter3 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.HeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelstrMemberName = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelMembershipID = new DevExpress.XtraReports.UI.XRLabel();
     this.ppChildReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel29,
     this.xrLabel28});
     this.Detail.Font = new System.Drawing.Font("Arial", 8.5F);
     this.Detail.Height = 18;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.mAmount", "{0:$0.00}")});
     this.xrLabel29.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel29.Location = new System.Drawing.Point(208, 0);
     this.xrLabel29.Name = "xrLabel29";
     this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.Size = new System.Drawing.Size(92, 17);
     this.xrLabel29.Text = "xrLabel29";
     this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.strPaymentCode", "")});
     this.xrLabel28.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel28.Location = new System.Drawing.Point(25, 0);
     this.xrLabel28.Name = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.Size = new System.Drawing.Size(158, 17);
     this.xrLabel28.Text = "xrLabel28";
     this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel1.Location = new System.Drawing.Point(25, 92);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.Size = new System.Drawing.Size(92, 17);
     this.xrLabel1.Text = "Membership ID:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail1});
     this.DetailReport1.DataMember = "TblReceipt.Receipt_ReceiptFreebie_Relation";
     this.DetailReport1.Level = 2;
     this.DetailReport1.Name = "DetailReport1";
     this.DetailReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel43,
     this.xrLabel16,
     this.xrLabel15});
     this.Detail1.Height = 25;
     this.Detail1.Name = "Detail1";
     this.Detail1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel43
     //
     this.xrLabel43.Location = new System.Drawing.Point(25, 0);
     this.xrLabel43.Name = "xrLabel43";
     this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.Size = new System.Drawing.Size(83, 25);
     this.xrLabel43.Text = "Free Product :";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strDescription", "")});
     this.xrLabel16.Location = new System.Drawing.Point(108, 0);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.Size = new System.Drawing.Size(283, 25);
     this.xrLabel16.Text = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strItemCode", "")});
     this.xrLabel15.Location = new System.Drawing.Point(392, 0);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.Size = new System.Drawing.Size(100, 25);
     this.xrLabel15.Text = "xrLabel15";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel15.Visible = false;
     //
     // ppGroupHeaderBand1
     //
     this.ppGroupHeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppGroupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("strReceiptNo", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.ppGroupHeaderBand1.Height = 0;
     this.ppGroupHeaderBand1.Name = "ppGroupHeaderBand1";
     this.ppGroupHeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppGroupHeaderBand1.RepeatEveryPage = true;
     this.ppGroupHeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel21.Location = new System.Drawing.Point(25, 75);
     this.xrLabel21.Name = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.Size = new System.Drawing.Size(92, 17);
     this.xrLabel21.Text = "Total Payable:";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strFooter1", "")});
     this.xrLabel47.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel47.Location = new System.Drawing.Point(25, 42);
     this.xrLabel47.Multiline = true;
     this.xrLabel47.Name = "xrLabel47";
     this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.Size = new System.Drawing.Size(308, 17);
     this.xrLabel47.Text = "xrLabel34";
     this.xrLabel47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine2
     //
     this.xrLine2.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine2.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine2.Location = new System.Drawing.Point(8, 100);
     this.xrLine2.Name = "xrLine2";
     this.xrLine2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine2.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mNettAmount", "{0:$0.00}")});
     this.xrLabel25.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel25.Location = new System.Drawing.Point(208, 42);
     this.xrLabel25.Name = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.Size = new System.Drawing.Size(100, 14);
     this.xrLabel25.Text = "xrLabel25";
     this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.nQuantity", "")});
     this.xrLabel10.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel10.Location = new System.Drawing.Point(25, 0);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.Size = new System.Drawing.Size(17, 17);
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppDetailBand1
     //
     this.ppDetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel14,
     this.xrPanel1,
     this.xrLabel13,
     this.xrLabel11,
     this.xrLabel10});
     this.ppDetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppDetailBand1.Height = 47;
     this.ppDetailBand1.Name = "ppDetailBand1";
     this.ppDetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppDetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strFreebieCode", "")});
     this.xrLabel14.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel14.Location = new System.Drawing.Point(208, 33);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.Size = new System.Drawing.Size(117, 14);
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel17,
     this.xrLabel42,
     this.xrLabel44});
     this.xrPanel1.Location = new System.Drawing.Point(192, 17);
     this.xrPanel1.Name = "xrPanel1";
     this.xrPanel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrPanel1.Size = new System.Drawing.Size(141, 16);
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.Location = new System.Drawing.Point(58, 0);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.Size = new System.Drawing.Size(8, 25);
     this.xrLabel17.Text = ")";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel42.Location = new System.Drawing.Point(0, 0);
     this.xrLabel42.Name = "xrLabel42";
     this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.Size = new System.Drawing.Size(16, 25);
     this.xrLabel42.Text = "($";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.DiscountAmt", "")});
     this.xrLabel44.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel44.Location = new System.Drawing.Point(17, 0);
     this.xrLabel44.Name = "xrLabel44";
     this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.Size = new System.Drawing.Size(41, 16);
     this.xrLabel44.Text = "ItemdiscountAmt";
     this.xrLabel44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.mUnitPrice", "{0:$0.00}")});
     this.xrLabel13.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel13.Location = new System.Drawing.Point(208, 0);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.Size = new System.Drawing.Size(116, 15);
     this.xrLabel13.Text = "xrLabel13";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strDescription", "")});
     this.xrLabel11.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel11.Location = new System.Drawing.Point(42, 0);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.Size = new System.Drawing.Size(141, 19);
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel4.Location = new System.Drawing.Point(25, 125);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.Size = new System.Drawing.Size(83, 17);
     this.xrLabel4.Text = "Cashier ID:";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel22,
     this.xrLabel41,
     this.xrLabel12,
     this.xrLine3,
     this.xrLine2,
     this.xrLabel30,
     this.xrLabel27,
     this.xrLabel26,
     this.xrLabel25,
     this.xrLabel24,
     this.xrLabel23,
     this.xrLabel21,
     this.xrLabel20,
     this.xrLabel18,
     this.xrLabel19});
     this.ReportFooter.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter.Height = 125;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mSubTotal", "{0:$0.00}")});
     this.xrLabel22.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel22.Location = new System.Drawing.Point(208, 8);
     this.xrLabel22.Name = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.Size = new System.Drawing.Size(116, 17);
     this.xrLabel22.Text = "xrLabel22";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel41
     //
     this.xrLabel41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GstTax", "")});
     this.xrLabel41.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel41.Location = new System.Drawing.Point(25, 58);
     this.xrLabel41.Name = "xrLabel41";
     this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel41.Size = new System.Drawing.Size(17, 16);
     this.xrLabel41.Text = "xrLabel41";
     this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel12.Location = new System.Drawing.Point(25, 8);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.Size = new System.Drawing.Size(75, 17);
     this.xrLabel12.Text = "SubTotal:";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine3
     //
     this.xrLine3.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine3.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine3.Location = new System.Drawing.Point(8, 0);
     this.xrLine3.Name = "xrLine3";
     this.xrLine3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine3.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel30
     //
     this.xrLabel30.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel30.Location = new System.Drawing.Point(25, 108);
     this.xrLabel30.Name = "xrLabel30";
     this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.Size = new System.Drawing.Size(92, 17);
     this.xrLabel30.Text = "TENDERED:";
     this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mTotalAmount", "{0:$0.00}")});
     this.xrLabel27.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel27.Location = new System.Drawing.Point(208, 75);
     this.xrLabel27.Name = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.Size = new System.Drawing.Size(100, 23);
     this.xrLabel27.Text = "xrLabel27";
     this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mGSTAmount", "{0:$0.00}")});
     this.xrLabel26.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel26.Location = new System.Drawing.Point(208, 58);
     this.xrLabel26.Name = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.Size = new System.Drawing.Size(100, 16);
     this.xrLabel26.Text = "xrLabel26";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.DiscountAmt", "{0:$0.00}")});
     this.xrLabel24.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel24.Location = new System.Drawing.Point(208, 25);
     this.xrLabel24.Name = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.Size = new System.Drawing.Size(100, 16);
     this.xrLabel24.Text = "xrLabel24";
     this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strFreebieCode", "")});
     this.xrLabel23.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel23.Location = new System.Drawing.Point(117, 25);
     this.xrLabel23.Name = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.Size = new System.Drawing.Size(91, 16);
     this.xrLabel23.Text = "xrLabel23";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel20.Location = new System.Drawing.Point(42, 58);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.Size = new System.Drawing.Size(67, 17);
     this.xrLabel20.Text = "% GST:";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel18.Location = new System.Drawing.Point(25, 25);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.Size = new System.Drawing.Size(83, 17);
     this.xrLabel18.Text = "Bill Discount:";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel19.Location = new System.Drawing.Point(25, 42);
     this.xrLabel19.Name = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.Size = new System.Drawing.Size(75, 17);
     this.xrLabel19.Text = "Nett Value:";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.ReportFooter1});
     this.DetailReport.DataMember = "TblReceipt.Receipt_ReceiptPayment_Relation";
     this.DetailReport.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailReport.Level = 1;
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter1
     //
     this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel49,
     this.xrLabel48,
     this.xrLabel7,
     this.xrLabel6});
     this.ReportFooter1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter1.Height = 49;
     this.ReportFooter1.Name = "ReportFooter1";
     this.ReportFooter1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.ReportFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportFooter1_BeforePrint);
     //
     // xrLabel49
     //
     this.xrLabel49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mOutstandingAmount", "{0:$0.00}")});
     this.xrLabel49.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel49.Location = new System.Drawing.Point(208, 17);
     this.xrLabel49.Name = "xrLabel49";
     this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.Size = new System.Drawing.Size(75, 17);
     this.xrLabel49.Text = "xrLabel36";
     this.xrLabel49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel48
     //
     this.xrLabel48.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel48.Location = new System.Drawing.Point(25, 17);
     this.xrLabel48.Name = "xrLabel48";
     this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.Size = new System.Drawing.Size(183, 17);
     this.xrLabel48.Text = "OutStanding Amount :";
     this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel7.Location = new System.Drawing.Point(25, 0);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Size = new System.Drawing.Size(183, 17);
     this.xrLabel7.Text = "GST Collected For this Bill:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GSTPaid", "{0:$0.00}")});
     this.xrLabel6.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel6.Location = new System.Drawing.Point(208, 0);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Size = new System.Drawing.Size(75, 17);
     this.xrLabel6.Text = "xrLabel36";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine4
     //
     this.xrLine4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine4.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine4.Location = new System.Drawing.Point(8, 0);
     this.xrLine4.Name = "xrLine4";
     this.xrLine4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine4.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel31
     //
     this.xrLabel31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader1", "")});
     this.xrLabel31.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel31.Location = new System.Drawing.Point(25, 0);
     this.xrLabel31.Name = "xrLabel31";
     this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.Size = new System.Drawing.Size(317, 17);
     this.xrLabel31.Text = "xrLabel31";
     this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter3
     //
     this.ReportFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel47,
     this.xrLabel40,
     this.xrLine4,
     this.xrLabel36,
     this.xrLabel35});
     this.ReportFooter3.Name = "ReportFooter3";
     //
     // xrLabel40
     //
     this.xrLabel40.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel40.Location = new System.Drawing.Point(25, 67);
     this.xrLabel40.Multiline = true;
     this.xrLabel40.Name = "xrLabel40";
     this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel40.Size = new System.Drawing.Size(308, 17);
     this.xrLabel40.Text = "Amore Fitness is an award winning company and its once again cerfitied ISO9001:20" +
         "08 for quality assurance and service execellence";
     this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.RewardPoint", "")});
     this.xrLabel36.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel36.Location = new System.Drawing.Point(208, 17);
     this.xrLabel36.Name = "xrLabel36";
     this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.Size = new System.Drawing.Size(100, 17);
     this.xrLabel36.Text = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel35
     //
     this.xrLabel35.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel35.Location = new System.Drawing.Point(25, 17);
     this.xrLabel35.Name = "xrLabel35";
     this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.Size = new System.Drawing.Size(200, 17);
     this.xrLabel35.Text = "BALANCE REWARDS POINTS: ";
     this.xrLabel35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel45,
     this.xrLabel46});
     this.Detail3.Height = 25;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_FreePackage_Relation.strDescription", "")});
     this.xrLabel45.Location = new System.Drawing.Point(108, 0);
     this.xrLabel45.Name = "xrLabel45";
     this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.Size = new System.Drawing.Size(284, 25);
     this.xrLabel45.Text = "xrLabel45";
     this.xrLabel45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel46
     //
     this.xrLabel46.Location = new System.Drawing.Point(25, 0);
     this.xrLabel46.Name = "xrLabel46";
     this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.Size = new System.Drawing.Size(100, 25);
     this.xrLabel46.Text = "Free Package :";
     this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailBand1
     //
     this.DetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLine1,
     this.xrLabel9});
     this.DetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailBand1.Height = 25;
     this.DetailBand1.Name = "DetailBand1";
     this.DetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine1
     //
     this.xrLine1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine1.Location = new System.Drawing.Point(8, 17);
     this.xrLine1.Name = "xrLine1";
     this.xrLine1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine1.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel9.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel9.Location = new System.Drawing.Point(42, 0);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.Size = new System.Drawing.Size(100, 17);
     this.xrLabel9.Text = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel9.Visible = false;
     //
     // xrLabel33
     //
     this.xrLabel33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader3", "")});
     this.xrLabel33.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel33.Location = new System.Drawing.Point(25, 33);
     this.xrLabel33.Name = "xrLabel33";
     this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel33.Size = new System.Drawing.Size(317, 16);
     this.xrLabel33.Text = "xrLabel33";
     this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nSalespersonID", "")});
     this.xrLabel3.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel3.Location = new System.Drawing.Point(117, 108);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.Size = new System.Drawing.Size(108, 19);
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel39
     //
     this.xrLabel39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel39.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel39.Location = new System.Drawing.Point(33, 142);
     this.xrLabel39.Name = "xrLabel39";
     this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel39.Size = new System.Drawing.Size(75, 17);
     this.xrLabel39.Text = "xrLabel6";
     this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.dtDate", "{0:dddd, dd MMMM yyyy}")});
     this.xrLabel37.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel37.Location = new System.Drawing.Point(108, 142);
     this.xrLabel37.Name = "xrLabel37";
     this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.Size = new System.Drawing.Size(234, 17);
     this.xrLabel37.Text = "xrLabel37";
     this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel32
     //
     this.xrLabel32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader2", "")});
     this.xrLabel32.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel32.Location = new System.Drawing.Point(25, 17);
     this.xrLabel32.Name = "xrLabel32";
     this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel32.Size = new System.Drawing.Size(317, 17);
     this.xrLabel32.Text = "xrLabel32";
     this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel2.Location = new System.Drawing.Point(25, 108);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.Size = new System.Drawing.Size(92, 17);
     this.xrLabel2.Text = "Salesperson ID:";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail3,
     this.ReportFooter3});
     this.DetailReport3.DataMember = "TblReceipt.Receipt_FreePackage_Relation";
     this.DetailReport3.Level = 3;
     this.DetailReport3.Name = "DetailReport3";
     //
     // HeaderBand1
     //
     this.HeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel8,
     this.xrLabel39,
     this.xrLabel38,
     this.xrLabel37,
     this.xrLabel34,
     this.xrLabel33,
     this.xrLabel32,
     this.xrLabel31,
     this.xrLabel5,
     this.xrLabel4,
     this.xrLabel3,
     this.xrLabel2,
     this.xrLabelstrMemberName,
     this.xrLabelMembershipID,
     this.xrLabel1});
     this.HeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.HeaderBand1.Height = 159;
     this.HeaderBand1.Name = "HeaderBand1";
     this.HeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.HeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader5", "")});
     this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel8.Location = new System.Drawing.Point(25, 67);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.Size = new System.Drawing.Size(317, 17);
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel38
     //
     this.xrLabel38.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel38.Location = new System.Drawing.Point(25, 142);
     this.xrLabel38.Name = "xrLabel38";
     this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.Size = new System.Drawing.Size(17, 17);
     this.xrLabel38.Text = "#";
     this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel34
     //
     this.xrLabel34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader4", "")});
     this.xrLabel34.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel34.Location = new System.Drawing.Point(25, 50);
     this.xrLabel34.Name = "xrLabel34";
     this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel34.Size = new System.Drawing.Size(317, 17);
     this.xrLabel34.Text = "xrLabel34";
     this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nCashierID", "")});
     this.xrLabel5.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel5.Location = new System.Drawing.Point(117, 125);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.Size = new System.Drawing.Size(83, 19);
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelstrMemberName
     //
     this.xrLabelstrMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMemberName", "")});
     this.xrLabelstrMemberName.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelstrMemberName.Location = new System.Drawing.Point(167, 92);
     this.xrLabelstrMemberName.Name = "xrLabelstrMemberName";
     this.xrLabelstrMemberName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelstrMemberName.Size = new System.Drawing.Size(109, 17);
     this.xrLabelstrMemberName.Text = "Member Name";
     this.xrLabelstrMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelMembershipID
     //
     this.xrLabelMembershipID.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMembershipID", "")});
     this.xrLabelMembershipID.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelMembershipID.Location = new System.Drawing.Point(117, 92);
     this.xrLabelMembershipID.Name = "xrLabelMembershipID";
     this.xrLabelMembershipID.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelMembershipID.Size = new System.Drawing.Size(58, 17);
     this.xrLabelMembershipID.Text = "xrLabelMembershipID";
     this.xrLabelMembershipID.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppChildReport1
     //
     this.ppChildReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.ppDetailBand1,
     this.ReportFooter});
     this.ppChildReport1.DataMember = "TblReceipt.Receipt_ReceiptEntries_Relation";
     this.ppChildReport1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppChildReport1.Name = "ppChildReport1";
     this.ppChildReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppChildReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Receipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.DetailBand1,
     this.HeaderBand1,
     this.ppGroupHeaderBand1,
     this.ppChildReport1,
     this.DetailReport,
     this.DetailReport1,
     this.DetailReport3});
     this.DataMember = "TblReceipt";
     this.Margins = new System.Drawing.Printing.Margins(0, 48, 0, 12);
     this.PageHeight = 900;
     this.PageWidth = 544;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.PreviewRowCount = 100;
     this.Version = "8.3";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio 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()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.pccData      = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel88    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel87    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel92    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel90    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel89    = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel91    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel5     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel63    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel76    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel77    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel78    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel79    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel80    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel81    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel82    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel83    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel84    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel85    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel86    = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel10    = new DevExpress.XtraReports.UI.XRLabel();
     this.datePeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel8     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6     = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pccData
     });
     this.Detail.HeightF       = 79.16705F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pccData
     //
     this.pccData.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.pccData.Name          = "pccData";
     this.pccData.SizeF         = new System.Drawing.SizeF(1074F, 78.125F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     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       = 20.83333F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel88
     //
     this.xrLabel88.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel88.LocationFloat                  = new DevExpress.Utils.PointFloat(316.8061F, 10F);
     this.xrLabel88.Name                           = "xrLabel88";
     this.xrLabel88.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel88.SizeF                          = new System.Drawing.SizeF(44.51471F, 23F);
     this.xrLabel88.StylePriority.UseFont          = false;
     this.xrLabel88.StylePriority.UseTextAlignment = false;
     this.xrLabel88.Text                           = "........";
     this.xrLabel88.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel87
     //
     this.xrLabel87.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel87.LocationFloat                  = new DevExpress.Utils.PointFloat(411.6497F, 10F);
     this.xrLabel87.Name                           = "xrLabel87";
     this.xrLabel87.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel87.SizeF                          = new System.Drawing.SizeF(36.24554F, 23F);
     this.xrLabel87.StylePriority.UseFont          = false;
     this.xrLabel87.StylePriority.UseTextAlignment = false;
     this.xrLabel87.Text                           = "........";
     this.xrLabel87.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel92
     //
     this.xrLabel92.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel92.LocationFloat                  = new DevExpress.Utils.PointFloat(361.3208F, 10F);
     this.xrLabel92.Name                           = "xrLabel92";
     this.xrLabel92.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel92.SizeF                          = new System.Drawing.SizeF(50.32892F, 22.99998F);
     this.xrLabel92.StylePriority.UseFont          = false;
     this.xrLabel92.StylePriority.UseTextAlignment = false;
     this.xrLabel92.Text                           = "năm";
     this.xrLabel92.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel90
     //
     this.xrLabel90.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel90.LocationFloat                  = new DevExpress.Utils.PointFloat(224.1299F, 10F);
     this.xrLabel90.Name                           = "xrLabel90";
     this.xrLabel90.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel90.SizeF                          = new System.Drawing.SizeF(50.61674F, 23F);
     this.xrLabel90.StylePriority.UseFont          = false;
     this.xrLabel90.StylePriority.UseTextAlignment = false;
     this.xrLabel90.Text                           = "......";
     this.xrLabel90.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel89
     //
     this.xrLabel89.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel89.LocationFloat                  = new DevExpress.Utils.PointFloat(274.7466F, 10F);
     this.xrLabel89.Name                           = "xrLabel89";
     this.xrLabel89.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel89.SizeF                          = new System.Drawing.SizeF(42.05948F, 23F);
     this.xrLabel89.StylePriority.UseFont          = false;
     this.xrLabel89.StylePriority.UseTextAlignment = false;
     this.xrLabel89.Text                           = "tháng";
     this.xrLabel89.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel91,
         this.xrPanel5,
         this.xrLabel90,
         this.xrLabel89,
         this.xrLabel92,
         this.xrLabel87,
         this.xrLabel88
     });
     this.ReportFooter.HeightF = 141.6667F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLabel91
     //
     this.xrLabel91.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel91.LocationFloat                  = new DevExpress.Utils.PointFloat(87.3166F, 9.999996F);
     this.xrLabel91.Name                           = "xrLabel91";
     this.xrLabel91.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel91.SizeF                          = new System.Drawing.SizeF(136.8133F, 23F);
     this.xrLabel91.StylePriority.UseFont          = false;
     this.xrLabel91.StylePriority.UseTextAlignment = false;
     this.xrLabel91.Text                           = "Đã ghi Sổ Cái ngày";
     this.xrLabel91.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPanel5
     //
     this.xrPanel5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel63,
         this.xrLabel76,
         this.xrLabel77,
         this.xrLabel78,
         this.xrLabel79,
         this.xrLabel80,
         this.xrLabel81,
         this.xrLabel82,
         this.xrLabel83,
         this.xrLabel84,
         this.xrLabel85,
         this.xrLabel86
     });
     this.xrPanel5.LocationFloat = new DevExpress.Utils.PointFloat(51.99069F, 33.00003F);
     this.xrPanel5.Name          = "xrPanel5";
     this.xrPanel5.SizeF         = new System.Drawing.SizeF(970.0186F, 97.18417F);
     //
     // xrLabel63
     //
     this.xrLabel63.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel63.LocationFloat                  = new DevExpress.Utils.PointFloat(678.1173F, 10F);
     this.xrLabel63.Name                           = "xrLabel63";
     this.xrLabel63.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel63.SizeF                          = new System.Drawing.SizeF(46.06677F, 22.99999F);
     this.xrLabel63.StylePriority.UseFont          = false;
     this.xrLabel63.StylePriority.UseTextAlignment = false;
     this.xrLabel63.Text                           = "Ngày";
     this.xrLabel63.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel76
     //
     this.xrLabel76.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel76.LocationFloat                  = new DevExpress.Utils.PointFloat(16.99219F, 32.99971F);
     this.xrLabel76.Name                           = "xrLabel76";
     this.xrLabel76.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel76.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel76.StylePriority.UseFont          = false;
     this.xrLabel76.StylePriority.UseTextAlignment = false;
     this.xrLabel76.Text                           = "Người ghi sổ";
     this.xrLabel76.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel77
     //
     this.xrLabel77.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel77.LocationFloat                  = new DevExpress.Utils.PointFloat(16.99219F, 56.00004F);
     this.xrLabel77.Name                           = "xrLabel77";
     this.xrLabel77.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel77.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel77.StylePriority.UseFont          = false;
     this.xrLabel77.StylePriority.UseTextAlignment = false;
     this.xrLabel77.Text                           = "(Ký, họ tên)";
     this.xrLabel77.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel78
     //
     this.xrLabel78.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel78.LocationFloat                  = new DevExpress.Utils.PointFloat(367.8441F, 55.99985F);
     this.xrLabel78.Name                           = "xrLabel78";
     this.xrLabel78.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel78.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel78.StylePriority.UseFont          = false;
     this.xrLabel78.StylePriority.UseTextAlignment = false;
     this.xrLabel78.Text                           = "(Ký, họ tên)";
     this.xrLabel78.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel79
     //
     this.xrLabel79.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel79.LocationFloat                  = new DevExpress.Utils.PointFloat(367.8441F, 32.99977F);
     this.xrLabel79.Name                           = "xrLabel79";
     this.xrLabel79.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel79.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel79.StylePriority.UseFont          = false;
     this.xrLabel79.StylePriority.UseTextAlignment = false;
     this.xrLabel79.Text                           = "Kế toán tổng hợp";
     this.xrLabel79.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel80
     //
     this.xrLabel80.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel80.LocationFloat                  = new DevExpress.Utils.PointFloat(735.7435F, 32.99998F);
     this.xrLabel80.Name                           = "xrLabel80";
     this.xrLabel80.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel80.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00001F);
     this.xrLabel80.StylePriority.UseFont          = false;
     this.xrLabel80.StylePriority.UseTextAlignment = false;
     this.xrLabel80.Text                           = "Kế toán trưởng";
     this.xrLabel80.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel81
     //
     this.xrLabel81.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel81.LocationFloat                  = new DevExpress.Utils.PointFloat(735.7435F, 55.99999F);
     this.xrLabel81.Name                           = "xrLabel81";
     this.xrLabel81.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel81.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00002F);
     this.xrLabel81.StylePriority.UseFont          = false;
     this.xrLabel81.StylePriority.UseTextAlignment = false;
     this.xrLabel81.Text                           = "(Ký, họ tên)";
     this.xrLabel81.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel82
     //
     this.xrLabel82.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel82.LocationFloat                  = new DevExpress.Utils.PointFloat(814.1173F, 10F);
     this.xrLabel82.Name                           = "xrLabel82";
     this.xrLabel82.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel82.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel82.StylePriority.UseFont          = false;
     this.xrLabel82.StylePriority.UseTextAlignment = false;
     this.xrLabel82.Text                           = "........";
     this.xrLabel82.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel83
     //
     this.xrLabel83.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel83.LocationFloat                  = new DevExpress.Utils.PointFloat(898.2365F, 10F);
     this.xrLabel83.Name                           = "xrLabel83";
     this.xrLabel83.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel83.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel83.StylePriority.UseFont          = false;
     this.xrLabel83.StylePriority.UseTextAlignment = false;
     this.xrLabel83.Text                           = "........";
     this.xrLabel83.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel84
     //
     this.xrLabel84.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel84.LocationFloat                  = new DevExpress.Utils.PointFloat(861.9909F, 10F);
     this.xrLabel84.Name                           = "xrLabel84";
     this.xrLabel84.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel84.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel84.StylePriority.UseFont          = false;
     this.xrLabel84.StylePriority.UseTextAlignment = false;
     this.xrLabel84.Text                           = "năm";
     this.xrLabel84.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel85
     //
     this.xrLabel85.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel85.LocationFloat                  = new DevExpress.Utils.PointFloat(766.2439F, 9.999962F);
     this.xrLabel85.Name                           = "xrLabel85";
     this.xrLabel85.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel85.SizeF                          = new System.Drawing.SizeF(47.87347F, 22.99999F);
     this.xrLabel85.StylePriority.UseFont          = false;
     this.xrLabel85.StylePriority.UseTextAlignment = false;
     this.xrLabel85.Text                           = "tháng";
     this.xrLabel85.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel86
     //
     this.xrLabel86.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel86.LocationFloat                  = new DevExpress.Utils.PointFloat(724.1843F, 9.999962F);
     this.xrLabel86.Name                           = "xrLabel86";
     this.xrLabel86.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel86.SizeF                          = new System.Drawing.SizeF(42.05951F, 22.99999F);
     this.xrLabel86.StylePriority.UseFont          = false;
     this.xrLabel86.StylePriority.UseTextAlignment = false;
     this.xrLabel86.Text                           = "......";
     this.xrLabel86.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel9,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel7,
         this.xrPanel2
     });
     this.ReportHeader.HeightF = 215.625F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.datePeriod, "Text", "{0:yyyy}")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(579.7263F, 185.5066F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(36.41501F, 23F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel8";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // datePeriod
     //
     this.datePeriod.Description = "Parameter1";
     this.datePeriod.Name        = "datePeriod";
     this.datePeriod.Type        = typeof(System.DateTime);
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.datePeriod, "Text", "{0:MM}")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(495.6074F, 185.625F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(36.41501F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(194.4827F, 136.5066F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(678.0366F, 23.00003F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Phần I: TẬP HỢP CHI PHÍ SẢN XUẤT, KINH DOANH TOÀN DOANH NGHIỆP";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(208.5397F, 104.5168F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "NHẬT KÝ CHỨNG TỪ SỐ 7";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(447.7339F, 185.5066F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Tháng";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(543.4807F, 185.5066F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "năm";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(162.5F, 160.5F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(754.1512F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Ghi Có các TK: 142, 152, 153, 154, 214, 241, 242, 334, 335, 621, 622, 627";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(13.16695F, 10.00001F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(1050.833F, 72.11725F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 7.117249F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 7.117249F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = ".........................";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 39.11728F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Địa chỉ:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 39.11728F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = ".........................";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 7.117249F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(234.2751F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Mẫu số S04a7-DN";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 30.11721F);
     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(234.2751F, 32.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Ban hành theo QĐ số 15/2006/QĐ-BTC \r\nngày 20/03/2006 của Bộ trưởng BTC)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // S04a7_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportFooter,
         this.ReportHeader
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 15, 0, 21);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.datePeriod
     });
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio n. 22
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_austfeed_ThongBaoPhatNVDiLamMuon.resx";

        System.Resources.ResourceManager    resources  = global::Resources.rp_austfeed_ThongBaoPhatNVDiLamMuon.ResourceManager;
        DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
        DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable1      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = 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.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrRichText1   = new DevExpress.XtraReports.UI.XRRichText();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.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.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel22     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel21     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel20     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel19     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel18     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel17     = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader    = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.Detail.HeightF       = 24.99996F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        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(675.9999F, 24.99996F);
        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.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name         = "xrTableCell1";
        this.xrTableCell1.Weight       = 0.21580479062046745D;
        this.xrTableCell1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell1_BeforePrint);
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name    = "xrTableCell2";
        this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell2.StylePriority.UsePadding       = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell2.Weight        = 0.854481924790652D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name    = "xrTableCell3";
        this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell3.StylePriority.UsePadding       = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell3.Weight        = 0.84421915777635825D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Weight = 0.44298153051766043D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Weight = 0.41151113462092626D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Multiline = true;
        this.xrTableCell6.Name      = "xrTableCell6";
        this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell6.StylePriority.UsePadding       = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        xrSummary1.FormatString         = "{0:n0}";
        this.xrTableCell6.Summary       = xrSummary1;
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell6.Weight        = 0.51787273246951926D;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(675.9999F, 46.87496F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "STT";
        this.xrTableCell7.Weight = 0.20016214578766822D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Họ và tên";
        this.xrTableCell8.Weight = 0.79254449862975729D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name   = "xrTableCell9";
        this.xrTableCell9.Text   = "Bộ phận";
        this.xrTableCell9.Weight = 0.7830258875899232D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name   = "xrTableCell10";
        this.xrTableCell10.Text   = "Ngày";
        this.xrTableCell10.Weight = 0.41087225154248957D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "Giờ";
        this.xrTableCell11.Weight = 0.38168269445795877D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Multiline = true;
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.Text      = "Số tiền phạt\r\n(VNĐ)";
        this.xrTableCell12.Weight    = 0.48033466089534482D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 38F;
        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       = 48F;
        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.xrRichText1,
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 250.7501F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrRichText1
        //
        this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(1.589457E-05F, 171.5001F);
        this.xrRichText1.Name                  = "xrRichText1";
        this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
        this.xrRichText1.SizeF                 = new System.Drawing.SizeF(676F, 69.24998F);
        //
        // xrLabel9
        //
        this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(0.0001430511F, 129.5833F);
        this.xrLabel9.Name                           = "xrLabel9";
        this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF                          = new System.Drawing.SizeF(675.9999F, 23F);
        this.xrLabel9.StylePriority.UseFont          = false;
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.Text                           = "Về việc: Phạt nhân viên đi làm muộn";
        this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel8
        //
        this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(1.589457E-05F, 102.4166F);
        this.xrLabel8.Name                           = "xrLabel8";
        this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF                          = new System.Drawing.SizeF(675.9999F, 27.16667F);
        this.xrLabel8.StylePriority.UseFont          = false;
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        this.xrLabel8.Text                           = "THÔNG BÁO";
        this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(438.5417F, 45.99997F);
        this.xrLabel7.Name          = "xrLabel7";
        this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF         = new System.Drawing.SizeF(165.625F, 10.33334F);
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.Text          = "------------------------------";
        this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Italic);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(345.8333F, 68.99995F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(311.8749F, 23F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Hưng Yên, ngày......tháng.......năm.........";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(372.2499F, 22.99999F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(293.75F, 23F);
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.Text                           = "Độc lập -Tự do-Hạnh phúc";
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 10F);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(48.95829F, 48.95833F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(179.1667F, 23F);
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Số:                /TB-HCNS";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel3
        //
        this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(62.5F, 22.99999F);
        this.xrLabel3.Name          = "xrLabel3";
        this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF         = new System.Drawing.SizeF(165.625F, 10.5F);
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text          = "------------------------------";
        this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(372.25F, 0F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(293.75F, 23F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "CỘNG HÒA XÃ HỘI CHỦ NGHĨA VIỆT NAM";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00001F, 0F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(282.2917F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "CÔNG TY CỔ PHẦN AUSTFEED VIỆT NAM";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel22,
            this.xrLabel21,
            this.xrLabel20,
            this.xrLabel19,
            this.xrLabel18,
            this.xrLabel17
        });
        this.ReportFooter.HeightF = 191F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrLabel22
        //
        this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(20.33335F, 155.5417F);
        this.xrLabel22.Name          = "xrLabel22";
        this.xrLabel22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel22.SizeF         = new System.Drawing.SizeF(178.125F, 23F);
        this.xrLabel22.Text          = "-Lưu VT";
        //
        // xrLabel21
        //
        this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(20.33335F, 132.5417F);
        this.xrLabel21.Name          = "xrLabel21";
        this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel21.SizeF         = new System.Drawing.SizeF(178.125F, 23F);
        this.xrLabel21.Text          = "-Các nhân viên có tên trên";
        //
        // xrLabel20
        //
        this.xrLabel20.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel20.LocationFloat         = new DevExpress.Utils.PointFloat(20.33335F, 109.5417F);
        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.Text                  = "Nơi nhận:";
        //
        // xrLabel19
        //
        this.xrLabel19.Font                           = new System.Drawing.Font("Times New Roman", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
        this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(393.7501F, 159.375F);
        this.xrLabel19.Name                           = "xrLabel19";
        this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel19.SizeF                          = new System.Drawing.SizeF(242.2291F, 23F);
        this.xrLabel19.StylePriority.UseFont          = false;
        this.xrLabel19.StylePriority.UseTextAlignment = false;
        this.xrLabel19.Text                           = "Nguyễn Viết Trung";
        this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel18
        //
        this.xrLabel18.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(393.7501F, 23.95833F);
        this.xrLabel18.Name                           = "xrLabel18";
        this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel18.SizeF                          = new System.Drawing.SizeF(242.2291F, 27.16667F);
        this.xrLabel18.StylePriority.UseFont          = false;
        this.xrLabel18.StylePriority.UseTextAlignment = false;
        this.xrLabel18.Text                           = "GIÁM ĐỐC HCNS";
        this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel17
        //
        this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(20.33335F, 0F);
        this.xrLabel17.Name                           = "xrLabel17";
        this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel17.SizeF                          = new System.Drawing.SizeF(199.7889F, 25.95833F);
        this.xrLabel17.StylePriority.UseFont          = false;
        this.xrLabel17.StylePriority.UseTextAlignment = false;
        this.xrLabel17.Text                           = "Trân trọng thông báo!";
        this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.PageHeader.HeightF = 46.87496F;
        this.PageHeader.Name    = "PageHeader";
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 24.99996F;
        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.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        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(675.9999F, 24.99996F);
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell18
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell18.Multiline                      = true;
        this.xrTableCell18.Name                           = "xrTableCell18";
        this.xrTableCell18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UsePadding       = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        xrSummary2.FormatString                           = "{0:n0}";
        this.xrTableCell18.Summary                        = xrSummary2;
        this.xrTableCell18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell18.Weight                         = 3.2868712707955838D;
        //
        // rp_austfeed_ThongBaoPhatNVDiLamMuon
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.ReportFooter,
            this.PageHeader,
            this.GroupHeader1
        });
        this.Margins    = new System.Drawing.Printing.Margins(74, 77, 38, 48);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio 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()
    {
        string resourceFileName = "DanhSachQuanNhan1.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.xrtmanhanvien   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrttencbcnv     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaysinh    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtgioitinh     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_phongban    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtdienthoai    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaytgcm    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaynhapngu = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtngayxuatngu  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrttrinhdo      = 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.xrl_TenCongTy   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho = 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.xrTableCell9    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12   = new DevExpress.XtraReports.UI.XRTableCell();
        this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3        = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3     = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrl_tenphongban = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter    = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_ten1        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten3        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat  = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer2     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1     = 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       = 25.41666F;
        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.BackColor   = System.Drawing.Color.Transparent;
        this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
        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(0.2084176F, 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(1073.583F, 25.41666F);
        this.xrTable2.SnapLineMargin                 = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable2.StylePriority.UseBackColor     = false;
        this.xrTable2.StylePriority.UseBorderColor   = false;
        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.BorderColor = System.Drawing.SystemColors.ActiveCaptionText;
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrtstt,
            this.xrtmanhanvien,
            this.xrttencbcnv,
            this.xrt_ngaysinh,
            this.xrtgioitinh,
            this.xrt_phongban,
            this.xrtdienthoai,
            this.xrt_ngaytgcm,
            this.xrt_ngaynhapngu,
            this.xrtngayxuatngu,
            this.xrttrinhdo
        });
        this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTableRow2.Name = "xrTableRow2";
        this.xrTableRow2.StylePriority.UseBorderColor   = false;
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrtstt
        //
        this.xrtstt.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrtstt.Name        = "xrtstt";
        this.xrtstt.StylePriority.UseBorderColor   = false;
        this.xrtstt.StylePriority.UseTextAlignment = false;
        this.xrtstt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtstt.Weight        = 0.35416665980020634D;
        this.xrtstt.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrtmanhanvien
        //
        this.xrtmanhanvien.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrtmanhanvien.Name        = "xrtmanhanvien";
        this.xrtmanhanvien.StylePriority.UseBorderColor   = false;
        this.xrtmanhanvien.StylePriority.UseTextAlignment = false;
        this.xrtmanhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtmanhanvien.Weight        = 0.7506832432563606D;
        //
        // xrttencbcnv
        //
        this.xrttencbcnv.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrttencbcnv.Name        = "xrttencbcnv";
        this.xrttencbcnv.Padding     = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrttencbcnv.StylePriority.UseBorderColor   = false;
        this.xrttencbcnv.StylePriority.UsePadding       = false;
        this.xrttencbcnv.StylePriority.UseTextAlignment = false;
        this.xrttencbcnv.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrttencbcnv.Weight        = 1.2292188748634483D;
        //
        // xrt_ngaysinh
        //
        this.xrt_ngaysinh.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrt_ngaysinh.Name        = "xrt_ngaysinh";
        this.xrt_ngaysinh.StylePriority.UseBorderColor   = false;
        this.xrt_ngaysinh.StylePriority.UseTextAlignment = false;
        this.xrt_ngaysinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaysinh.Weight        = 0.84817065469120256D;
        //
        // xrtgioitinh
        //
        this.xrtgioitinh.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrtgioitinh.Name        = "xrtgioitinh";
        this.xrtgioitinh.StylePriority.UseBorderColor   = false;
        this.xrtgioitinh.StylePriority.UseTextAlignment = false;
        this.xrtgioitinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtgioitinh.Weight        = 0.4397370225556122D;
        //
        // xrt_phongban
        //
        this.xrt_phongban.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrt_phongban.Name        = "xrt_phongban";
        this.xrt_phongban.StylePriority.UseBorderColor   = false;
        this.xrt_phongban.StylePriority.UseTextAlignment = false;
        this.xrt_phongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_phongban.Weight        = 2.040611817675265D;
        //
        // xrtdienthoai
        //
        this.xrtdienthoai.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrtdienthoai.Name        = "xrtdienthoai";
        this.xrtdienthoai.StylePriority.UseBorderColor   = false;
        this.xrtdienthoai.StylePriority.UseTextAlignment = false;
        this.xrtdienthoai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrtdienthoai.Weight        = 0.88018870037527053D;
        //
        // xrt_ngaytgcm
        //
        this.xrt_ngaytgcm.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrt_ngaytgcm.Name        = "xrt_ngaytgcm";
        this.xrt_ngaytgcm.StylePriority.UseBorderColor   = false;
        this.xrt_ngaytgcm.StylePriority.UseTextAlignment = false;
        this.xrt_ngaytgcm.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaytgcm.Weight        = 1.0265116238395102D;
        //
        // xrt_ngaynhapngu
        //
        this.xrt_ngaynhapngu.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrt_ngaynhapngu.Name        = "xrt_ngaynhapngu";
        this.xrt_ngaynhapngu.StylePriority.UseBorderColor   = false;
        this.xrt_ngaynhapngu.StylePriority.UseTextAlignment = false;
        this.xrt_ngaynhapngu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaynhapngu.Weight        = 0.95512421425127536D;
        //
        // xrtngayxuatngu
        //
        this.xrtngayxuatngu.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrtngayxuatngu.Name        = "xrtngayxuatngu";
        this.xrtngayxuatngu.StylePriority.UseBorderColor   = false;
        this.xrtngayxuatngu.StylePriority.UseTextAlignment = false;
        this.xrtngayxuatngu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtngayxuatngu.Weight        = 1.112637453939253D;
        //
        // xrttrinhdo
        //
        this.xrttrinhdo.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrttrinhdo.Name        = "xrttrinhdo";
        this.xrttrinhdo.StylePriority.UseBorderColor   = false;
        this.xrttrinhdo.StylePriority.UseTextAlignment = false;
        this.xrttrinhdo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrttrinhdo.Weight        = 1.1529443431192583D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 44F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 50F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_TenCongTy,
            this.xrl_TitleBC,
            this.xrl_TenThanhPho
        });
        this.ReportHeader.HeightF = 88F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // 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(0F, 25F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(475.5573F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 50F);
        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(1073.792F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH QUÂN NHÂN TRONG CÔNG TY";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrl_TenThanhPho.Name                           = "xrl_TenThanhPho";
        this.xrl_TenThanhPho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenThanhPho.SizeF                          = new System.Drawing.SizeF(475.5573F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 38.33331F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.BackColor = System.Drawing.Color.Transparent;
        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(0.2083302F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1073.792F, 38.33331F);
        this.xrTable1.StylePriority.UseBackColor     = false;
        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.BackColor = System.Drawing.Color.WhiteSmoke;
        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.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell12
        });
        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.UseBackColor     = false;
        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.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell1.Name      = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBackColor     = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.35416665980020634D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell2.Name      = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBackColor     = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã nhân viên";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.75116131289318933D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBackColor     = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Tên CBCNV";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 1.229255678839198D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseBackColor     = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày sinh";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.85939851639173792D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseBackColor     = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Giới tính";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.44135332176602393D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell6.Multiline = true;
        this.xrTableCell6.Name      = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseBackColor     = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Phòng ban\r\n";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 2.0482152227362111D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell7.Name      = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseBackColor     = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Điện thoại";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 0.88345518138296919D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseBackColor     = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Ngày tham gia cách mạng";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 1.0303134597875272D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell9.Name      = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBackColor     = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "Ngày nhập ngũ";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.95869450720580818D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseBackColor     = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "Ngày xuất ngũ";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight        = 1.1167422340967257D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseBackColor     = false;
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.Text          = "Trình độ";
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight        = 1.1572384934795448D;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25.41666F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrTable3.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF          = new System.Drawing.SizeF(1073.792F, 25.41666F);
        this.xrTable3.SnapLineMargin = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.StylePriority.UseBorderColor   = false;
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UsePadding       = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrTableRow3
        //
        this.xrTableRow3.BorderColor = System.Drawing.SystemColors.ActiveCaptionText;
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrl_tenphongban
        });
        this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTableRow3.Name = "xrTableRow3";
        this.xrTableRow3.StylePriority.UseBorderColor   = false;
        this.xrTableRow3.StylePriority.UseFont          = false;
        this.xrTableRow3.StylePriority.UseTextAlignment = false;
        this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow3.Weight        = 1D;
        //
        // xrl_tenphongban
        //
        this.xrl_tenphongban.BackColor   = System.Drawing.Color.Transparent;
        this.xrl_tenphongban.BorderColor = System.Drawing.SystemColors.ControlText;
        this.xrl_tenphongban.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrl_tenphongban.Name        = "xrl_tenphongban";
        this.xrl_tenphongban.Padding     = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrl_tenphongban.StylePriority.UseBackColor     = false;
        this.xrl_tenphongban.StylePriority.UseBorderColor   = false;
        this.xrl_tenphongban.StylePriority.UseFont          = false;
        this.xrl_tenphongban.StylePriority.UsePadding       = false;
        this.xrl_tenphongban.StylePriority.UseTextAlignment = false;
        this.xrl_tenphongban.Text          = "  sgag";
        this.xrl_tenphongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrl_tenphongban.Weight        = 10.789994608366662D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten1,
            this.xrl_ten2,
            this.xrl_ten3,
            this.xrtngayketxuat,
            this.xrl_footer2,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 181F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // 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(2.608426F, 146.4583F);
        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(289.3651F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.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(377.6084F, 146.4583F);
        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(289.3651F, 23F);
        this.xrl_ten2.StylePriority.UseFont          = false;
        this.xrl_ten2.StylePriority.UseTextAlignment = false;
        this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten3
        //
        this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(790.1084F, 146.4583F);
        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(283.6832F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(790.1083F, 10.00001F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(283.6832F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Hà Nội, ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.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(377.8167F, 32.99999F);
        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(291.366F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "PHÒNG TCHC";
        this.xrl_footer2.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(790.3167F, 32.99999F);
        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(283.6835F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "GIÁM ĐỐC";
        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(2.816709F, 32.99999F);
        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(291.366F, 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;
        //
        // DanhSachQuanNhan1
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.GroupHeader1,
            this.ReportFooter
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(14, 9, 44, 50);
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio 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()
 {
     string resourceFileName = "XtraReport05.resx";
         this.dsTEFollowUp1 = new dsTEFollowUp();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblSchool = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.cdtblhedeTableAdapter1 = new dsTEFollowUpTableAdapters.cdtblhedeTableAdapter();
         this.xRep05TableAdapter1 = new dsTEFollowUpTableAdapters.XRep05TableAdapter();
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // dsTEFollowUp1
         //
         this.dsTEFollowUp1.DataSetName = "dsTEFollowUp";
         this.dsTEFollowUp1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail.HeightF = 50F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseTextAlignment = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // xrTable2
         //
         this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable2.SizeF = new System.Drawing.SizeF(900F, 50F);
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell22,
         this.xrTableCell20,
         this.xrTableCell16,
         this.xrTableCell18,
         this.xrTableCell21,
         this.xrTableCell11});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.CanGrow = false;
         this.xrTableCell10.CanShrink = true;
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.trremark")});
         this.xrTableCell10.Multiline = true;
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.Weight = 0.92361152648925782D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.CanGrow = false;
         this.xrTableCell22.CanShrink = true;
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.mostahdfeen")});
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "xrTableCell22";
         this.xrTableCell22.Weight = 0.40972208658854165D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.CanGrow = false;
         this.xrTableCell20.CanShrink = true;
         this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.todate", "{0:d/M/yyyy}")});
         this.xrTableCell20.Multiline = true;
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "xrTableCell20";
         this.xrTableCell20.Weight = 0.33333361307779946D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.CanGrow = false;
         this.xrTableCell16.CanShrink = true;
         this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.fromdate", "{0:d/M/yyyy}")});
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "xrTableCell16";
         this.xrTableCell16.Weight = 0.33333333333333326D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.CanGrow = false;
         this.xrTableCell18.CanShrink = true;
         this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.trainhours")});
         this.xrTableCell18.Multiline = true;
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseTextAlignment = false;
         this.xrTableCell18.Text = "xrTableCell18";
         this.xrTableCell18.Weight = 0.26388895670572915D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.traindates")});
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "xrTableCell21";
         this.xrTableCell21.Weight = 0.24305501302083338D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep05.trainingname")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.Weight = 0.49305547078450523D;
         //
         // xrTable6
         //
         this.xrTable6.BackColor = System.Drawing.Color.Gray;
         this.xrTable6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrTable6.ForeColor = System.Drawing.Color.White;
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 145.2083F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow13});
         this.xrTable6.SizeF = new System.Drawing.SizeF(899.9999F, 24.99999F);
         this.xrTable6.StylePriority.UseBackColor = false;
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseForeColor = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow13
         //
         this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell39,
         this.xrTableCell14,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell25,
         this.xrTableCell40,
         this.xrTableCell31});
         this.xrTableRow13.Name = "xrTableRow13";
         this.xrTableRow13.Weight = 1D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "ملاحظات";
         this.xrTableCell39.Weight = 0.92361126931419923D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.Text = "المستهدفين";
         this.xrTableCell14.Weight = 0.40972224519010836D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.Text = "الي تاريخ";
         this.xrTableCell12.Weight = 0.33333337984873657D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "من تاريخ";
         this.xrTableCell13.Weight = 0.33333337984873668D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.Text = "عدد الساعات";
         this.xrTableCell25.Weight = 0.26388898108647546D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.Text = "عدد الايام";
         this.xrTableCell40.Weight = 0.24305525791493837D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Text = "الخطة التدريبية";
         this.xrTableCell31.Weight = 0.49305548679680539D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 19F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 62.5F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.StylePriority.UseTextAlignment = false;
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrTable6});
         this.ReportHeader.HeightF = 170.2083F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow2});
         this.xrTable1.SizeF = new System.Drawing.SizeF(900F, 133.3333F);
         this.xrTable1.StylePriority.UseFont = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblSchool,
         this.xrTableCell2,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // lblSchool
         //
         this.lblSchool.Name = "lblSchool";
         this.lblSchool.StylePriority.UseTextAlignment = false;
         this.lblSchool.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblSchool.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dawla")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell3.Weight = 1D;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dept")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 1D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 14F);
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseFont = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "الخطة التدريبية";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell8.Weight = 1D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.wezara")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell9.Weight = 1D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell26});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Weight = 1D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.edara")});
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "xrTableCell26";
         this.xrTableCell26.Weight = 1D;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseTextAlignment = false;
         this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell4.Weight = 1D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.Weight = 1D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell6.Weight = 1D;
         //
         // ReportFooter
         //
         this.ReportFooter.HeightF = 32.29167F;
         this.ReportFooter.Name = "ReportFooter";
         //
         // cdtblhedeTableAdapter1
         //
         this.cdtblhedeTableAdapter1.ClearBeforeFill = true;
         //
         // xRep05TableAdapter1
         //
         this.xRep05TableAdapter1.ClearBeforeFill = true;
         //
         // XtraReport05
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter});
         this.DataMember = "XRep05";
         this.DataSource = this.dsTEFollowUp1;
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(100, 100, 19, 62);
         this.PageHeight = 850;
         this.PageWidth = 1100;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.Version = "12.2";
         this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReport01_DataSourceDemanded);
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio n. 25
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();
    }
Esempio 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();

        }
Esempio n. 27
0
        private void CreateDetailReport(XtraReport report, string dataMember)
        {
            // Create a detail report band and bind it to data.
            DetailReportBand detailReportBand = new DetailReportBand();

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

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

            detailReportBand.Bands.Add(detailReportHeader);

            XRTable tableHeader = new XRTable();

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

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

            XRTableCell cellHeader1 = new XRTableCell();

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

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

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

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

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

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

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

            cellHeader8.Text = "Status";

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

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

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

            tableDetail.BeginInit();

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

            XRTableCell cellDetail1 = new XRTableCell();

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

            XRTableCell cellDetail2 = new XRTableCell();

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

            XRTableCell cellDetail3 = new XRTableCell();

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

            XRTableCell cellDetail4 = new XRTableCell();

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

            XRTableCell cellDetail5 = new XRTableCell();

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

            XRTableCell cellDetail6 = new XRTableCell();

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

            XRTableCell cellDetail7 = new XRTableCell();

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

            XRTableCell cellDetail8 = new XRTableCell();

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

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

            DetailBand detailBand = new DetailBand();

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

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

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

            detailReportBand.Bands.Add(detailReportFooter);

            XRTable tableFooter = new XRTable();

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

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

            XRSummary summary1 = new XRSummary();

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

            XRTableCell cellFooter1 = new XRTableCell();

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

            XRTableCell cellFooter2 = new XRTableCell();

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

            XRSummary summary2 = new XRSummary();

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

            XRTableCell cellFooter3 = new XRTableCell();

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

            XRTableCell cellFooter4 = new XRTableCell();

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

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

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

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

            cellFooter8.Text = "";

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

            // Adjust the table width.
            tableFooter.BeforePrint += tableHeader_BeforePrint; //just copy from tableHeader
            tableFooter.EndInit();
        }
Esempio n. 28
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_DanhSachNhanVienDangKyLamThemGio.resx";

        this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_stt          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_manhanvien   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tennhanvien  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtViTriCongViec = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtTuNgay        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtDenNgay       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtCa            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtTuGio         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtDenGio        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtGhiChu        = 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.xrl_quynam       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenCongTy    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho  = 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.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell13    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter     = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_ten3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1      = new DevExpress.XtraReports.UI.XRLabel();
        this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
        this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3      = new DevExpress.XtraReports.UI.XRTableRow();
        this.grpBoPhan        = 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.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(980.0001F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_stt,
            this.xrt_manhanvien,
            this.xrt_tennhanvien,
            this.xrtViTriCongViec,
            this.xrtTuNgay,
            this.xrtDenNgay,
            this.xrtCa,
            this.xrtTuGio,
            this.xrtDenGio,
            this.xrtGhiChu
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_stt
        //
        this.xrt_stt.Name    = "xrt_stt";
        this.xrt_stt.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_stt.StylePriority.UsePadding = false;
        this.xrt_stt.Weight       = 0.1058926923024659D;
        this.xrt_stt.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrt_manhanvien
        //
        this.xrt_manhanvien.Name    = "xrt_manhanvien";
        this.xrt_manhanvien.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_manhanvien.StylePriority.UsePadding       = false;
        this.xrt_manhanvien.StylePriority.UseTextAlignment = false;
        this.xrt_manhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_manhanvien.Weight        = 0.26047983129795821D;
        //
        // xrt_tennhanvien
        //
        this.xrt_tennhanvien.Name    = "xrt_tennhanvien";
        this.xrt_tennhanvien.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_tennhanvien.StylePriority.UsePadding       = false;
        this.xrt_tennhanvien.StylePriority.UseTextAlignment = false;
        this.xrt_tennhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_tennhanvien.Weight        = 0.43428819739968305D;
        //
        // xrtViTriCongViec
        //
        this.xrtViTriCongViec.Name    = "xrtViTriCongViec";
        this.xrtViTriCongViec.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtViTriCongViec.StylePriority.UsePadding       = false;
        this.xrtViTriCongViec.StylePriority.UseTextAlignment = false;
        this.xrtViTriCongViec.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtViTriCongViec.Weight        = 0.49764785780688892D;
        //
        // xrtTuNgay
        //
        this.xrtTuNgay.Multiline = true;
        this.xrtTuNgay.Name      = "xrtTuNgay";
        this.xrtTuNgay.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtTuNgay.StylePriority.UsePadding       = false;
        this.xrtTuNgay.StylePriority.UseTextAlignment = false;
        this.xrtTuNgay.Text          = "\r\n";
        this.xrtTuNgay.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtTuNgay.Weight        = 0.33529681449592119D;
        //
        // xrtDenNgay
        //
        this.xrtDenNgay.Multiline = true;
        this.xrtDenNgay.Name      = "xrtDenNgay";
        this.xrtDenNgay.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtDenNgay.StylePriority.UsePadding       = false;
        this.xrtDenNgay.StylePriority.UseTextAlignment = false;
        this.xrtDenNgay.Text          = "\r\n";
        this.xrtDenNgay.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtDenNgay.Weight        = 0.32605530816533862D;
        //
        // xrtCa
        //
        this.xrtCa.Multiline = true;
        this.xrtCa.Name      = "xrtCa";
        this.xrtCa.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtCa.StylePriority.UsePadding = false;
        this.xrtCa.Text   = "\r\n";
        this.xrtCa.Weight = 0.15505482097580664D;
        //
        // xrtTuGio
        //
        this.xrtTuGio.Name = "xrtTuGio";
        this.xrtTuGio.StylePriority.UseTextAlignment = false;
        this.xrtTuGio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtTuGio.Weight        = 0.22132105139769576D;
        //
        // xrtDenGio
        //
        this.xrtDenGio.Name = "xrtDenGio";
        this.xrtDenGio.StylePriority.UseTextAlignment = false;
        this.xrtDenGio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtDenGio.Weight        = 0.22132083912554679D;
        //
        // xrtGhiChu
        //
        this.xrtGhiChu.Multiline = true;
        this.xrtGhiChu.Name      = "xrtGhiChu";
        this.xrtGhiChu.Padding   = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtGhiChu.StylePriority.UsePadding       = false;
        this.xrtGhiChu.StylePriority.UseTextAlignment = false;
        this.xrtGhiChu.Text          = "\r\n";
        this.xrtGhiChu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtGhiChu.Weight        = 0.4426425870326951D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 43F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 0F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_quynam,
            this.xrl_TitleBC,
            this.xrl_TenCongTy,
            this.xrl_TenThanhPho
        });
        this.ReportHeader.HeightF = 105.2917F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_quynam
        //
        this.xrl_quynam.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrl_quynam.LocationFloat                  = new DevExpress.Utils.PointFloat(70.83334F, 87.5F);
        this.xrl_quynam.Name                           = "xrl_quynam";
        this.xrl_quynam.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_quynam.SizeF                          = new System.Drawing.SizeF(806.0417F, 17.79166F);
        this.xrl_quynam.StylePriority.UseFont          = false;
        this.xrl_quynam.StylePriority.UseTextAlignment = false;
        this.xrl_quynam.Text                           = "Từ ..../..../..... đến ..../..../......";
        this.xrl_quynam.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 62.5F);
        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(980F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "DANH SÁCH NHÂN VIÊN ĐĂNG KÝ LÀM THÊM GIỜ";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 2F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(443.0199F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 25F);
        this.xrl_TenThanhPho.Name                           = "xrl_TenThanhPho";
        this.xrl_TenThanhPho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenThanhPho.SizeF                          = new System.Drawing.SizeF(443.0199F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 25F;
        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(980.0001F, 25F);
        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.xrTableCell5,
            this.xrTableCell1,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell3,
            this.xrTableCell13,
            this.xrTableCell6,
            this.xrTableCell9,
            this.xrTableCell2
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "STT";
        this.xrTableCell4.Weight = 0.15867718446601944D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Multiline = true;
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.Text      = "Mã cán bộ\r\n";
        this.xrTableCell5.Weight    = 0.39032159268277361D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Tên cán bộ";
        this.xrTableCell1.Weight = 0.6507684768796248D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Vị trí công việc";
        this.xrTableCell7.Weight = 0.745711046243435D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Từ ngày";
        this.xrTableCell8.Weight = 0.50243301552400566D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Đến ngày";
        this.xrTableCell3.Weight = 0.48858458744626376D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "Ca";
        this.xrTableCell13.Weight = 0.23234523064621432D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Từ giờ";
        this.xrTableCell6.Weight = 0.33164335916816007D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name   = "xrTableCell9";
        this.xrTableCell9.Text   = "Đến giờ";
        this.xrTableCell9.Weight = 0.33164335916816007D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Ghi chú";
        this.xrTableCell2.Weight = 0.66328671833632014D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten3,
            this.xrtngayketxuat,
            this.xrl_footer3,
            this.xrl_ten1,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 199F;
        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(702.4167F, 135F);
        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(203.9998F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(640.1559F, 10.00001F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(330.8439F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.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(702.4167F, 35.00001F);
        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(203.9998F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "Phòng HCNS";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_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(85.59151F, 135F);
        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(191.7652F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.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(85.59151F, 35.00001F);
        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(193.7661F, 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;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        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(853.9587F, 67.00001F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0414F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        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.Font          = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(980F, 25.41666F);
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UsePadding       = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.grpBoPhan
        });
        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;
        //
        // grpBoPhan
        //
        this.grpBoPhan.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.grpBoPhan.Name    = "grpBoPhan";
        this.grpBoPhan.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.grpBoPhan.StylePriority.UseFont          = false;
        this.grpBoPhan.StylePriority.UsePadding       = false;
        this.grpBoPhan.StylePriority.UseTextAlignment = false;
        this.grpBoPhan.Text          = "Không thuộc phòng ban nào";
        this.grpBoPhan.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.grpBoPhan.Weight        = 10.829994588379142D;
        //
        // rp_DanhSachNhanVienDangKyLamThemGio
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.PageFooter,
            this.GroupHeader1
        });
        this.Landscape     = true;
        this.Margins       = new System.Drawing.Printing.Margins(59, 60, 43, 0);
        this.PageHeight    = 850;
        this.PageWidth     = 1100;
        this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.Version       = "10.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>
    private void InitializeComponent()
    {
        string resourceFileName = "rs_austfeed_BaoCaoTuyenDungTrongNamCuaCacDVThanhVien.resx";

        System.Resources.ResourceManager resources = global::Resources.rs_austfeed_BaoCaoTuyenDungTrongNamCuaCacDVThanhVien.ResourceManager;
        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell9  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = 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.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrLabel11     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrTable1      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        ((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       = 41F;
        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(3.178914E-05F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(899.9999F, 41F);
        this.xrTable2.StylePriority.UseBorders = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell9,
            this.xrTableCell13,
            this.xrTableCell12,
            this.xrTableCell14,
            this.xrTableCell10,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell11
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name         = "xrTableCell9";
        this.xrTableCell9.Weight       = 0.21527775846881503D;
        this.xrTableCell9.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell9_BeforePrint);
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name    = "xrTableCell13";
        this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 6, 6, 100F);
        this.xrTableCell13.StylePriority.UsePadding       = false;
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell13.Weight        = 0.67708338772809429D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight        = 0.26736106990295883D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Name   = "xrTableCell14";
        this.xrTableCell14.Weight = 0.26041679452967625D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell10.Weight        = 0.40798638461550463D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseTextAlignment = false;
        this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell15.Weight        = 0.32118025520699428D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.28298607096259704D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight        = 0.56770827858535955D;
        //
        // 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;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 188F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 148F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(899.9999F, 30.625F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Ngày báo cáo..................";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 119.7917F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(899.9999F, 28.20833F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "BÁO CÁO TUYỂN DỤNG TRONG NĂM CỦA CÁC ĐƠN VỊ THÀNH VIÊN";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 84.375F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(290.625F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "CÔNG TY CỔ PHẦN AUSTFEED VIỆT NAM";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel11,
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 97F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrLabel11
        //
        this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
        this.xrLabel11.Name          = "xrLabel11";
        this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel11.SizeF         = new System.Drawing.SizeF(175F, 23F);
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 35.91665F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(900F, 61.08335F);
        this.xrTable1.StylePriority.UseBorders = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell2,
            this.xrTableCell7,
            this.xrTableCell6,
            this.xrTableCell8,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.21527778625488275D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseFont          = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Họ và tên";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.67708335876464854D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell5.Multiline                      = true;
        this.xrTableCell5.Name                           = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseFont          = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text                           = "Giới \r\ntính";
        this.xrTableCell5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight                         = 0.26736104329427085D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell2.Multiline                      = true;
        this.xrTableCell2.Name                           = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont          = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text                           = "Năm \r\nsinh";
        this.xrTableCell2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight                         = 0.26041666666666669D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell7.Multiline                      = true;
        this.xrTableCell7.Name                           = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont          = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text                           = "Chuyên\r\n ngành";
        this.xrTableCell7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight                         = 0.40798614501953123D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseFont          = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Số năm kinh nghiệm";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 0.32118062337239583D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell8.Multiline                      = true;
        this.xrTableCell8.Name                           = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseFont          = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text                           = "Số năm \r\ncông tác";
        this.xrTableCell8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight                         = 0.28298604329427085D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont          = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ví trí ứng tuyển";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.56770833333333326D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel6,
            this.xrLabel7,
            this.xrLabel10,
            this.xrLabel9,
            this.xrLabel4,
            this.xrLabel8,
            this.xrLabel5
        });
        this.ReportFooter.Name = "ReportFooter";
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(487.5F, 0F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(349.4265F, 23F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Hưng Yên,ngày...........tháng............năm.............";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(550F, 25F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(182.6573F, 28.20829F);
        this.xrLabel7.StylePriority.UseFont          = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.Text                           = "Trưởng phòng HCNS";
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel10
        //
        this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(548.4375F, 67.00001F);
        this.xrLabel10.Name          = "xrLabel10";
        this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF         = new System.Drawing.SizeF(177.0833F, 23F);
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel9
        //
        this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(237.5F, 62.5F);
        this.xrLabel9.Name          = "xrLabel9";
        this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF         = new System.Drawing.SizeF(144.7917F, 23F);
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(75F, 12.5F);
        this.xrLabel4.Name                  = "xrLabel4";
        this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                 = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel4.StylePriority.UseFont = false;
        this.xrLabel4.Text                  = "Người lập";
        //
        // xrLabel8
        //
        this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(64.58334F, 62.5F);
        this.xrLabel8.Name          = "xrLabel8";
        this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF         = new System.Drawing.SizeF(123.97F, 23F);
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(262.5F, 12.5F);
        this.xrLabel5.Name                  = "xrLabel5";
        this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                 = new System.Drawing.SizeF(123.973F, 23F);
        this.xrLabel5.StylePriority.UseFont = false;
        this.xrLabel5.Text                  = "Kế toán trưởng";
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 41.58332F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(129.1667F, 42.79167F);
        //
        // rs_austfeed_BaoCaoTuyenDungTrongNamCuaCacDVThanhVien
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.GroupHeader1,
            this.ReportFooter
        });
        this.Landscape  = true;
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio n. 30
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_BusinessSeniority.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.xrCellBirthYear     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellAddress       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellDegree        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellPhoneNumber   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrWorkingYear       = 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.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.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.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
        this.lblTitle            = 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();
        ((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.xrCellBirthYear,
            this.xrCellAddress,
            this.xrCellPosition,
            this.xrCellDegree,
            this.xrCellDepartment,
            this.xrCellPhoneNumber,
            this.xrWorkingYear,
            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.083236767915664034D;
        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.16666626409520391D;
        //
        // 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.40324105217982548D;
        //
        // xrCellBirthYear
        //
        this.xrCellBirthYear.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellBirthYear.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellBirthYear.Name    = "xrCellBirthYear";
        this.xrCellBirthYear.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellBirthYear.StylePriority.UseBorders       = false;
        this.xrCellBirthYear.StylePriority.UseFont          = false;
        this.xrCellBirthYear.StylePriority.UsePadding       = false;
        this.xrCellBirthYear.StylePriority.UseTextAlignment = false;
        this.xrCellBirthYear.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellBirthYear.Weight        = 0.13092539890628746D;
        //
        // xrCellAddress
        //
        this.xrCellAddress.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellAddress.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellAddress.Name    = "xrCellAddress";
        this.xrCellAddress.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellAddress.StylePriority.UseBorders       = false;
        this.xrCellAddress.StylePriority.UseFont          = false;
        this.xrCellAddress.StylePriority.UsePadding       = false;
        this.xrCellAddress.StylePriority.UseTextAlignment = false;
        this.xrCellAddress.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellAddress.Weight        = 0.28653416075826788D;
        //
        // 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.MiddleLeft;
        this.xrCellPosition.Weight        = 0.224064293616692D;
        //
        // xrCellDegree
        //
        this.xrCellDegree.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellDegree.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellDegree.Name    = "xrCellDegree";
        this.xrCellDegree.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellDegree.StylePriority.UseBorders       = false;
        this.xrCellDegree.StylePriority.UseFont          = false;
        this.xrCellDegree.StylePriority.UsePadding       = false;
        this.xrCellDegree.StylePriority.UseTextAlignment = false;
        this.xrCellDegree.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellDegree.Weight        = 0.18287390954534677D;
        //
        // 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.MiddleLeft;
        this.xrCellDepartment.Weight        = 0.31266469216296622D;
        //
        // xrCellPhoneNumber
        //
        this.xrCellPhoneNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellPhoneNumber.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellPhoneNumber.Name    = "xrCellPhoneNumber";
        this.xrCellPhoneNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellPhoneNumber.StylePriority.UseBorders       = false;
        this.xrCellPhoneNumber.StylePriority.UseFont          = false;
        this.xrCellPhoneNumber.StylePriority.UsePadding       = false;
        this.xrCellPhoneNumber.StylePriority.UseTextAlignment = false;
        this.xrCellPhoneNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellPhoneNumber.Weight        = 0.19237155245480053D;
        //
        // xrWorkingYear
        //
        this.xrWorkingYear.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrWorkingYear.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrWorkingYear.Name    = "xrWorkingYear";
        this.xrWorkingYear.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrWorkingYear.StylePriority.UseBorders       = false;
        this.xrWorkingYear.StylePriority.UseFont          = false;
        this.xrWorkingYear.StylePriority.UsePadding       = false;
        this.xrWorkingYear.StylePriority.UseTextAlignment = false;
        this.xrWorkingYear.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrWorkingYear.Weight        = 0.20838937128177734D;
        //
        // xrCellSeniority
        //
        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.UseFont          = false;
        this.xrCellSeniority.StylePriority.UsePadding       = false;
        this.xrCellSeniority.StylePriority.UseTextAlignment = false;
        this.xrCellSeniority.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellSeniority.Weight        = 0.32660366139977859D;
        //
        // 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.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            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.089945097705042457D;
        //
        // 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.1800993183568283D;
        //
        // 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.43574178580664641D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseBorders       = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "NĂM SINH";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 0.14147774410465125D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseBorders       = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "ĐỊA CHỈ";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 0.309628485360816D;
        //
        // 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.24212358899143255D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseBorders       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "BẰNG CẤP";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell10.Weight        = 0.19761333730305913D;
        //
        // 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.33786495903636482D;
        //
        // 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Ố ĐIỆN THOẠI";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight        = 0.20787640834692553D;
        //
        // 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ĂM BẮT ĐẦU VÀO LV";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.22518552663013D;
        //
        // 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";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.35292717369126358D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblReportDate,
            this.lblTitle
        });
        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;
        //
        // lblTitle
        //
        this.lblTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.lblTitle.Name                           = "lblTitle";
        this.lblTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblTitle.StylePriority.UseFont          = false;
        this.lblTitle.StylePriority.UseTextAlignment = false;
        this.lblTitle.Text                           = "BÁO CÁO THÂM NIÊN CÔNG TÁC CỦA CBCNV";
        this.lblTitle.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);
        //
        // rp_BusinessSeniority
        //
        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>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_BaoCaoChiTietMotDotTuyenDung.resx";

        this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable3               = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3            = new DevExpress.XtraReports.UI.XRTableRow();
        this.xr_detailstt           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xr_detailtenkehoach    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_lydotuyen          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_PhongBan           = 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.xrl_ThangBaoCao        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenCongTy          = 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.xr_stt                 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xr_tenkehoach          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xr_ngaybatdau          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xr_yeucaudoivoiungvien = new DevExpress.XtraReports.UI.XRTableCell();
        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.xrtngayketxuat         = 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.GroupHeader1           = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.PageFooter             = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1            = new DevExpress.XtraReports.UI.XRPageInfo();
        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.xrt_soluong            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_kinhphidutru       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtNgayBatDau          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_NgayKetThuc        = new DevExpress.XtraReports.UI.XRTableCell();
        ((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.xrTable3
        });
        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;
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 11F);
        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(1075.708F, 25F);
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xr_detailstt,
            this.xr_detailtenkehoach,
            this.xrt_lydotuyen,
            this.xrt_soluong,
            this.xrt_kinhphidutru,
            this.xrtNgayBatDau,
            this.xrt_NgayKetThuc,
            this.xrt_PhongBan
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xr_detailstt
        //
        this.xr_detailstt.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xr_detailstt.Name = "xr_detailstt";
        this.xr_detailstt.StylePriority.UseBorders = false;
        this.xr_detailstt.Weight       = 0.10795204762668853D;
        this.xr_detailstt.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xr_detailtenkehoach
        //
        this.xr_detailtenkehoach.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xr_detailtenkehoach.Name    = "xr_detailtenkehoach";
        this.xr_detailtenkehoach.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xr_detailtenkehoach.StylePriority.UseBorders       = false;
        this.xr_detailtenkehoach.StylePriority.UsePadding       = false;
        this.xr_detailtenkehoach.StylePriority.UseTextAlignment = false;
        this.xr_detailtenkehoach.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xr_detailtenkehoach.Weight        = 0.61870217160470065D;
        //
        // xrt_lydotuyen
        //
        this.xrt_lydotuyen.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_lydotuyen.Name = "xrt_lydotuyen";
        this.xrt_lydotuyen.StylePriority.UseBorders = false;
        this.xrt_lydotuyen.Weight = 0.63866735845096256D;
        //
        // xrt_PhongBan
        //
        this.xrt_PhongBan.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_PhongBan.Name    = "xrt_PhongBan";
        this.xrt_PhongBan.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_PhongBan.StylePriority.UseBorders       = false;
        this.xrt_PhongBan.StylePriority.UsePadding       = false;
        this.xrt_PhongBan.StylePriority.UseTextAlignment = false;
        this.xrt_PhongBan.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_PhongBan.Weight        = 0.37858670503072145D;
        //
        // 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.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.xrl_ThangBaoCao,
            this.xrl_TitleBC,
            this.xrl_TenThanhPho,
            this.xrl_TenCongTy
        });
        this.ReportHeader.HeightF = 113F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_ThangBaoCao
        //
        this.xrl_ThangBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_ThangBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 87.58332F);
        this.xrl_ThangBaoCao.Name                           = "xrl_ThangBaoCao";
        this.xrl_ThangBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ThangBaoCao.SizeF                          = new System.Drawing.SizeF(1075.708F, 23.00001F);
        this.xrl_ThangBaoCao.StylePriority.UseFont          = false;
        this.xrl_ThangBaoCao.StylePriority.UseTextAlignment = false;
        this.xrl_ThangBaoCao.Text                           = "Tháng 3 năm 2013";
        this.xrl_ThangBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 64.58334F);
        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(1075.708F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO CHI TIẾT CỦA ĐỢT TUYỂN DỤNG";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 2.083333F);
        this.xrl_TenThanhPho.Name                           = "xrl_TenThanhPho";
        this.xrl_TenThanhPho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenThanhPho.SizeF                          = new System.Drawing.SizeF(477.4739F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 27.08333F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(477.4739F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 29.16667F;
        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", 11F);
        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(1076F, 29.16667F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xr_stt,
            this.xr_tenkehoach,
            this.xrTableCell1,
            this.xrTableCell2,
            this.xr_ngaybatdau,
            this.xrTableCell3,
            this.xrTableCell4,
            this.xr_yeucaudoivoiungvien
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xr_stt
        //
        this.xr_stt.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xr_stt.Name = "xr_stt";
        this.xr_stt.StylePriority.UseFont          = false;
        this.xr_stt.StylePriority.UseTextAlignment = false;
        this.xr_stt.Text          = "STT";
        this.xr_stt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xr_stt.Weight        = 0.1079228305462125D;
        //
        // xr_tenkehoach
        //
        this.xr_tenkehoach.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xr_tenkehoach.Name = "xr_tenkehoach";
        this.xr_tenkehoach.StylePriority.UseFont          = false;
        this.xr_tenkehoach.StylePriority.UseTextAlignment = false;
        this.xr_tenkehoach.Text          = "Tên kế hoạch";
        this.xr_tenkehoach.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xr_tenkehoach.Weight        = 0.61853419094723816D;
        //
        // xr_ngaybatdau
        //
        this.xr_ngaybatdau.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xr_ngaybatdau.Name = "xr_ngaybatdau";
        this.xr_ngaybatdau.StylePriority.UseFont          = false;
        this.xr_ngaybatdau.StylePriority.UseTextAlignment = false;
        this.xr_ngaybatdau.Text          = "Kinh phí dự trù";
        this.xr_ngaybatdau.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xr_ngaybatdau.Weight        = 0.31152706429860849D;
        //
        // xr_yeucaudoivoiungvien
        //
        this.xr_yeucaudoivoiungvien.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xr_yeucaudoivoiungvien.Name = "xr_yeucaudoivoiungvien";
        this.xr_yeucaudoivoiungvien.StylePriority.UseFont          = false;
        this.xr_yeucaudoivoiungvien.StylePriority.UseTextAlignment = false;
        this.xr_yeucaudoivoiungvien.Text          = "Phòng ban";
        this.xr_yeucaudoivoiungvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xr_yeucaudoivoiungvien.Weight        = 0.37929821014404297D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten3,
            this.xrl_ten2,
            this.xrl_ten1,
            this.xrtngayketxuat,
            this.xrl_footer1,
            this.xrl_footer3,
            this.xrl_footer2
        });
        this.ReportFooter.HeightF = 194F;
        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(787.4995F, 161F);
        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(288.2083F, 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(374.9994F, 161F);
        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(295.9726F, 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(6.357829E-05F, 161F);
        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(295.9726F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(787.4995F, 18.75F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(288.2084F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Hà Nội, ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.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(6.357829E-05F, 43.75F);
        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(297.9736F, 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(787.4995F, 43.75F);
        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(288.2086F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "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(374.9994F, 43.75F);
        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(297.9735F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "PHÒNG TCHC";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.HeightF = 29F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        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(939.9583F, 30.20833F);
        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;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "Lý do tuyển";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.6384939526979807D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont          = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Số lượng";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.30028760477512745D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont          = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày bắt đầu";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.32429151995917688D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseFont          = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Ngày kết thúc";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.31964462663161264D;
        //
        // xrt_soluong
        //
        this.xrt_soluong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_soluong.Name = "xrt_soluong";
        this.xrt_soluong.StylePriority.UseBorders = false;
        this.xrt_soluong.Weight = 0.30036893131951048D;
        //
        // xrt_kinhphidutru
        //
        this.xrt_kinhphidutru.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_kinhphidutru.Name    = "xrt_kinhphidutru";
        this.xrt_kinhphidutru.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_kinhphidutru.StylePriority.UseBorders       = false;
        this.xrt_kinhphidutru.StylePriority.UsePadding       = false;
        this.xrt_kinhphidutru.StylePriority.UseTextAlignment = false;
        this.xrt_kinhphidutru.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrt_kinhphidutru.Weight        = 0.31161174829065336D;
        //
        // xrtNgayBatDau
        //
        this.xrtNgayBatDau.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtNgayBatDau.Name = "xrtNgayBatDau";
        this.xrtNgayBatDau.StylePriority.UseBorders = false;
        this.xrtNgayBatDau.Weight = 0.32437978304435305D;
        //
        // xrt_NgayKetThuc
        //
        this.xrt_NgayKetThuc.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                              | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_NgayKetThuc.Name = "xrt_NgayKetThuc";
        this.xrt_NgayKetThuc.StylePriority.UseBorders = false;
        this.xrt_NgayKetThuc.Weight = 0.31973125463241003D;
        //
        // rp_BaoCaoChiTietMotDotTuyenDung
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.GroupHeader1,
            this.PageFooter
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(12, 12, 50, 100);
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio n. 32
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();
 }
 /// <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.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     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();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(MRPReportSummary));
     DevExpress.XtraPrinting.Shape.ShapeRectangle   shapeRectangle1  = new DevExpress.XtraPrinting.Shape.ShapeRectangle();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     this.DocNum         = new DevExpress.XtraReports.Parameters.Parameter();
     this.EntityCode     = new DevExpress.XtraReports.Parameters.Parameter();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine6        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine5        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine4        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine3        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine1        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrShape1       = new DevExpress.XtraReports.UI.XRShape();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // DocNum
     //
     this.DocNum.Description = "DocNumber";
     this.DocNum.Name        = "DocNum";
     this.DocNum.Visible     = false;
     //
     // EntityCode
     //
     this.EntityCode.Description = "Entity";
     this.EntityCode.Name        = "EntityCode";
     this.EntityCode.Visible     = false;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine6,
         this.xrLine5,
         this.xrLine4,
         this.xrLine3,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF       = 26.25001F;
     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;
     //
     // xrLine6
     //
     this.xrLine6.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine6.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine6.LocationFloat  = new DevExpress.Utils.PointFloat(8F, 0F);
     this.xrLine6.Name           = "xrLine6";
     this.xrLine6.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine5
     //
     this.xrLine5.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine5.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine5.LocationFloat  = new DevExpress.Utils.PointFloat(486.7917F, 0F);
     this.xrLine5.Name           = "xrLine5";
     this.xrLine5.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine4
     //
     this.xrLine4.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine4.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine4.LocationFloat  = new DevExpress.Utils.PointFloat(355.6249F, 0F);
     this.xrLine4.Name           = "xrLine4";
     this.xrLine4.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine3
     //
     this.xrLine3.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine3.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine3.LocationFloat  = new DevExpress.Utils.PointFloat(240.7499F, 0F);
     this.xrLine3.Name           = "xrLine3";
     this.xrLine3.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine1
     //
     this.xrLine1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrLine1.LocationFloat  = new DevExpress.Utils.PointFloat(9.999939F, 22.37501F);
     this.xrLine1.Name           = "xrLine1";
     this.xrLine1.SizeF          = new System.Drawing.SizeF(480.0001F, 2F);
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[EdittedTotalCost]")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(366.3749F, 3F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(118.75F, 18.12499F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabelTotalEdittedCost";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel3.TextFormatString               = "{0:n2}";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[TotalCost]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(250.6249F, 3F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(100F, 18.12499F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     xrSummary1.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel2.Summary                        = xrSummary1;
     this.xrLabel2.Text                           = "xrLabelTotalCost";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel2.TextFormatString               = "{0:n2}";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[MRPGroup]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(19.99995F, 3F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(218.75F, 18.12499F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 16F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.TopMargin.Visible       = false;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(366.25F, 9F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(118.75F, 29.87498F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Recommended Total Cost";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(251.5F, 20.75F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(100F, 12.99999F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Total Cost";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 42.125F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "summary_hijo_portal_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.SqlServer;
     msSqlConnectionParameters1.DatabaseName      = "hijo_portal";
     msSqlConnectionParameters1.Password          = "******";
     msSqlConnectionParameters1.ServerName        = "192.168.100.11,1433";
     msSqlConnectionParameters1.UserName          = "******";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name = "sqlDataSource1";
     storedProcQuery1.Name    = "MRPSummaryPreview";
     queryParameter1.Name     = "@headerdocnum";
     queryParameter1.Type     = typeof(string);
     queryParameter2.Name     = "@entity";
     queryParameter2.Type     = typeof(string);
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.StoredProcName = "MRPSummaryPreview";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLine2
     //
     this.xrLine2.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrLine2.LocationFloat  = new DevExpress.Utils.PointFloat(10.87499F, 38.87498F);
     this.xrLine2.Name           = "xrLine2";
     this.xrLine2.SizeF          = new System.Drawing.SizeF(480.0001F, 2F);
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrShape1
     });
     this.PageHeader.HeightF = 41.87498F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrShape1
     //
     this.xrShape1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Tag", "[Parameters].[DocNumber]")
     });
     this.xrShape1.FillColor     = System.Drawing.Color.LimeGreen;
     this.xrShape1.LineWidth     = 0;
     this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(9.999943F, 2.499994F);
     this.xrShape1.Name          = "xrShape1";
     this.xrShape1.Shape         = shapeRectangle1;
     this.xrShape1.SizeF         = new System.Drawing.SizeF(480.0001F, 38.375F);
     this.xrShape1.Stretch       = true;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([TotalCost])")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(252.5F, 4F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(100F, 15F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     xrSummary2.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel6.Summary                        = xrSummary2;
     this.xrLabel6.Text                           = "xrLabel6";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel6.TextFormatString               = "{0:n2}";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6
     });
     this.ReportFooter.HeightF = 63.54167F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(9.999943F, 10.00001F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(49.99998F, 23F);
     this.xrLabel10.Text          = "doc#";
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EntityCode]")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(76.24996F, 32.99999F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(162.5F, 23F);
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[DocNum]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(76.24996F, 10.00001F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(162.5F, 23F);
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([EdittedTotalCost])")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(366.375F, 3.999996F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(118.625F, 15F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     xrSummary3.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel7.Summary                        = xrSummary3;
     this.xrLabel7.Text                           = "xrLabel6";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel7.TextFormatString               = "{0:n2}";
     //
     // MRPReportSummary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "MRPSummaryPreview";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[DocNumber] = ?DocNum And [Entity] = ?EntityCode";
     this.Margins      = new System.Drawing.Printing.Margins(100, 251, 16, 42);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.DocNum,
         this.EntityCode
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio n. 34
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();
        }
Esempio 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();

    }
Esempio 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_ap_KetQuaDanhGiaTheoPhongBan.resx";

        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell8  = 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.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = 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.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        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.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_phongban  = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        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;
        //
        // 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(1.589457E-05F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(738F, 25F);
        this.xrTable3.StylePriority.UseBorders = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell8,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell13,
            this.xrTableCell14
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell8.Name    = "xrTableCell8";
        this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell8.StylePriority.UseFont          = false;
        this.xrTableCell8.StylePriority.UsePadding       = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell8.Weight        = 0.35416667938232421D;
        this.xrTableCell8.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrTableCell10
        //
        this.xrTableCell10.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell10.StylePriority.UseFont          = false;
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell10.Weight        = 0.96875003814697269D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell11.Name    = "xrTableCell11";
        this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell11.StylePriority.UseFont          = false;
        this.xrTableCell11.StylePriority.UsePadding       = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell11.Weight        = 1.6954167175292971D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell12.Name    = "xrTableCell12";
        this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell12.StylePriority.UseFont          = false;
        this.xrTableCell12.StylePriority.UsePadding       = false;
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell12.Weight        = 2.2162503051757816D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell13.Name    = "xrTableCell13";
        this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell13.StylePriority.UseFont          = false;
        this.xrTableCell13.StylePriority.UsePadding       = false;
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell13.Weight        = 1.039166259765625D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell14.Name    = "xrTableCell14";
        this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UsePadding       = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell14.Weight        = 1.1062500000000002D;
        //
        // 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       = 52F;
        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.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.Name = "ReportHeader";
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 55.16666F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(738F, 23F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "KẾT QUẢ ĐÁNH GIÁ THÁNG 1";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        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(361.4583F, 17.79167F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "Công Ty CMC";
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 25F;
        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(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(738F, 25F);
        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.xrTableCell5,
            this.xrTableCell4,
            this.xrTableCell3,
            this.xrTableCell6
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.35416667938232421D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont          = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã cán bộ";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.96875003814697269D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseFont          = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Họ tên";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 1.6954167175292971D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseFont          = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Chức vụ";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 2.2162503051757816D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont          = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày vào";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 1.039166259765625D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseFont          = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Điểm bình quân";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 1.1062500000000002D;
        //
        // ReportFooter
        //
        this.ReportFooter.Name = "ReportFooter";
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable2
        //
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(738F, 25F);
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_phongban
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_phongban
        //
        this.xrt_phongban.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_phongban.Font    = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrt_phongban.Name    = "xrt_phongban";
        this.xrt_phongban.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_phongban.StylePriority.UseBorders       = false;
        this.xrt_phongban.StylePriority.UseFont          = false;
        this.xrt_phongban.StylePriority.UsePadding       = false;
        this.xrt_phongban.StylePriority.UseTextAlignment = false;
        this.xrt_phongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_phongban.Weight        = 6.4446392094545866D;
        //
        // rp_ap_KetQuaDanhGiaTheoPhongBan
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.GroupHeader1
        });
        this.Margins = new System.Drawing.Printing.Margins(61, 51, 50, 52);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio n. 37
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_austfeed_BaoCaoDSUngVienThamGiaPV.resx";

        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.xrLabel1      = 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.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.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
        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.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 42F;
        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;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.Name = "ReportHeader";
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 27.70834F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(900F, 27.58333F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "BÁO CÁO DANH SÁCH ỨNG VIÊN THAM GIA PHỎNG VẤN";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 66.66666F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(899.9999F, 23.00001F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "Ngày báo cáo.......................";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 60.41667F;
        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(0F, 10.00001F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(900F, 50.41666F);
        this.xrTable1.StylePriority.UseBorders = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell5,
            this.xrTableCell4,
            this.xrTableCell6,
            this.xrTableCell2,
            this.xrTableCell8,
            this.xrTableCell7,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.22569442749023444D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont          = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Chuyên ngành";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.30034716288248703D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont          = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ví trí ứng tuyển";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.69097229003906246D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell4.Multiline                      = true;
        this.xrTableCell4.Name                           = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseFont          = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text                           = "Giới\r\n tính";
        this.xrTableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight                         = 0.28993049621582023D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseFont          = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Họ và tên";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.48784721374511714D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell6.Multiline                      = true;
        this.xrTableCell6.Name                           = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseFont          = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text                           = "Năm \r\nsinh";
        this.xrTableCell6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight                         = 0.27951403299967448D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell7.Multiline                      = true;
        this.xrTableCell7.Name                           = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont          = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text                           = "Số năm \r\ncông tác";
        this.xrTableCell7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight                         = 0.36111104329427079D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseFont          = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Số năm kinh nghiệm";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 0.36458333333333326D;
        //
        // 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(900F, 41.04166F);
        this.xrTable2.StylePriority.UseBorders = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseFont          = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.22569442749023444D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseFont          = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell10.Weight        = 0.48784721374511714D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell11.Multiline                      = true;
        this.xrTableCell11.Name                           = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseFont          = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight                         = 0.28993049621582023D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell12.Multiline                      = true;
        this.xrTableCell12.Name                           = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseFont          = false;
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight                         = 0.27951403299967448D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell13.Name = "xrTableCell13";
        this.xrTableCell13.StylePriority.UseFont          = false;
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell13.Weight        = 0.30034716288248703D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell14.Weight        = 0.36458333333333326D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell15.Multiline             = true;
        this.xrTableCell15.Name                  = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseFont = false;
        this.xrTableCell15.Weight                = 0.36111104329427079D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseFont          = false;
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.69097229003906246D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel6,
            this.xrLabel7,
            this.xrLabel10,
            this.xrLabel9,
            this.xrLabel4,
            this.xrLabel8,
            this.xrLabel5
        });
        this.ReportFooter.Name = "ReportFooter";
        //
        // xrLabel4
        //
        this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(75F, 12.5F);
        this.xrLabel4.Name                  = "xrLabel4";
        this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                 = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel4.StylePriority.UseFont = false;
        this.xrLabel4.Text                  = "Người lập";
        //
        // xrLabel8
        //
        this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(75F, 62.5F);
        this.xrLabel8.Name          = "xrLabel8";
        this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF         = new System.Drawing.SizeF(123.97F, 23F);
        //
        // xrLabel5
        //
        this.xrLabel5.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(262.5F, 12.5F);
        this.xrLabel5.Name                  = "xrLabel5";
        this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                 = new System.Drawing.SizeF(123.973F, 23F);
        this.xrLabel5.StylePriority.UseFont = false;
        this.xrLabel5.Text                  = "Kế toán trưởng";
        //
        // xrLabel9
        //
        this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(237.5F, 62.5F);
        this.xrLabel9.Name          = "xrLabel9";
        this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF         = new System.Drawing.SizeF(144.7917F, 23F);
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(487.5F, 0F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(349.4265F, 23F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Hưng Yên,ngày...........tháng............năm.............";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(550F, 25F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(182.6573F, 28.20829F);
        this.xrLabel7.StylePriority.UseFont          = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.Text                           = "Trưởng phòng HCNS";
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel10
        //
        this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(550F, 75F);
        this.xrLabel10.Name          = "xrLabel10";
        this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF         = new System.Drawing.SizeF(177.0833F, 23F);
        //
        // rp_austfeed_BaoCaoDSUngVienThamGiaPV
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter
        });
        this.Landscape  = true;
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio 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()
    {
        string resourceFileName = "rp_austfeed_BaoCaoNhanVienNghiViecRiengTrongThang.resx";

        System.Resources.ResourceManager resources = global::Resources.rp_austfeed_BaoCaoNhanVienNghiViecRiengTrongThang.ResourceManager;
        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = 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.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7      = 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.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell18 = 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       = 25.50001F;
        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", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        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(784F, 25.50001F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name         = "xrTableCell7";
        this.xrTableCell7.Weight       = 0.16119480170014672D;
        this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Weight = 0.29536663380317657D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name    = "xrTableCell9";
        this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.xrTableCell9.StylePriority.UsePadding       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell9.Weight        = 0.69885580563134275D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell10.Weight        = 0.68211467253469793D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Multiline = true;
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.Weight    = 0.35554843374212264D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Multiline = true;
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell12.Weight        = 0.8069196525885135D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 33F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 38F;
        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.xrLabel2,
            this.xrLabel3,
            this.xrPictureBox1,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 152F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 87.5F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(782.0001F, 29.25F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "BÁO CÁO NHÂN VIÊN NGHỈ VIỆC RIÊNG TRONG THÁNG";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 116.75F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(782.0001F, 26.125F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Ngày báo cáo..............";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 0F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(121.875F, 33.41667F);
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 33.41667F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(348.9583F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "CÔNG TY CỔ PHẦN AUSTFEED VIỆT NAM";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel8,
            this.xrLabel9,
            this.xrLabel10,
            this.xrLabel6,
            this.xrLabel4,
            this.xrLabel5,
            this.xrLabel7
        });
        this.ReportFooter.HeightF = 173F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrLabel8
        //
        this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(447.9583F, 4.499944F);
        this.xrLabel8.Name                           = "xrLabel8";
        this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF                          = new System.Drawing.SizeF(326.0417F, 23F);
        this.xrLabel8.StylePriority.UseFont          = false;
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        this.xrLabel8.Text                           = "Hưng Yên,ngày.........tháng............năm...........";
        this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel9
        //
        this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(545.8333F, 27.49996F);
        this.xrLabel9.Name                           = "xrLabel9";
        this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel9.StylePriority.UseFont          = false;
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.Text                           = "Trưởng phòng HCNS";
        this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel10
        //
        this.xrLabel10.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(545.8333F, 150F);
        this.xrLabel10.Name                           = "xrLabel10";
        this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel10.StylePriority.UseFont          = false;
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(266.6667F, 27.49996F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Kế toán trưởng";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 27.49996F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Người lập";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 150F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(266.6667F, 150F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel7.StylePriority.UseFont          = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 43.5F;
        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", 11F, 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(784F, 43.5F);
        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.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell4,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "STT";
        this.xrTableCell1.Weight = 0.16119478988993846D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Mã nhân viên";
        this.xrTableCell2.Weight = 0.29536664561338483D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Họ và tên";
        this.xrTableCell5.Weight = 0.6988556888548958D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Chức vụ";
        this.xrTableCell6.Weight = 0.68211478931114478D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.Text      = "Số ngày nghỉ việc riêng";
        this.xrTableCell4.Weight    = 0.35554843374212264D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Multiline = true;
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.Text      = "Ghi chú";
        this.xrTableCell3.Weight    = 0.8069196525885135D;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25.50001F;
        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.Font          = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        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(784F, 25.50001F);
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell18
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell18.Multiline                      = true;
        this.xrTableCell18.Name                           = "xrTableCell18";
        this.xrTableCell18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UsePadding       = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell18.Weight                         = 3D;
        //
        // rp_austfeed_BaoCaoNhanVienNghiViecRiengTrongThang
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.ReportFooter,
            this.PageHeader,
            this.GroupHeader1
        });
        this.Margins    = new System.Drawing.Printing.Margins(22, 21, 33, 38);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio n. 39
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_DanhSachQuanNhan.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.xrtmanhanvien   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrttencbcnv     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaysinh    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtgioitinh     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_phongban    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtdienthoai    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaytgcm    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaynhapngu = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtngayxuatngu  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrttrinhdo      = 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.xrl_TitleBC     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ThangBaoCao = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenCongTy   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho = 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.xrTableCell9    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12   = new DevExpress.XtraReports.UI.XRTableCell();
        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.xrtngayketxuat  = 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.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3        = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3     = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrl_tenphongban = 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();
        ((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.BackColor = System.Drawing.SystemColors.Window;
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF      = 25.41666F;
        this.Detail.KeepTogether = true;
        this.Detail.KeepTogetherWithDetailReports = true;
        this.Detail.Name    = "Detail";
        this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.StylePriority.UseBackColor = false;
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrTable2
        //
        this.xrTable2.BackColor   = System.Drawing.Color.Transparent;
        this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
        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.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(1079F, 25.41666F);
        this.xrTable2.SnapLineMargin                 = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable2.StylePriority.UseBackColor     = false;
        this.xrTable2.StylePriority.UseBorderColor   = false;
        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.BorderColor = System.Drawing.SystemColors.ActiveCaptionText;
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrtstt,
            this.xrtmanhanvien,
            this.xrttencbcnv,
            this.xrt_ngaysinh,
            this.xrtgioitinh,
            this.xrt_phongban,
            this.xrtdienthoai,
            this.xrt_ngaytgcm,
            this.xrt_ngaynhapngu,
            this.xrtngayxuatngu,
            this.xrttrinhdo
        });
        this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTableRow2.Name = "xrTableRow2";
        this.xrTableRow2.StylePriority.UseBorderColor   = false;
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrtstt
        //
        this.xrtstt.Name = "xrtstt";
        this.xrtstt.StylePriority.UseTextAlignment = false;
        this.xrtstt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrtstt.Weight        = 0.35416665980020634D;
        this.xrtstt.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrtmanhanvien
        //
        this.xrtmanhanvien.Name = "xrtmanhanvien";
        this.xrtmanhanvien.StylePriority.UseTextAlignment = false;
        this.xrtmanhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtmanhanvien.Weight        = 0.76041679699165521D;
        //
        // xrttencbcnv
        //
        this.xrttencbcnv.Name    = "xrttencbcnv";
        this.xrttencbcnv.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrttencbcnv.StylePriority.UsePadding       = false;
        this.xrttencbcnv.StylePriority.UseTextAlignment = false;
        this.xrttencbcnv.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrttencbcnv.Weight        = 1.0729163556250356D;
        //
        // xrt_ngaysinh
        //
        this.xrt_ngaysinh.Name = "xrt_ngaysinh";
        this.xrt_ngaysinh.StylePriority.UseTextAlignment = false;
        this.xrt_ngaysinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaysinh.Weight        = 0.83267535518836278D;
        //
        // xrtgioitinh
        //
        this.xrtgioitinh.Name = "xrtgioitinh";
        this.xrtgioitinh.StylePriority.UseTextAlignment = false;
        this.xrtgioitinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtgioitinh.Weight        = 0.5063168712866859D;
        //
        // xrt_phongban
        //
        this.xrt_phongban.Name = "xrt_phongban";
        this.xrt_phongban.StylePriority.UseTextAlignment = false;
        this.xrt_phongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_phongban.Weight        = 1.9895274984836242D;
        //
        // xrtdienthoai
        //
        this.xrtdienthoai.Name = "xrtdienthoai";
        this.xrtdienthoai.StylePriority.UseTextAlignment = false;
        this.xrtdienthoai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrtdienthoai.Weight        = 0.89065751237141466D;
        //
        // xrt_ngaytgcm
        //
        this.xrt_ngaytgcm.Name = "xrt_ngaytgcm";
        this.xrt_ngaytgcm.StylePriority.UseTextAlignment = false;
        this.xrt_ngaytgcm.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaytgcm.Weight        = 1.0160425818067729D;
        //
        // xrt_ngaynhapngu
        //
        this.xrt_ngaynhapngu.Name   = "xrt_ngaynhapngu";
        this.xrt_ngaynhapngu.Weight = 1.1016931797543934D;
        //
        // xrtngayxuatngu
        //
        this.xrtngayxuatngu.Name = "xrtngayxuatngu";
        this.xrtngayxuatngu.StylePriority.UseTextAlignment = false;
        this.xrtngayxuatngu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtngayxuatngu.Weight        = 1.007945653392321D;
        //
        // xrttrinhdo
        //
        this.xrttrinhdo.Name = "xrttrinhdo";
        this.xrttrinhdo.StylePriority.UseTextAlignment = false;
        this.xrttrinhdo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrttrinhdo.Weight        = 1.2576361436661903D;
        //
        // TopMargin
        //
        this.TopMargin.BackColor = System.Drawing.Color.Gray;
        this.TopMargin.HeightF   = 48F;
        this.TopMargin.Name      = "TopMargin";
        this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.StylePriority.UseBackColor = false;
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 49F;
        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.BackColor = System.Drawing.Color.Transparent;
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_TitleBC,
            this.xrl_ThangBaoCao,
            this.xrl_TenCongTy,
            this.xrl_TenThanhPho
        });
        this.ReportHeader.HeightF = 110.5F;
        this.ReportHeader.Name    = "ReportHeader";
        this.ReportHeader.StylePriority.UseBackColor = 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(0F, 54.5F);
        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(1079F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH QUÂN NHÂN TRONG CÔNG TY";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ThangBaoCao
        //
        this.xrl_ThangBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrl_ThangBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 77.5F);
        this.xrl_ThangBaoCao.Name                           = "xrl_ThangBaoCao";
        this.xrl_ThangBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ThangBaoCao.SizeF                          = new System.Drawing.SizeF(1079F, 23F);
        this.xrl_ThangBaoCao.StylePriority.UseFont          = false;
        this.xrl_ThangBaoCao.StylePriority.UseTextAlignment = false;
        this.xrl_ThangBaoCao.Text                           = "Tháng 3 năm 2013";
        this.xrl_ThangBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 25F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(480.7656F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrl_TenThanhPho.Name                           = "xrl_TenThanhPho";
        this.xrl_TenThanhPho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenThanhPho.SizeF                          = new System.Drawing.SizeF(480.7656F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 38.33331F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.BackColor = System.Drawing.Color.Transparent;
        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(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1079F, 38.33331F);
        this.xrTable1.StylePriority.UseBackColor     = false;
        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.BackColor = System.Drawing.Color.WhiteSmoke;
        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.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell12
        });
        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.UseBackColor     = false;
        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.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell1.Name      = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBackColor     = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.35416665980020634D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell2.Name      = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBackColor     = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã nhân viên";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.76095745942159054D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBackColor     = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Tên CBCNV";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 1.0723756931951D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseBackColor     = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày sinh";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.84387080131405445D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseBackColor     = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Giới tính";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.508193859455054D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell6.Name      = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseBackColor     = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Phòng ban";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 1.9969026309692983D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell7.Name      = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseBackColor     = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Điện thoại";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 0.89396044987645151D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseBackColor     = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Ngày tham gia cách mạng";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 1.0198084990866232D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell9.Name      = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBackColor     = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "Ngày nhập ngũ";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 1.1057778076844926D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseBackColor     = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "Ngày xuất ngũ";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight        = 1.011681546554863D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.BackColor = System.Drawing.Color.Transparent;
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseBackColor     = false;
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.Text          = "Trình độ";
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight        = 1.2622991810214075D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten3,
            this.xrl_ten2,
            this.xrl_ten1,
            this.xrtngayketxuat,
            this.xrl_footer1,
            this.xrl_footer3,
            this.xrl_footer2
        });
        this.ReportFooter.HeightF = 208F;
        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(782.4998F, 150F);
        this.xrl_ten3.Name                           = "xrl_ten3";
        this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(296.5F, 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(369.9999F, 150F);
        this.xrl_ten2.Name                           = "xrl_ten2";
        this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(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(0.0001907349F, 150F);
        this.xrl_ten1.Name                           = "xrl_ten1";
        this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(782.4998F, 22.91667F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(296.5F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Hà Nội, ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.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, 47.91667F);
        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(782.4998F, 47.91667F);
        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(296.5002F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "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(369.9998F, 47.91667F);
        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 TCHC";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25.41666F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlLight;
        this.xrTable3.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001907349F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF          = new System.Drawing.SizeF(1079F, 25.41666F);
        this.xrTable3.SnapLineMargin = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.StylePriority.UseBorderColor   = false;
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseFont          = false;
        this.xrTable3.StylePriority.UsePadding       = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrTableRow3
        //
        this.xrTableRow3.BorderColor = System.Drawing.SystemColors.ActiveCaptionText;
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrl_tenphongban
        });
        this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTableRow3.Name = "xrTableRow3";
        this.xrTableRow3.StylePriority.UseBorderColor   = false;
        this.xrTableRow3.StylePriority.UseFont          = false;
        this.xrTableRow3.StylePriority.UseTextAlignment = false;
        this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow3.Weight        = 1D;
        //
        // xrl_tenphongban
        //
        this.xrl_tenphongban.BackColor = System.Drawing.Color.Transparent;
        this.xrl_tenphongban.Font      = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrl_tenphongban.Name      = "xrl_tenphongban";
        this.xrl_tenphongban.Padding   = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrl_tenphongban.StylePriority.UseBackColor     = false;
        this.xrl_tenphongban.StylePriority.UseFont          = false;
        this.xrl_tenphongban.StylePriority.UsePadding       = false;
        this.xrl_tenphongban.StylePriority.UseTextAlignment = false;
        this.xrl_tenphongban.Text          = "  sgag";
        this.xrl_tenphongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrl_tenphongban.Weight        = 10.789994608366662D;
        //
        // GroupFooter1
        //
        this.GroupFooter1.BackColor = System.Drawing.Color.PaleGoldenrod;
        this.GroupFooter1.Name      = "GroupFooter1";
        this.GroupFooter1.StylePriority.UseBackColor = false;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 143F;
        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(956.9578F, 34.375F);
        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;
        //
        // rp_DanhSachQuanNhan
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.GroupHeader1,
            this.GroupFooter1,
            this.PageFooter
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(10, 7, 48, 49);
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Esempio n. 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "XtraReport07.resx";
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary15 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary16 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary17 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary18 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary19 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary20 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary21 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary22 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary23 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary24 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary25 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary26 = new DevExpress.XtraReports.UI.XRSummary();
         this.dsTEFollowUp1 = new dsTEFollowUp();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblSchool = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblDateTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.lblTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.cdtblhedeTableAdapter1 = new dsTEFollowUpTableAdapters.cdtblhedeTableAdapter();
         this.xRep05TableAdapter1 = new dsTEFollowUpTableAdapters.XRep05TableAdapter();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportHeader1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter2 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell71 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell72 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell73 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell74 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell75 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell76 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell78 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell77 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell79 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell80 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell81 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell82 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell83 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell84 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell85 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell86 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell87 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell88 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell89 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell90 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell91 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
         this.ReportHeader2 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xRep07Sub1TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub1TableAdapter();
         this.xRep07Sub2TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub2TableAdapter();
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // dsTEFollowUp1
         //
         this.dsTEFollowUp1.DataSetName = "dsTEFollowUp";
         this.dsTEFollowUp1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // Detail
         //
         this.Detail.HeightF = 14.58333F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseTextAlignment = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // xrTable2
         //
         this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable2.SizeF = new System.Drawing.SizeF(1001F, 25F);
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell22,
         this.xrTableCell20,
         this.xrTableCell16,
         this.xrTableCell11});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.CanGrow = false;
         this.xrTableCell10.CanShrink = true;
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskgeha")});
         this.xrTableCell10.Multiline = true;
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.Weight = 0.59940071552024365D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.CanGrow = false;
         this.xrTableCell22.CanShrink = true;
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskplace")});
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "xrTableCell22";
         this.xrTableCell22.Weight = 0.73393289755755586D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.CanGrow = false;
         this.xrTableCell20.CanShrink = true;
         this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskfatra")});
         this.xrTableCell20.Multiline = true;
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "xrTableCell20";
         this.xrTableCell20.Weight = 0.59940064932939852D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.CanGrow = false;
         this.xrTableCell16.CanShrink = true;
         this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.datetask", "{0:d/M/yyyy}")});
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "xrTableCell16";
         this.xrTableCell16.Weight = 0.59940110127529556D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.task")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.Weight = 0.4678646363175063D;
         //
         // xrTable6
         //
         this.xrTable6.BackColor = System.Drawing.Color.Gray;
         this.xrTable6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrTable6.ForeColor = System.Drawing.Color.White;
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.12501F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow13});
         this.xrTable6.SizeF = new System.Drawing.SizeF(1001F, 24.99999F);
         this.xrTable6.StylePriority.UseBackColor = false;
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseForeColor = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow13
         //
         this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell39,
         this.xrTableCell14,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell31});
         this.xrTableRow13.Name = "xrTableRow13";
         this.xrTableRow13.Weight = 1D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "جهة التكليف ";
         this.xrTableCell39.Weight = 0.59940068080473652D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.Text = "مــكــانــه";
         this.xrTableCell14.Weight = 0.73393283369957119D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.Text = "مــدتــه";
         this.xrTableCell12.Weight = 0.59940068090306564D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "تـاريــخـــه";
         this.xrTableCell13.Weight = 0.59940068090306575D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Text = "التكليف";
         this.xrTableCell31.Weight = 0.467865123689561D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 19F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 62F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.StylePriority.UseTextAlignment = false;
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.ReportHeader.HeightF = 133.3333F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow2});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1001F, 133.3333F);
         this.xrTable1.StylePriority.UseFont = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblSchool,
         this.xrTableCell2,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // lblSchool
         //
         this.lblSchool.Name = "lblSchool";
         this.lblSchool.StylePriority.UseTextAlignment = false;
         this.lblSchool.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblSchool.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dawla")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell3.Weight = 1D;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell9});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dept")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 1D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.wezara")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell9.Weight = 2D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell26});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Weight = 1D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.edara")});
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "xrTableCell26";
         this.xrTableCell26.Weight = 1D;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblDateTitle,
         this.lblTitle});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // lblDateTitle
         //
         this.lblDateTitle.Name = "lblDateTitle";
         this.lblDateTitle.StylePriority.UseTextAlignment = false;
         this.lblDateTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblDateTitle.Weight = 1.5104166666666665D;
         //
         // lblTitle
         //
         this.lblTitle.Name = "lblTitle";
         this.lblTitle.StylePriority.UseTextAlignment = false;
         this.lblTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.lblTitle.Weight = 1.4895833333333335D;
         //
         // ReportFooter
         //
         this.ReportFooter.HeightF = 32.29167F;
         this.ReportFooter.Name = "ReportFooter";
         //
         // cdtblhedeTableAdapter1
         //
         this.cdtblhedeTableAdapter1.ClearBeforeFill = true;
         //
         // xRep05TableAdapter1
         //
         this.xRep05TableAdapter1.ClearBeforeFill = true;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportHeader1,
         this.ReportFooter2});
         this.DetailReport.DataMember = "XRep07Sub1";
         this.DetailReport.DataSource = this.dsTEFollowUp1;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // Detail1
         //
         this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.Detail1.HeightF = 26F;
         this.Detail1.Name = "Detail1";
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1001F, 26F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell55,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell32,
         this.xrTableCell56,
         this.xrTableCell33,
         this.xrTableCell57,
         this.xrTableCell34,
         this.xrTableCell58,
         this.xrTableCell35,
         this.xrTableCell59,
         this.xrTableCell36,
         this.xrTableCell60,
         this.xrTableCell37,
         this.xrTableCell63,
         this.xrTableCell64,
         this.xrTableCell38});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.remarks")});
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.Text = "xrTableCell55";
         this.xrTableCell55.Weight = 0.63737150838966661D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.Text = "xrTableCell53";
         this.xrTableCell53.Weight = 0.11988022373544331D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.Text = "xrTableCell54";
         this.xrTableCell54.Weight = 0.1198802237354433D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.CanGrow = false;
         this.xrTableCell32.CanShrink = true;
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell32.Multiline = true;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.Weight = 0.11988001794755371D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.Text = "xrTableCell56";
         this.xrTableCell56.Weight = 0.11988022546941772D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.CanGrow = false;
         this.xrTableCell33.CanShrink = true;
         this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "xrTableCell33";
         this.xrTableCell33.Weight = 0.11987995108556496D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.Text = "xrTableCell57";
         this.xrTableCell57.Weight = 0.11988022101912341D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.CanGrow = false;
         this.xrTableCell34.CanShrink = true;
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell34.Multiline = true;
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Text = "xrTableCell34";
         this.xrTableCell34.Weight = 0.11988022101912341D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.Text = "xrTableCell58";
         this.xrTableCell58.Weight = 0.11988012687753238D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.CanGrow = false;
         this.xrTableCell35.CanShrink = true;
         this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell35.Multiline = true;
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Text = "xrTableCell35";
         this.xrTableCell35.Weight = 0.11988010401221144D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.Text = "xrTableCell59";
         this.xrTableCell59.Weight = 0.11988014046122275D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.CanGrow = false;
         this.xrTableCell36.CanShrink = true;
         this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell36.Multiline = true;
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Text = "xrTableCell36";
         this.xrTableCell36.Weight = 0.11988014046122286D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.Text = "xrTableCell60";
         this.xrTableCell60.Weight = 0.11988015158904958D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Text = "xrTableCell37";
         this.xrTableCell37.Weight = 0.11987999153180218D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.numberteacher")});
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 0.11988012895235384D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.schoolname")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.Weight = 0.49548313253515547D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.dateplan", "{0:dddd}")});
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseFont = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Text = "xrTableCell38";
         this.xrTableCell38.Weight = 0.18882349117811309D;
         //
         // ReportHeader1
         //
         this.ReportHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.ReportHeader1.HeightF = 184.896F;
         this.ReportHeader1.Name = "ReportHeader1";
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.LightGray;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.ForeColor = System.Drawing.Color.Black;
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow9,
         this.xrTableRow8,
         this.xrTableRow6});
         this.xrTable3.SizeF = new System.Drawing.SizeF(1001F, 184.896F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseForeColor = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 0.29100583440217981D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Weight = 0.63737132735552893D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.Text = "عــدد الأســالــيــب الإشــرافــيــة";
         this.xrTableCell50.Weight = 1.5584420329690143D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.Weight = 0.80418663967545678D;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell48,
         this.xrTableCell61,
         this.xrTableCell62});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 0.29100583440217981D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Weight = 1.3566524525928023D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseFont = false;
         this.xrTableCell61.Text = "الدورات التربوية";
         this.xrTableCell61.Weight = 0.23975992430336812D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Weight = 1.4035876231038296D;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell47,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell15,
         this.xrTableCell8,
         this.xrTableCell17,
         this.xrTableCell19,
         this.xrTableCell41,
         this.xrTableCell27,
         this.xrTableCell42,
         this.xrTableCell28,
         this.xrTableCell43,
         this.xrTableCell29,
         this.xrTableCell44,
         this.xrTableCell30,
         this.xrTableCell45,
         this.xrTableCell46});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1.2962958456194795D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.Text = "الملاحظات";
         this.xrTableCell47.Weight = 0.63737143401261465D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Angle = 270F;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.Text = "الوسائل التعليمية";
         this.xrTableCell5.Weight = 0.11988014123950042D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Angle = 270F;
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "التجارب الميدانية";
         this.xrTableCell6.Weight = 0.11988014152420051D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Angle = 270F;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.Text = "الدراسات والبحوث";
         this.xrTableCell15.Weight = 0.11988014152420055D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Angle = 270F;
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.Text = "المشاغل التربوية";
         this.xrTableCell8.Weight = 0.11988013953130711D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Angle = 270F;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.Text = "القراءات الموجهة";
         this.xrTableCell17.Weight = 0.11988013953130708D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Angle = 270F;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "النشرات التربوية";
         this.xrTableCell19.Weight = 0.11988014156613194D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Angle = 270F;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "للمعلمين";
         this.xrTableCell41.Weight = 0.11988014156613196D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Angle = 270F;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseTextAlignment = false;
         this.xrTableCell27.Text = "شخصية ";
         this.xrTableCell27.Weight = 0.11988014156613203D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Angle = 270F;
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "اللقاءات التربوية";
         this.xrTableCell42.Weight = 0.11988014156613198D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Angle = 270F;
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.Text = "الدروس التطبيقية";
         this.xrTableCell28.Weight = 0.11988014048332149D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Angle = 270F;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseTextAlignment = false;
         this.xrTableCell43.Text = "الزيارات المتبادلة";
         this.xrTableCell43.Weight = 0.11988014048332146D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Angle = 270F;
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Text = "الزيارات التقويمية";
         this.xrTableCell29.Weight = 0.11988014246005195D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Angle = 270F;
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "الزيارات الإشرافية";
         this.xrTableCell44.Weight = 0.11988014246005171D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Angle = 270F;
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Text = "عدد معلمي التخصص";
         this.xrTableCell30.Weight = 0.11988014066892956D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.Text = "الخطة المنفذة";
         this.xrTableCell45.Weight = 0.49548327755802379D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Angle = 270F;
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.Text = "الـيـوم";
         this.xrTableCell46.Weight = 0.18882331225864191D;
         //
         // ReportFooter2
         //
         this.ReportFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable5});
         this.ReportFooter2.HeightF = 79.16666F;
         this.ReportFooter2.Name = "ReportFooter2";
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 19.16666F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1001F, 60F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell21,
         this.xrTableCell25,
         this.xrTableCell40,
         this.xrTableCell66,
         this.xrTableCell67,
         this.xrTableCell68,
         this.xrTableCell69,
         this.xrTableCell70,
         this.xrTableCell71,
         this.xrTableCell72,
         this.xrTableCell73,
         this.xrTableCell74,
         this.xrTableCell75,
         this.xrTableCell76,
         this.xrTableCell78});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Weight = 0.63737150838966661D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell25.Name = "xrTableCell25";
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell25.Summary = xrSummary1;
         this.xrTableCell25.Text = "xrTableCell25";
         this.xrTableCell25.Weight = 0.11988022373544331D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell40.Name = "xrTableCell40";
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell40.Summary = xrSummary2;
         this.xrTableCell40.Text = "xrTableCell40";
         this.xrTableCell40.Weight = 0.1198802237354433D;
         //
         // xrTableCell66
         //
         this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell66.Multiline = true;
         this.xrTableCell66.Name = "xrTableCell66";
         this.xrTableCell66.StylePriority.UseTextAlignment = false;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell66.Summary = xrSummary3;
         this.xrTableCell66.Text = "xrTableCell66";
         this.xrTableCell66.Weight = 0.11988001794755371D;
         //
         // xrTableCell67
         //
         this.xrTableCell67.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell67.Name = "xrTableCell67";
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell67.Summary = xrSummary4;
         this.xrTableCell67.Text = "xrTableCell67";
         this.xrTableCell67.Weight = 0.11988022546941772D;
         //
         // xrTableCell68
         //
         this.xrTableCell68.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell68.Multiline = true;
         this.xrTableCell68.Name = "xrTableCell68";
         this.xrTableCell68.StylePriority.UseTextAlignment = false;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell68.Summary = xrSummary5;
         this.xrTableCell68.Text = "xrTableCell68";
         this.xrTableCell68.Weight = 0.11987995108556496D;
         //
         // xrTableCell69
         //
         this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell69.Name = "xrTableCell69";
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell69.Summary = xrSummary6;
         this.xrTableCell69.Text = "xrTableCell69";
         this.xrTableCell69.Weight = 0.11988022101912341D;
         //
         // xrTableCell70
         //
         this.xrTableCell70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell70.Multiline = true;
         this.xrTableCell70.Name = "xrTableCell70";
         this.xrTableCell70.StylePriority.UseTextAlignment = false;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell70.Summary = xrSummary7;
         this.xrTableCell70.Text = "xrTableCell70";
         this.xrTableCell70.Weight = 0.11988022101912341D;
         //
         // xrTableCell71
         //
         this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell71.Name = "xrTableCell71";
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell71.Summary = xrSummary8;
         this.xrTableCell71.Text = "xrTableCell71";
         this.xrTableCell71.Weight = 0.11988012687753238D;
         //
         // xrTableCell72
         //
         this.xrTableCell72.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell72.Multiline = true;
         this.xrTableCell72.Name = "xrTableCell72";
         this.xrTableCell72.StylePriority.UseTextAlignment = false;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell72.Summary = xrSummary9;
         this.xrTableCell72.Text = "xrTableCell72";
         this.xrTableCell72.Weight = 0.11988010401221144D;
         //
         // xrTableCell73
         //
         this.xrTableCell73.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell73.Name = "xrTableCell73";
         xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell73.Summary = xrSummary10;
         this.xrTableCell73.Text = "xrTableCell73";
         this.xrTableCell73.Weight = 0.11988014046122275D;
         //
         // xrTableCell74
         //
         this.xrTableCell74.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell74.Multiline = true;
         this.xrTableCell74.Name = "xrTableCell74";
         this.xrTableCell74.StylePriority.UseTextAlignment = false;
         xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell74.Summary = xrSummary11;
         this.xrTableCell74.Text = "xrTableCell74";
         this.xrTableCell74.Weight = 0.11988014046122286D;
         //
         // xrTableCell75
         //
         this.xrTableCell75.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell75.Name = "xrTableCell75";
         xrSummary12.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell75.Summary = xrSummary12;
         this.xrTableCell75.Text = "xrTableCell75";
         this.xrTableCell75.Weight = 0.11988015158904958D;
         //
         // xrTableCell76
         //
         this.xrTableCell76.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell76.Name = "xrTableCell76";
         this.xrTableCell76.StylePriority.UseTextAlignment = false;
         xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell76.Summary = xrSummary13;
         this.xrTableCell76.Text = "xrTableCell76";
         this.xrTableCell76.Weight = 0.11987999153180218D;
         //
         // xrTableCell78
         //
         this.xrTableCell78.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell78.Name = "xrTableCell78";
         this.xrTableCell78.StylePriority.UseBackColor = false;
         this.xrTableCell78.Text = "مجموع الأساليب المنفذة";
         this.xrTableCell78.Weight = 0.80418675266562234D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrTableCell77,
         this.xrTableCell79,
         this.xrTableCell80,
         this.xrTableCell81,
         this.xrTableCell82,
         this.xrTableCell83,
         this.xrTableCell84,
         this.xrTableCell85,
         this.xrTableCell86,
         this.xrTableCell87,
         this.xrTableCell88,
         this.xrTableCell89,
         this.xrTableCell90,
         this.xrTableCell91});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Weight = 0.63737150838966661D;
         //
         // xrTableCell77
         //
         this.xrTableCell77.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_wasaeel")});
         this.xrTableCell77.Name = "xrTableCell77";
         xrSummary14.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell77.Summary = xrSummary14;
         this.xrTableCell77.Text = "xrTableCell77";
         this.xrTableCell77.Weight = 0.11988022373544331D;
         //
         // xrTableCell79
         //
         this.xrTableCell79.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_tagareb")});
         this.xrTableCell79.Name = "xrTableCell79";
         xrSummary15.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell79.Summary = xrSummary15;
         this.xrTableCell79.Text = "xrTableCell79";
         this.xrTableCell79.Weight = 0.1198802237354433D;
         //
         // xrTableCell80
         //
         this.xrTableCell80.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_drasat")});
         this.xrTableCell80.Name = "xrTableCell80";
         xrSummary16.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell80.Summary = xrSummary16;
         this.xrTableCell80.Text = "xrTableCell80";
         this.xrTableCell80.Weight = 0.11988001794755371D;
         //
         // xrTableCell81
         //
         this.xrTableCell81.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_mashael")});
         this.xrTableCell81.Name = "xrTableCell81";
         xrSummary17.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell81.Summary = xrSummary17;
         this.xrTableCell81.Text = "xrTableCell81";
         this.xrTableCell81.Weight = 0.11988022546941772D;
         //
         // xrTableCell82
         //
         this.xrTableCell82.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_reads")});
         this.xrTableCell82.Name = "xrTableCell82";
         xrSummary18.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell82.Summary = xrSummary18;
         this.xrTableCell82.Text = "xrTableCell82";
         this.xrTableCell82.Weight = 0.11987995108556496D;
         //
         // xrTableCell83
         //
         this.xrTableCell83.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_nashraat")});
         this.xrTableCell83.Name = "xrTableCell83";
         xrSummary19.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell83.Summary = xrSummary19;
         this.xrTableCell83.Text = "xrTableCell83";
         this.xrTableCell83.Weight = 0.11988022101912341D;
         //
         // xrTableCell84
         //
         this.xrTableCell84.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainteacher")});
         this.xrTableCell84.Name = "xrTableCell84";
         xrSummary20.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell84.Summary = xrSummary20;
         this.xrTableCell84.Text = "xrTableCell84";
         this.xrTableCell84.Weight = 0.11988022101912341D;
         //
         // xrTableCell85
         //
         this.xrTableCell85.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainperson")});
         this.xrTableCell85.Name = "xrTableCell85";
         xrSummary21.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell85.Summary = xrSummary21;
         this.xrTableCell85.Text = "xrTableCell85";
         this.xrTableCell85.Weight = 0.11988012687753238D;
         //
         // xrTableCell86
         //
         this.xrTableCell86.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trbowy")});
         this.xrTableCell86.Name = "xrTableCell86";
         xrSummary22.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell86.Summary = xrSummary22;
         this.xrTableCell86.Text = "xrTableCell86";
         this.xrTableCell86.Weight = 0.11988010401221144D;
         //
         // xrTableCell87
         //
         this.xrTableCell87.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_droos")});
         this.xrTableCell87.Name = "xrTableCell87";
         xrSummary23.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell87.Summary = xrSummary23;
         this.xrTableCell87.Text = "xrTableCell87";
         this.xrTableCell87.Weight = 0.11988014046122275D;
         //
         // xrTableCell88
         //
         this.xrTableCell88.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_motabadla")});
         this.xrTableCell88.Name = "xrTableCell88";
         xrSummary24.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell88.Summary = xrSummary24;
         this.xrTableCell88.Text = "xrTableCell88";
         this.xrTableCell88.Weight = 0.11988014046122286D;
         //
         // xrTableCell89
         //
         this.xrTableCell89.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_takweem")});
         this.xrTableCell89.Name = "xrTableCell89";
         xrSummary25.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell89.Summary = xrSummary25;
         this.xrTableCell89.Text = "xrTableCell89";
         this.xrTableCell89.Weight = 0.11988015158904958D;
         //
         // xrTableCell90
         //
         this.xrTableCell90.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_zearat")});
         this.xrTableCell90.Name = "xrTableCell90";
         xrSummary26.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell90.Summary = xrSummary26;
         this.xrTableCell90.Text = "xrTableCell90";
         this.xrTableCell90.Weight = 0.11987999153180218D;
         //
         // xrTableCell91
         //
         this.xrTableCell91.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell91.Name = "xrTableCell91";
         this.xrTableCell91.StylePriority.UseBackColor = false;
         this.xrTableCell91.Text = "عدد المستفيدين";
         this.xrTableCell91.Weight = 0.80418675266562234D;
         //
         // DetailReport1
         //
         this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.ReportHeader2,
         this.ReportFooter1});
         this.DetailReport1.DataMember = "XRep07Sub2";
         this.DetailReport1.DataSource = this.dsTEFollowUp1;
         this.DetailReport1.Level = 1;
         this.DetailReport1.Name = "DetailReport1";
         //
         // Detail2
         //
         this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail2.HeightF = 25F;
         this.Detail2.Name = "Detail2";
         //
         // ReportHeader2
         //
         this.ReportHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel1});
         this.ReportHeader2.HeightF = 53.125F;
         this.ReportHeader2.Name = "ReportHeader2";
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(372.6697F, 5.125014F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "مهام مكلف بها المشرف التربوي خلال الأسبوع";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // ReportFooter1
         //
         this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel3});
         this.ReportFooter1.HeightF = 52.08333F;
         this.ReportFooter1.Name = "ReportFooter1";
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(119.7917F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.Text = "التوقيع";
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(738.7807F, 10.00001F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "المشرف التربوي";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xRep07Sub1TableAdapter1
         //
         this.xRep07Sub1TableAdapter1.ClearBeforeFill = true;
         //
         // xRep07Sub2TableAdapter1
         //
         this.xRep07Sub2TableAdapter1.ClearBeforeFill = true;
         //
         // XtraReport07
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.DetailReport,
         this.DetailReport1});
         this.DataMember = "XRep05";
         this.DataSource = this.dsTEFollowUp1;
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 49, 19, 62);
         this.PageHeight = 850;
         this.PageWidth = 1100;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.Version = "12.2";
         this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReport01_DataSourceDemanded);
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }