Ejemplo n.º 1
0
        /// <summary>
        /// Generate the page footer for a report and pass it back
        /// </summary>
        /// <param name="rpt">The report to generate the footer for it</param>
        /// <returns>A page footer band</returns>
        private PageFooterBand GeneratePageFooter(XtraReport rpt)
        {
            #region Page Footer
            PageFooterBand pfBand = new PageFooterBand();

            XRPageInfo lblPageInfo = new XRPageInfo();
            if (_showPageNumbersInFooter)
            {
                lblPageInfo.Font          = new Font("Tahoma", 8);
                lblPageInfo.TextAlignment = TextAlignment.MiddleRight;
                lblPageInfo.PageInfo      = PageInfo.NumberOfTotal;
                lblPageInfo.LocationF     = new PointF(rpt.PageWidth - rpt.Margins.Left - rpt.Margins.Right - 100, 20);
                lblPageInfo.SizeF         = new SizeF(100, 13);
                lblPageInfo.Format        = "Page {0} of {1}";
            }

            if (_showPageNumbersInFooter)
            {
                pfBand.HeightF = 33;
                pfBand.Controls.Add(lblPageInfo);
            }
            else
            {
                // Shrink it if we don't need it
                pfBand.HeightF = 5;
            }
            #endregion Page Footer

            return(pfBand);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Creates a PageFooterBand instance in the specified ReportPage.
        /// </summary>
        /// <param name="page">The ReportPage instance.</param>
        /// <returns>The PageFooterBand instance.</returns>
        public static PageFooterBand CreatePageFooterBand(ReportPage page)
        {
            PageFooterBand pageFooter = new PageFooterBand();

            page.PageFooter = pageFooter;
            pageFooter.CreateUniqueName();
            return(pageFooter);
        }
Ejemplo n.º 3
0
        private void ReadPageFooterBand(XtraReportBase xtraReport, PageFooterBand xtraBand, StiPage page)
        {
            StiFooterBand band = new StiFooterBand();

            band.PrintOnAllPages = true;
            page.Components.Add(band);

            ReadBand(xtraBand, band);
        }
Ejemplo n.º 4
0
        private void LoadBottomMarginBand() // Page Footer
        {
            string name = FindObjectName(BOTTOM_MARGIN_BAND_MASK);

            if (!String.IsNullOrEmpty(name))
            {
                PageFooterBand footer      = ComponentsFactory.CreatePageFooterBand(page);
                string         description = GetObjectDescription(name);
                LoadBand(footer, description);
                LoadObjects(description, footer);
            }
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Add/Overlay Application Data Over Report
        /// </summary>
        public void AddCodeData()
        {
            PageFooterBand pageFooterBand = (PageFooterBand)this.FindObject("PageFooter1");
            // create title text
            TextObject textObjectOverlaySoftwareCertification = new TextObject();

            textObjectOverlaySoftwareCertification.Parent = pageFooterBand;
            textObjectOverlaySoftwareCertification.CreateUniqueName();
            //textObjectOverlaySoftwareCertification.Bounds = new RectangleF(Units.Centimeters, 0, Units.Centimeters * 10, Units.Centimeters * 1);

            //All Finance Documents use Processed, else Payments that use Emmited
            string prefix = (_reportFileName.EndsWith("ReportDocumentFinancePayment.frx"))
                ? Resx.global_report_overlay_software_certification_emitted
                : Resx.global_report_overlay_software_certification_processed
            ;

            //Processed|Emitted with certified Software Nº {0}/AT - Copyright {1} - Licenced to a {2} - Used only if System Country is Portugal
            if (SettingsApp.ConfigurationSystemCountry.Oid == SettingsApp.XpoOidConfigurationCountryPortugal &&
                (
                    _reportFileName.Contains("ReportDocumentFinance.frx") ||
                    _reportFileName.Contains("ReportDocumentFinancePayment.frx") ||
                    _reportFileName.Contains("ReportDocumentFinanceWayBill.frx")
                )
                )
            {
                textObjectOverlaySoftwareCertification.Text = string.Format(
                    Resx.global_report_overlay_software_certification,
                    prefix,
                    SettingsApp.SaftSoftwareCertificateNumber,
                    SettingsApp.SaftProductID,
                    GlobalFramework.LicenceCompany);

                //Add Hash Validation if Defined (In DocumentFinance Only)
                if (_hash4Chars != String.Empty)
                {
                    textObjectOverlaySoftwareCertification.Text = string.Format("{0} - {1}", _hash4Chars, textObjectOverlaySoftwareCertification.Text);
                }
            }
            ;

            //Finnally Add Overlay
            textObjectOverlaySoftwareCertification.ZOrder    = 1;
            textObjectOverlaySoftwareCertification.Left      = 0.0f;
            textObjectOverlaySoftwareCertification.Top       = 5.0f;
            textObjectOverlaySoftwareCertification.Width     = 718.2f;
            textObjectOverlaySoftwareCertification.Height    = 18.9f;
            textObjectOverlaySoftwareCertification.HorzAlign = HorzAlign.Center;
            textObjectOverlaySoftwareCertification.Font      = new Font("Arial", 8, FontStyle.Bold);

            //Assign _addCodeData to true to prevent repeat add CodeData
            _addCodeData = false;
        }
Ejemplo n.º 6
0
        private void LoadPageFooterBandXml()
        {
            XmlNode node = FindBandNode("PageFooterBand");

            if (node == null)
            {
                return;
            }
            PageFooterBand footer = ComponentsFactory.CreatePageFooterBand(page);

            LoadBand(node, footer);
            LoadObjects(node, footer);
        }
        public static PageFooterBand AddPageFooterBand(this XtraReport report)
        {
            var result = report.GetBandByType <PageFooterBand>();

            if (result == null)
            {
                result = new PageFooterBand()
                {
                    HeightF = 0F,
                };
                report.Bands.Add(result);
            }
            return(result);
        }
Ejemplo n.º 8
0
        protected virtual PageFooterBand CreateContainerBand()
        {
            var result = this.RootReport.GetBandByType <PageFooterBand>();

            if (result == null)
            {
                result = new PageFooterBand()
                {
                    HeightF = 0F,
                };
                this.RootReport.Bands.Add(result);
            }
            return(result);
        }
Ejemplo n.º 9
0
        protected void ASPxDashboard1_CustomExport(object sender, CustomExportWebEventArgs e)
        {
            XtraReport     report     = e.Report as XtraReport;
            PageHeaderBand headerBand = new PageHeaderBand();

            report.Bands.Add(headerBand);

            XRPictureBox icon = new XRPictureBox();

            icon.ImageUrl = Server.MapPath(@"~/App_Data/Images/dxlogo.png");
            icon.HeightF  = 50;
            icon.WidthF   = 300;
            headerBand.Controls.Add(icon);

            XRLabel customHeader = new XRLabel();

            customHeader.Text   = "Additioanl Header Text";
            customHeader.LeftF  = 300;
            customHeader.WidthF = 300;
            headerBand.Controls.Add(customHeader);

            XRPageInfo dateInfo = new XRPageInfo();

            dateInfo.PageInfo = PageInfo.DateTime;
            dateInfo.Format   = "Created at {0:h:mm tt dd MMMM yyyy}";
            dateInfo.TopF     = 100;
            dateInfo.WidthF   = 200;
            headerBand.Controls.Add(dateInfo);

            XRPageInfo userInfo = new XRPageInfo();

            userInfo.PageInfo = PageInfo.UserName;
            userInfo.Format   = "Current User: {0}";
            userInfo.TopF     = 100;
            userInfo.LeftF    = 250;
            userInfo.WidthF   = 200;
            headerBand.Controls.Add(userInfo);

            PageFooterBand footerBand = new PageFooterBand();

            report.Bands.Add(footerBand);
            XRPageInfo pageInfo = new XRPageInfo();

            pageInfo.Format = "Page {0} of {1}";
            footerBand.Controls.Add(pageInfo);
        }
        private void dashboardViewer1_CustomExport(object sender, CustomExportEventArgs e)
        {
            XtraReport     report     = e.Report as XtraReport;
            PageHeaderBand headerBand = new PageHeaderBand();

            report.Bands.Add(headerBand);

            XRPictureBox icon = new XRPictureBox();

            icon.Image   = Properties.Resources.dxLogo;
            icon.HeightF = 50;
            icon.WidthF  = 300;
            headerBand.Controls.Add(icon);

            XRLabel customHeader = new XRLabel();

            customHeader.Text   = "TEST TEST TEST";
            customHeader.LeftF  = 300;
            customHeader.WidthF = 300;
            headerBand.Controls.Add(customHeader);

            XRPageInfo dateInfo = new XRPageInfo();

            dateInfo.PageInfo = PageInfo.DateTime;
            dateInfo.Format   = "Created at {0:h:mm tt dd MMMM yyyy}";
            dateInfo.TopF     = 50;
            dateInfo.WidthF   = 200;
            headerBand.Controls.Add(dateInfo);

            PageFooterBand footerBand = new PageFooterBand();

            report.Bands.Add(footerBand);
            XRPageInfo pageInfo = new XRPageInfo();

            pageInfo.Format = "Page {0} of {1}";
            footerBand.Controls.Add(pageInfo);
        }
Ejemplo n.º 11
0
        public override void BuildReport()
        {
            base.BuildReport();
            // Add copyright and logo to the page footer

            //ReportHeaderBand headerBand = Report.Bands[BandKind.ReportHeader] as ReportHeaderBand;
            //if (headerBand != null)
            //{
            //    if (headerBand.HeightF < 60)
            //        headerBand.HeightF = 60;

            //    //XRLabel lblCompanyName = new XRLabel();

            //    //lblCompanyName.Dpi = 254F;
            //    //lblCompanyName.LocationFloat = new DevExpress.Utils.PointFloat(13.54724F, 122F);
            //    //lblCompanyName.Font = new System.Drawing.Font("Eurostile", 10F);
            //    //lblCompanyName.Name = "lblCompanyName";
            //    //lblCompanyName.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 4, 0, 0, 254F);
            //    //lblCompanyName.SizeF = new System.Drawing.SizeF(1833.033F, 43.60333F);
            //    //lblCompanyName.Text = CompleteDataLayer.ApplicationContext.Instance.CompanySiteName;

            //    //headerBand.Controls.Add(lblCompanyName);

            //    //XRLabel lblParamaters = new XRLabel();

            //    //lblParamaters.Dpi = 254F;
            //    //lblParamaters.LocationFloat = new DevExpress.Utils.PointFloat(13.54724F, 177.48F);
            //    //lblParamaters.Multiline = true;
            //    //lblParamaters.Name = "lblParamaters";
            //    //lblParamaters.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 4, 0, 0, 254F);
            //    //lblParamaters.SizeF = new System.Drawing.SizeF(1833.033F, 90.17F);
            //    //lblParamaters.Text = "";


            //    //headerBand.Controls.Add(lblParamaters);

            //    IDesignerHost designerHost = (IDesignerHost)this.DesignerHost.GetService(typeof(IDesignerHost));

            //    designerHost.Container.Add(lblCompanyName);
            //    //designerHost.Container.Add(lblParamaters);
            //}

            PageFooterBand footerBand = Report.Bands[BandKind.PageFooter] as PageFooterBand;

            if (footerBand != null)
            {
                if (footerBand.HeightF < 60)
                {
                    footerBand.HeightF = 60;
                }

                XRPageInfo pageInfo1 = (XRPageInfo)((DevExpress.XtraReports.UI.Band)footerBand).Controls["pageInfo1"];

                pageInfo1.Dpi                   = 254F;
                pageInfo1.Font                  = new System.Drawing.Font("Eurostile", 10F, System.Drawing.FontStyle.Bold);
                pageInfo1.LocationFloat         = new DevExpress.Utils.PointFloat(13.54724F, 25.00002F);
                pageInfo1.Name                  = "pageInfo1";
                pageInfo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
                pageInfo1.PageInfo              = DevExpress.XtraPrinting.PageInfo.DateTime;
                pageInfo1.SizeF                 = new System.Drawing.SizeF(472.7574F, 58.42F);
                pageInfo1.StyleName             = "PageInfo";
                pageInfo1.StylePriority.UseFont = false;

                XRPageInfo pageInfo2 = (XRPageInfo)((DevExpress.XtraReports.UI.Band)footerBand).Controls["pageInfo2"];

                pageInfo2.Dpi                            = 254F;
                pageInfo2.Font                           = new System.Drawing.Font("Eurostile", 10F, System.Drawing.FontStyle.Bold);
                pageInfo2.Format                         = "Page {0} of {1}";
                pageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(696.8076F, 25.00002F);
                pageInfo2.Name                           = "pageInfo2";
                pageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
                pageInfo2.SizeF                          = new System.Drawing.SizeF(354.33F, 58.41999F);
                pageInfo2.StyleName                      = "PageInfo";
                pageInfo2.StylePriority.UseFont          = false;
                pageInfo2.StylePriority.UseTextAlignment = false;
                pageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;

                XRPageInfo pageInfo3 = new XRPageInfo();// (XRPageInfo)((DevExpress.XtraReports.UI.Band)footerBand).Controls["pageInfo3"];


                pageInfo3.Dpi                            = 254F;
                pageInfo3.Font                           = new System.Drawing.Font("Eurostile", 10F, System.Drawing.FontStyle.Bold);
                pageInfo3.Format                         = "{0:\'COMPLETE DISTRIBUTION ©\' yyyy}";
                pageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(1226.08F, 25.00002F);
                pageInfo3.Name                           = "pageInfo3";
                pageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
                pageInfo3.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
                pageInfo3.SizeF                          = new System.Drawing.SizeF(618.8075F, 58.41999F);
                pageInfo3.StyleName                      = "PageInfo";
                pageInfo3.StylePriority.UseFont          = false;
                pageInfo3.StylePriority.UseTextAlignment = false;
                pageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;

                footerBand.Controls.Add(pageInfo3);

                XRLine xrLine1 = new XRLine();

                xrLine1.Dpi           = 254F;
                xrLine1.LineWidth     = 3;
                xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(13.54724F, 0F);
                xrLine1.Name          = "xrLine1";
                xrLine1.SizeF         = new System.Drawing.SizeF(1831.34F, 18.20334F);

                footerBand.Controls.Add(xrLine1);

                //XRPictureBox picture = new XRPictureBox();
                //picture.Image = global::CDS.Shared.Resources.Properties.Resources.CDSReportLogo;
                //picture.Sizing = DevExpress.XtraPrinting.ImageSizeMode.CenterImage;
                //picture.LocationFloat = new DevExpress.Utils.PointFloat(727.5F, 15.24003F);
                //picture.SizeF = new System.Drawing.SizeF(396.0F, 147.32F);
                //picture.Dpi = 254F;
                // picture.LockedInUserDesigner = false;

                //footerBand.Controls.Add(picture);

                IDesignerHost designerHost = (IDesignerHost)this.DesignerHost.GetService(typeof(IDesignerHost));

                //designerHost.Container.Add(picture);
                //designerHost.Container.Add(label);
            }
        }
 public static GroupFooterHelper AddGroupFooter(this PageFooterBand band)
 {
     return(new GroupFooterHelper(band));
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(BillingReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo2   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     this.Detail                = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.CaseID                = new DevExpress.XtraReports.Parameters.Parameter();
     this.firstDayOfMonthPeriod = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblReportID           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1         = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel26             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter            = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel2              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BillingReportDS       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.DetailReport          = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel24             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1               = new DevExpress.XtraReports.UI.XRLine();
     this.xrPanel2              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel6              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9              = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1         = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel18             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12             = new DevExpress.XtraReports.UI.XRLabel();
     this.PatientName           = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderTypeLabel     = new DevExpress.XtraReports.UI.CalculatedField();
     this.BillingRef            = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 16.75002F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 20.83333F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // CaseID
     //
     this.CaseID.Description = "CaseID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "383";
     this.CaseID.Visible     = false;
     //
     // firstDayOfMonthPeriod
     //
     this.firstDayOfMonthPeriod.Name      = "firstDayOfMonthPeriod";
     this.firstDayOfMonthPeriod.Type      = typeof(System.DateTime);
     this.firstDayOfMonthPeriod.ValueInfo = "2016-05-01";
     this.firstDayOfMonthPeriod.Visible   = false;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportID,
         this.xrLabel27,
         this.xrLabel1,
         this.xrPictureBox1,
         this.xrLabel26
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 136.25F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblReportID
     //
     this.lblReportID.Dpi                        = 100F;
     this.lblReportID.Font                       = new System.Drawing.Font("Trebuchet MS", 14F);
     this.lblReportID.ForeColor                  = System.Drawing.Color.Red;
     this.lblReportID.LocationFloat              = new DevExpress.Utils.PointFloat(649.5993F, 0F);
     this.lblReportID.Name                       = "lblReportID";
     this.lblReportID.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportID.SizeF                      = new System.Drawing.SizeF(100F, 23F);
     this.lblReportID.StylePriority.UseFont      = false;
     this.lblReportID.StylePriority.UseForeColor = false;
     this.lblReportID.Text                       = "PREVIEW";
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                            = 100F;
     this.xrLabel27.Font                           = new System.Drawing.Font("Trebuchet MS", 14F);
     this.xrLabel27.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 0F);
     this.xrLabel27.Name                           = "xrLabel27";
     this.xrLabel27.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                          = new System.Drawing.SizeF(138.7019F, 23F);
     this.xrLabel27.StylePriority.UseFont          = false;
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     this.xrLabel27.Text                           = "Billing Report:";
     this.xrLabel27.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(168.75F, 16.66667F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(328.2852F, 105.2917F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                           " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                           "ppliedabc.com";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.firstDayOfMonthPeriod, "Text", "{0:MMMM, yyyy}")
     });
     this.xrLabel26.Dpi                            = 100F;
     this.xrLabel26.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel26.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 23F);
     this.xrLabel26.Name                           = "xrLabel26";
     this.xrLabel26.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF                          = new System.Drawing.SizeF(138.7019F, 23.00001F);
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrLabel2,
         this.xrPageInfo1
     });
     this.PageFooter.Dpi     = 100F;
     this.PageFooter.HeightF = 25F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                   = 100F;
     this.xrPageInfo2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageInfo2.Name                  = "xrPageInfo2";
     this.xrPageInfo2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo              = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                 = new System.Drawing.SizeF(212.9808F, 23F);
     this.xrPageInfo2.StylePriority.UseFont = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                   = 100F;
     this.xrLabel2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(640.625F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(35.41667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Page";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                   = 100F;
     this.xrPageInfo1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo1.LocationFloat         = new DevExpress.Utils.PointFloat(676.0417F, 0F);
     this.xrPageInfo1.Name                  = "xrPageInfo1";
     this.xrPageInfo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                 = new System.Drawing.SizeF(63.95831F, 23F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // BillingReportDS
     //
     this.BillingReportDS.ConnectionName = "CoreConnection";
     this.BillingReportDS.Name           = "BillingReportDS";
     storedProcQuery1.Name = "webreports_BillingCaseInfo";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "webreports.BillingCaseInfo";
     storedProcQuery2.Name           = "webreports_BillingProviderInfo";
     queryParameter2.Name            = "@CaseID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter3.Name            = "@FirstDayOfMonth";
     queryParameter3.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter4.Name            = "@BillingRef";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.Parameters.Add(queryParameter3);
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.StoredProcName = "webreports.BillingProviderInfo";
     storedProcQuery3.Name           = "webreports_BillingHoursInfo";
     queryParameter5.Name            = "@CaseID";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter6.Name            = "@FirstDayOfMonth";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter7.Name            = "@BillingRef";
     queryParameter7.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery3.Parameters.Add(queryParameter5);
     storedProcQuery3.Parameters.Add(queryParameter6);
     storedProcQuery3.Parameters.Add(queryParameter7);
     storedProcQuery3.StoredProcName = "webreports.BillingHoursInfo";
     this.BillingReportDS.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2,
         storedProcQuery3
     });
     masterDetailInfo1.DetailQueryName   = "webreports_BillingProviderInfo";
     relationColumnInfo1.NestedKeyColumn = "CaseID";
     relationColumnInfo1.ParentKeyColumn = "CaseID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName   = "webreports_BillingCaseInfo";
     masterDetailInfo2.DetailQueryName   = "webreports_BillingHoursInfo";
     relationColumnInfo2.NestedKeyColumn = "ProviderID";
     relationColumnInfo2.ParentKeyColumn = "ProviderID";
     masterDetailInfo2.KeyColumns.Add(relationColumnInfo2);
     masterDetailInfo2.MasterQueryName = "webreports_BillingProviderInfo";
     this.BillingReportDS.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1,
         masterDetailInfo2
     });
     this.BillingReportDS.ResultSchemaSerializable = resources.GetString("BillingReportDS.ResultSchemaSerializable");
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1
     });
     this.DetailReport.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.DetailReport.DataSource = this.BillingReportDS;
     this.DetailReport.Dpi        = 100F;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19,
         this.xrLine1,
         this.xrPanel2,
         this.xrPanel1,
         this.xrLabel11,
         this.xrLabel9
     });
     this.Detail1.Dpi     = 100F;
     this.Detail1.HeightF = 128.9295F;
     this.Detail1.Name    = "Detail1";
     //
     // xrLabel24
     //
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(480.1284F, 105.9295F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(269.8717F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "Notes";
     //
     // xrLabel23
     //
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 105.9295F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "Service";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 105.9295F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(55.12814F, 23F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Hours";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Dpi                            = 100F;
     this.xrLabel21.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 105.9295F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Time Out";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Dpi                            = 100F;
     this.xrLabel20.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91676F, 105.9295F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Time In";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                            = 100F;
     this.xrLabel19.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(9.781275E-05F, 105.9295F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Date";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(9.781275E-05F, 98.15387F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(750F, 2F);
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel5
     });
     this.xrPanel2.Dpi           = 100F;
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(400F, 52.15385F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi                            = 100F;
     this.xrLabel17.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 22.99998F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(70.12836F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Phone #:";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel7
     //
     this.xrLabel7.Dpi                            = 100F;
     this.xrLabel7.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(70.12833F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Phone #:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderPrimaryPhone")
     });
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 22.99998F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00002F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "xrLabel8";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientPhone")
     });
     this.xrLabel5.Dpi                   = 100F;
     this.xrLabel5.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 0F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00001F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "xrLabel5";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel10
     });
     this.xrPanel1.Dpi           = 100F;
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(89.98392F, 52.15385F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderName")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 22.99998F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientName")
     });
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 0F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "xrLabel4";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi                            = 100F;
     this.xrLabel3.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 0F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Patient Name:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeLabel")
     });
     this.xrLabel10.Dpi                            = 100F;
     this.xrLabel10.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 22.99998F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Dpi                   = 100F;
     this.xrLabel11.Font                  = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(366.7467F, 10.00001F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Hours";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeCode")
     });
     this.xrLabel9.Dpi                            = 100F;
     this.xrLabel9.Font                           = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(145.5128F, 10.00001F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(221.234F, 31.01283F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "xrLabel9";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                     "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo";
     this.DetailReport1.DataSource = this.BillingReportDS;
     this.DetailReport1.Dpi        = 100F;
     this.DetailReport1.Level      = 0;
     this.DetailReport1.Name       = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23.80127F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursBillable")
     });
     this.xrLabel18.Dpi                            = 100F;
     this.xrLabel18.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 0F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(55.1282F, 23F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "xrLabel18";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursNotes")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(480.1283F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(269.8719F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.ServiceName")
     });
     this.xrLabel15.Dpi                   = 100F;
     this.xrLabel15.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 0F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "xrLabel15";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeOut")
     });
     this.xrLabel14.Dpi                            = 100F;
     this.xrLabel14.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 0F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "xrLabel14";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeIn")
     });
     this.xrLabel13.Dpi                            = 100F;
     this.xrLabel13.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91681F, 0F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel12.Dpi                            = 100F;
     this.xrLabel12.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "xrLabel12";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_BillingCaseInfo";
     this.PatientName.Expression = "[PatientFirstName] + \' \' + [PatientLastName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.ProviderName.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                         "fo";
     this.ProviderTypeLabel.Expression = "[ProviderTypeCode] + \':\'";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // BillingRef
     //
     this.BillingRef.Description = "Parameter1";
     this.BillingRef.Name        = "BillingRef";
     this.BillingRef.ValueInfo   = "PREVIEW";
     this.BillingRef.Visible     = false;
     //
     // BillingReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.DetailReport
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.BillingReportDS
     });
     this.DataMember = "webreports_BillingCaseInfo";
     this.DataSource = this.BillingReportDS;
     this.Margins    = new System.Drawing.Printing.Margins(49, 51, 17, 21);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.firstDayOfMonthPeriod,
         this.BillingRef
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo 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.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeDocument));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPictureBox8    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.HasExDate        = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource2   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupHeader3     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.sqlDataSource3   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrSubreport1     = new DevExpress.XtraReports.UI.XRSubreport();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 1.763889F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 14F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 18F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox8,
         this.xrLabel1,
         this.xrLabel5,
         this.xrLabel4
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 305F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrPictureBox8
     //
     this.xrPictureBox8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.xrPictureBox8.Dpi           = 254F;
     this.xrPictureBox8.LocationFloat = new DevExpress.Utils.PointFloat(25.4F, 0F);
     this.xrPictureBox8.Name          = "xrPictureBox8";
     this.xrPictureBox8.SizeF         = new System.Drawing.SizeF(363.3611F, 284.9463F);
     this.xrPictureBox8.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2339.26F, 21.16667F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(502.6323F, 91.66478F);
     this.xrLabel1.StylePriority.UseBorderColor   = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "شركة العين للتوزيع";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel5.Dpi           = 254F;
     this.xrLabel5.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169)))));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(2421.503F, 112.8315F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(448.6116F, 70.63511F);
     this.xrLabel5.StylePriority.UseBorderColor   = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "منطقة العين - الدمام السعودية";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1180.839F, 143.5808F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1178.278F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "بيانات مرفقات الموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo3,
         this.xrPageInfo2
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 73.2367F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Dpi                            = 254F;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo3.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(2687.375F, 0F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(254.0002F, 58.42F);
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(24.99999F, 0F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6505F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Black;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "EmployeeDocuments";
     storedProcQuery1.StoredProcName = "EmployeeDocuments";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTable2
     //
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EndDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell6.Dpi  = 254F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell6.Weight        = 0.058898504773092768D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.0583797479597113D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.StartDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi           = 254F;
     this.xrTableCell7.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell7.Name          = "xrTableCell7";
     this.xrTableCell7.OddStyleName  = "tbl_even_detail";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.072820293199522115D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocReqOpt")
     });
     this.xrTableCell8.Dpi           = 254F;
     this.xrTableCell8.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell8.Name          = "xrTableCell8";
     this.xrTableCell8.OddStyleName  = "tbl_even_detail";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.15029585798816569D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocType")
     });
     this.xrTableCell9.Dpi           = 254F;
     this.xrTableCell9.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell9.Name          = "xrTableCell9";
     this.xrTableCell9.OddStyleName  = "tbl_even_detail";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.15029585798816569D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.docTypeName")
     });
     this.xrTableCell10.Dpi           = 254F;
     this.xrTableCell10.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell10.Name          = "xrTableCell10";
     this.xrTableCell10.OddStyleName  = "tbl_even_detail";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15029585798816569D;
     //
     // xrTable1
     //
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF     = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable1.StyleName = "tbl_header_style";
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont    = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 0.5679012345679012D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell1.Dpi     = 254F;
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "تاريخ الانتهاء";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell1.Weight        = 0.12219295708371847D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 254F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "تاريخ الاصدار";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell2.Weight        = 0.0758719550880966D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 254F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "درجة إلزامية الوثيقة";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell3.Weight        = 0.15659421787239322D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "نوع الوثيقة";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell4.Weight        = 0.1628925777566208D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi  = 254F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "اسم الوثيقة";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.15029585798816569D;
     //
     // HasExDate
     //
     this.HasExDate.DataMember = "EmployeeDocuments";
     this.HasExDate.Expression = "Iif([HasExpiryDate]=true,\'لها تاريخ انتهاء\',\'ليس لها تاريخ انتهاء\')";
     this.HasExDate.Name       = "HasExDate";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionName = "HrContext";
     this.sqlDataSource2.Name           = "sqlDataSource2";
     storedProcQuery2.Name     = "sp_GetRequiredPaper";
     queryParameter1.Name      = "@jobId";
     queryParameter1.Type      = typeof(int);
     queryParameter1.ValueInfo = "0";
     storedProcQuery2.Parameters.Add(queryParameter1);
     storedProcQuery2.StoredProcName = "sp_GetRequiredPaper";
     this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery2
     });
     this.sqlDataSource2.ResultSchemaSerializable = resources.GetString("sqlDataSource2.ResultSchemaSerializable");
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("EmpName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 58.42F;
     this.GroupHeader1.Level   = 2;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.JobName")
     });
     this.xrLabel3.Dpi           = 254F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(197.1254F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(2396.652F, 58.42F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel2
     //
     this.xrLabel2.BackColor = System.Drawing.Color.LightGray;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EmpName")
     });
     this.xrLabel2.Dpi           = 254F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(2593.778F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(366.2224F, 58.42F);
     this.xrLabel2.StylePriority.UseBackColor     = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader2.Dpi = 254F;
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("docTypeName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 63.5F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrSubreport1
     });
     this.GroupFooter1.Dpi     = 254F;
     this.GroupFooter1.HeightF = 143.8628F;
     this.GroupFooter1.Level   = 1;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader3.Dpi     = 254F;
     this.GroupHeader3.HeightF = 63.5F;
     this.GroupHeader3.Level   = 1;
     this.GroupHeader3.Name    = "GroupHeader3";
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionName = "HrContext";
     this.sqlDataSource3.Name           = "sqlDataSource3";
     storedProcQuery3.Name           = "sp_EmployeeDocumentReport";
     storedProcQuery3.StoredProcName = "sp_EmployeeDocumentReport";
     this.sqlDataSource3.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery3
     });
     this.sqlDataSource3.ResultSchemaSerializable = resources.GetString("sqlDataSource3.ResultSchemaSerializable");
     //
     // xrSubreport1
     //
     this.xrSubreport1.Dpi           = 254F;
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(197.1249F, 0F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("CompanyId", null, "sp_EmployeeDocumentReport.CompanyId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("EmpId", null, "sp_EmployeeDocumentReport.EmpId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Nationality", null, "sp_EmployeeDocumentReport.nationalityId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Gender", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Culture", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ReportSource = new Sub();
     this.xrSubreport1.SizeF        = new System.Drawing.SizeF(2762.875F, 138.5711F);
     //
     // EmployeeDocument
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupFooter1,
         this.GroupHeader3
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.HasExDate
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1,
         this.sqlDataSource2,
         this.sqlDataSource3
     });
     this.DataMember   = "sp_EmployeeDocumentReport";
     this.DataSource   = this.sqlDataSource3;
     this.Dpi          = 254F;
     this.Landscape    = true;
     this.Margins      = new System.Drawing.Printing.Margins(0, 10, 14, 18);
     this.PageHeight   = 2100;
     this.PageWidth    = 2970;
     this.PaperKind    = System.Drawing.Printing.PaperKind.A4;
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivisonsReport));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Yes = new DevExpress.XtraReports.Parameters.Parameter();
     this.No  = new DevExpress.XtraReports.Parameters.Parameter();
     this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrTable2
     //
     this.xrTable2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     resources.ApplyResources(this.xrTable2, "xrTable2");
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell7,
         this.xrTableCell9
     });
     this.xrTableRow4.Name = "xrTableRow4";
     resources.ApplyResources(this.xrTableRow4, "xrTableRow4");
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell8.CanGrow = false;
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "name")
     });
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DataField";
     this.xrTableCell8.StylePriority.UseBorders       = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell8, "xrTableCell8");
     //
     // xrTableCell7
     //
     this.xrTableCell7.CanGrow = false;
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "timeZone")
     });
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell7, "xrTableCell7");
     this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
     //
     // xrTableCell9
     //
     this.xrTableCell9.CanGrow = false;
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "calculatedField1")
     });
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell9, "xrTableCell9");
     this.xrTableCell9.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell9_BeforePrint);
     //
     // TopMargin
     //
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.TopMargin, "TopMargin");
     //
     // BottomMargin
     //
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Company.Structure.Division);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3
     });
     resources.ApplyResources(this.pageHeaderBand1, "pageHeaderBand1");
     this.pageHeaderBand1.Name = "pageHeaderBand1";
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel5, "xrLabel5");
     this.xrLabel5.Name    = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name    = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name    = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name = "xrTableRow1";
     resources.ApplyResources(this.xrTableRow1, "xrTableRow1");
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name = "xrTableCell1";
     resources.ApplyResources(this.xrTableCell1, "xrTableCell1");
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     resources.ApplyResources(this.xrTableCell2, "xrTableCell2");
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name = "xrTableCell3";
     resources.ApplyResources(this.xrTableCell3, "xrTableCell3");
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow2.Name = "xrTableRow2";
     resources.ApplyResources(this.xrTableRow2, "xrTableRow2");
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     resources.ApplyResources(this.xrTableCell4, "xrTableCell4");
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name = "xrTableCell5";
     resources.ApplyResources(this.xrTableCell5, "xrTableCell5");
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name = "xrTableCell6";
     resources.ApplyResources(this.xrTableCell6, "xrTableCell6");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel2,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Name    = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     //
     // User
     //
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name    = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     this.xrPageInfo1.StylePriority.UseBorders       = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     this.xrPageInfo2.StylePriority.UseBorders       = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.StyleName = "Title";
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17
     });
     resources.ApplyResources(this.GroupHeader1, "GroupHeader1");
     this.GroupHeader1.Name         = "GroupHeader1";
     this.GroupHeader1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupHeader1_BeforePrint);
     //
     // xrLabel17
     //
     this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Name    = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StylePriority.UseBorders       = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     //
     // Yes
     //
     resources.ApplyResources(this.Yes, "Yes");
     this.Yes.Name    = "Yes";
     this.Yes.Visible = false;
     //
     // No
     //
     this.No.Name    = "No";
     this.No.Visible = false;
     //
     // calculatedField1
     //
     resources.ApplyResources(this.calculatedField1, "calculatedField1");
     this.calculatedField1.Expression = "Iif([isInactive] ==True , [Parameters.Yes] ,[Parameters.No] )";
     this.calculatedField1.Name       = "calculatedField1";
     //
     // DivisonsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.GroupHeader1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.User,
         this.Yes,
         this.No
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_ba_descriptions));
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrRichText1          = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel5             = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel6             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel8             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel16            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20            = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1     = new DevExpress.XtraReports.UI.CalculatedField();
     this.label_style          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.output_style         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.ProjectID            = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor         = new DevExpress.XtraReports.Parameters.Parameter();
     this.Add_space_after_item = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrPageBreak1         = new DevExpress.XtraReports.UI.XRPageBreak();
     this.GroupFooter1         = new DevExpress.XtraReports.UI.GroupFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText1,
         this.xrLabel5
     });
     this.Detail.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Detail.HeightF = 117.625F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ba response", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.Detail.StylePriority.UseFont = false;
     this.Detail.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrRichText1
     //
     this.xrRichText1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrRichText1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Html", "[res_response]")
     });
     this.xrRichText1.Font                     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 30.20833F);
     this.xrRichText1.Name                     = "xrRichText1";
     this.xrRichText1.SerializableRtfString    = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                    = new System.Drawing.SizeF(750.0004F, 87.41666F);
     this.xrRichText1.StyleName                = "output_style";
     this.xrRichText1.StylePriority.UseBorders = false;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderColor = System.Drawing.Color.Black;
     this.xrLabel5.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.BorderWidth   = 1F;
     this.xrLabel5.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 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(749.9998F, 30.20833F);
     this.xrLabel5.StyleName     = "label_style";
     this.xrLabel5.StylePriority.UseBorderColor = false;
     this.xrLabel5.StylePriority.UseBorders     = false;
     this.xrLabel5.StylePriority.UseBorderWidth = false;
     this.xrLabel5.StylePriority.UseFont        = false;
     this.xrLabel5.Text = "Business Area Response:";
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 47.91667F;
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseFont = false;
     this.TopMargin.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 28F;
     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.xrLabel6,
         this.xrLabel2
     });
     this.ReportHeader.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportHeader.HeightF = 68.46434F;
     this.ReportHeader.Name    = "ReportHeader";
     this.ReportHeader.StylePriority.UseFont = false;
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[ProjectName]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(382.334F, 0F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(367.6665F, 46.33334F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "Project name";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrLabel6.BeforePrint                   += new System.Drawing.Printing.PrintEventHandler(this.xrLabel6_BeforePrint);
     //
     // xrLabel2
     //
     this.xrLabel2.Bookmark                       = "Summary";
     this.xrLabel2.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(382.3333F, 46.33334F);
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Business Area Summary";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel8,
         this.xrPageInfo2,
         this.xrLabel7,
         this.xrPageInfo1
     });
     this.PageFooter.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PageFooter.HeightF = 79.42709F;
     this.PageFooter.Name    = "PageFooter";
     this.PageFooter.StylePriority.UseFont = false;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(641.6665F, 43.92707F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(49.47913F, 35.50002F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "Page";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel8.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 42.8854F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 36.54169F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(7.947286E-05F, 19.79167F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Generated by ReadyCert® for";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(691.1456F, 43.92707F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16,
         this.xrLabel11,
         this.xrLabel10
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("area_identifier", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 30.20833F;
     this.GroupHeader1.Level           = 1;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrLabel16
     //
     this.xrLabel16.BorderColor = System.Drawing.Color.Black;
     this.xrLabel16.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel16.BorderWidth   = 1F;
     this.xrLabel16.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(125F, 30.20833F);
     this.xrLabel16.StyleName     = "label_style";
     this.xrLabel16.StylePriority.UseBorderColor = false;
     this.xrLabel16.StylePriority.UseBorders     = false;
     this.xrLabel16.StylePriority.UseBorderWidth = false;
     this.xrLabel16.StylePriority.UseFont        = false;
     this.xrLabel16.Text = "Business Area:";
     //
     // xrLabel11
     //
     this.xrLabel11.BorderColor = System.Drawing.Color.Black;
     this.xrLabel11.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel11.BorderWidth = 1F;
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_identifier]")
     });
     this.xrLabel11.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(125F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(113.9583F, 30.20833F);
     this.xrLabel11.StyleName     = "output_style";
     this.xrLabel11.StylePriority.UseBorderColor   = false;
     this.xrLabel11.StylePriority.UseBorders       = false;
     this.xrLabel11.StylePriority.UseBorderWidth   = false;
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text          = "area id";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.BorderColor = System.Drawing.Color.Black;
     this.xrLabel10.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.BorderWidth = 1F;
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_name]")
     });
     this.xrLabel10.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(238.9583F, 0F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(511.0418F, 30.20833F);
     this.xrLabel10.StyleName     = "output_style";
     this.xrLabel10.StylePriority.UseBorderColor   = false;
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UseBorderWidth   = false;
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "area name";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel21,
         this.xrLabel20
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("mil_name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 30.20833F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // xrLabel21
     //
     this.xrLabel21.BorderColor = System.Drawing.Color.Black;
     this.xrLabel21.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel21.BorderWidth   = 1F;
     this.xrLabel21.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(125F, 30.20833F);
     this.xrLabel21.StyleName     = "label_style";
     this.xrLabel21.StylePriority.UseBorderColor = false;
     this.xrLabel21.StylePriority.UseBorders     = false;
     this.xrLabel21.StylePriority.UseBorderWidth = false;
     this.xrLabel21.StylePriority.UseFont        = false;
     this.xrLabel21.Text = "Milestone:";
     //
     // xrLabel20
     //
     this.xrLabel20.BorderColor = System.Drawing.Color.Black;
     this.xrLabel20.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel20.BorderWidth = 1F;
     this.xrLabel20.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[mil_name]")
     });
     this.xrLabel20.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(125F, 0F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(625.0005F, 30.20833F);
     this.xrLabel20.StyleName     = "output_style";
     this.xrLabel20.StylePriority.UseBorderColor   = false;
     this.xrLabel20.StylePriority.UseBorders       = false;
     this.xrLabel20.StylePriority.UseBorderWidth   = false;
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text          = "Milestone name";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember  = "Query";
     this.calculatedField1.DisplayName = "tostr-milname";
     this.calculatedField1.Expression  = "tostr([mil_name])";
     this.calculatedField1.FieldType   = DevExpress.XtraReports.UI.FieldType.String;
     this.calculatedField1.Name        = "calculatedField1";
     //
     // label_style
     //
     this.label_style.BackColor       = System.Drawing.Color.LemonChiffon;
     this.label_style.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.label_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.label_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.label_style.BorderWidth     = 2F;
     this.label_style.Font            = new System.Drawing.Font("Segoe UI", 11F);
     this.label_style.Name            = "label_style";
     this.label_style.Padding         = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 3, 0, 100F);
     this.label_style.TextAlignment   = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // output_style
     //
     this.output_style.BackColor     = System.Drawing.Color.WhiteSmoke;
     this.output_style.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.output_style.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.output_style.Name          = "output_style";
     this.output_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 1, 0, 100F);
     this.output_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "ProjectID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.ProjectID]", typeof(System.Guid));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // Add_space_after_item
     //
     this.Add_space_after_item.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1
     });
     this.Add_space_after_item.HeightF = 13.54167F;
     this.Add_space_after_item.Level   = 1;
     this.Add_space_after_item.Name    = "Add_space_after_item";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.HeightF = 0F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // rep_pro_ba_descriptions
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.Add_space_after_item,
         this.GroupFooter1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Query";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins    = new System.Drawing.Printing.Margins(49, 51, 48, 28);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.ProjectID,
         this.ProjectName,
         this.ProjectColor
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.label_style,
         this.output_style
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(ParentHoursReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PatientName       = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName      = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.CaseID            = new DevExpress.XtraReports.Parameters.Parameter();
     this.StartDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.EndDate           = new DevExpress.XtraReports.Parameters.Parameter();
     this.BCBAName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.BCBASignature     = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderSignature = new DevExpress.XtraReports.UI.CalculatedField();
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel31         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel30         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1  = new DevExpress.XtraReports.UI.CalculatedField();
     this.FinalizationID    = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderID        = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProviderTypeLabel = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName     = "DataField";
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.Visible       = false;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Dpi           = 100F;
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(423.1246F, 9.999974F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(33.48204F, 18.37179F);
     this.xrLabel18.StyleName     = "FieldCaption";
     this.xrLabel18.Text          = "Hrs";
     //
     // xrLabel13
     //
     this.xrLabel13.Dpi           = 100F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(323.7936F, 9.999974F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(75.00002F, 18.37179F);
     this.xrLabel13.StyleName     = "FieldCaption";
     this.xrLabel13.Text          = "Time Out";
     //
     // xrLabel10
     //
     this.xrLabel10.Dpi           = 100F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(225.5297F, 9.999974F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(71.18059F, 18.37179F);
     this.xrLabel10.StyleName     = "FieldCaption";
     this.xrLabel10.Text          = "Time In";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(124.7159F, 9.999974F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(72.68874F, 18.37179F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Date";
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi           = 100F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(480.4332F, 9.999974F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(56.95837F, 18.37178F);
     this.xrLabel8.StyleName     = "FieldCaption";
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Service";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 1.041635F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLine2
     //
     this.xrLine2.Dpi           = 100F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(5.999947F, 28.37181F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(696F, 2F);
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 45.66663F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi           = 100F;
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(81.74996F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrPictureBox1,
         this.xrLabel19,
         this.xrLabel2,
         this.xrLabel17
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 207.1488F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(512.6127F, 174.5655F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(51.86224F, 20.66664F);
     this.xrLabel22.StyleName                      = "Title";
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "through";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.StartDate", "{0:M/d/yyyy}")
     });
     this.xrLabel21.Dpi           = 100F;
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(411.2205F, 174.5655F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text          = "xrLabel21";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel20
     //
     this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.EndDate", "{0:M/d/yyyy}")
     });
     this.xrLabel20.Dpi           = 100F;
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(564.4752F, 174.5655F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.Text          = "xrLabel20";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(6.000019F, 1.999991F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                   = 100F;
     this.xrLabel19.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel19.LocationFloat         = new DevExpress.Utils.PointFloat(174.75F, 18.66668F);
     this.xrLabel19.Multiline             = true;
     this.xrLabel19.Name                  = "xrLabel19";
     this.xrLabel19.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                 = new System.Drawing.SizeF(308.9399F, 105.2917F);
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                            " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                            "ppliedabc.com";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.PatientName")
     });
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(401.0257F, 143.5655F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(276.4063F, 31F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi           = 100F;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 143.5655F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(276.8622F, 38.99998F);
     this.xrLabel17.StyleName     = "Title";
     this.xrLabel17.Text          = "Patient Hours Detail";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 24F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_PatientHoursReportDetail";
     this.PatientName.Expression = "[PatientLastName] + \', \' + [PatientFirstName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderName.Expression = "[ProviderLastName] + \', \' + [ProviderFirstName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "CoreConnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "webreports_PatientHoursReportDetail";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter2.Name  = "@StartDate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter3.Name  = "@EndDate";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "webreports.PatientHoursReportDetail";
     storedProcQuery2.Name           = "webreports_PatientHoursReportDetailSignatures";
     queryParameter4.Name            = "@CaseID";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter5.Name            = "@StartDate";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter6.Name            = "@EndDate";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.Parameters.Add(queryParameter5);
     storedProcQuery2.Parameters.Add(queryParameter6);
     storedProcQuery2.StoredProcName = "webreports.PatientHoursReportDetailSignatures";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // CaseID
     //
     this.CaseID.Description = "Case ID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "0";
     //
     // StartDate
     //
     this.StartDate.Description = "Start Date";
     this.StartDate.Name        = "StartDate";
     this.StartDate.Type        = typeof(System.DateTime);
     //
     // EndDate
     //
     this.EndDate.Description = "End Date";
     this.EndDate.Name        = "EndDate";
     this.EndDate.Type        = typeof(System.DateTime);
     //
     // BCBAName
     //
     this.BCBAName.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBAName.Expression = "[reportedBCBALastName] + \', \' + [reportedBCBAFirstName]";
     this.BCBAName.Name       = "BCBAName";
     //
     // BCBASignature
     //
     this.BCBASignature.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBASignature.Expression = "[reportedBCBAFirstName] + \' \' + [reportedBCBALastName]";
     this.BCBASignature.Name       = "BCBASignature";
     //
     // ProviderSignature
     //
     this.ProviderSignature.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderSignature.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderSignature.Name       = "ProviderSignature";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader
     });
     this.DetailReport1.DataMember   = "webreports_PatientHoursReportDetail";
     this.DetailReport1.DataSource   = this.sqlDataSource1;
     this.DetailReport1.Dpi          = 100F;
     this.DetailReport1.FilterString = "[ProviderID] = ?ProviderID";
     this.DetailReport1.Level        = 0;
     this.DetailReport1.Name         = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16,
         this.xrLabel12,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel1,
         this.xrLabel28
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ID")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(41.24997F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(59.50743F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ServiceCode")
     });
     this.xrLabel12.Dpi                   = 100F;
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(480.4332F, 0F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(56.95837F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTotal")
     });
     this.xrLabel9.Dpi                   = 100F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(423.1246F, 0F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(33.48203F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "xrLabel9";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeOut", "{0:h:mm tt}")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(323.7936F, 0F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(75.00002F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeIn", "{0:h:mm tt}")
     });
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(225.5295F, 0F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(71.1806F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel28.Dpi                            = 100F;
     this.xrLabel28.Font                           = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(124.7159F, 0F);
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(72.68874F, 15F);
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "xrLabel11";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel8,
         this.xrLabel3,
         this.xrLabel10,
         this.xrLabel13,
         this.xrLabel18,
         this.xrLine1,
         this.xrLine2
     });
     this.GroupHeader2.Dpi             = 100F;
     this.GroupHeader2.HeightF         = 31.25F;
     this.GroupHeader2.Name            = "GroupHeader2";
     this.GroupHeader2.RepeatEveryPage = true;
     //
     // xrLabel15
     //
     this.xrLabel15.Dpi           = 100F;
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(41.24997F, 9.999974F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(59.50743F, 18.37179F);
     this.xrLabel15.StyleName     = "FieldCaption";
     this.xrLabel15.Text          = "ID";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel31,
         this.xrLabel30,
         this.xrLine3,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 86.12499F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLabel31
     //
     this.xrLabel31.Dpi                   = 100F;
     this.xrLabel31.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLabel31.LocationFloat         = new DevExpress.Utils.PointFloat(510.7407F, 55.25004F);
     this.xrLabel31.Name                  = "xrLabel31";
     this.xrLabel31.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.SizeF                 = new System.Drawing.SizeF(89.58331F, 23F);
     this.xrLabel31.StyleName             = "Title";
     this.xrLabel31.StylePriority.UseFont = false;
     this.xrLabel31.Text                  = "Signature ID:";
     //
     // xrLabel30
     //
     this.xrLabel30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.FinalizationID")
     });
     this.xrLabel30.Dpi           = 100F;
     this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(600.324F, 55.25004F);
     this.xrLabel30.Name          = "xrLabel30";
     this.xrLabel30.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.SizeF         = new System.Drawing.SizeF(101.6758F, 23F);
     this.xrLabel30.Text          = "xrLabel30";
     //
     // xrLine3
     //
     this.xrLine3.Dpi           = 100F;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 9.999974F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                   = 100F;
     this.xrLabel27.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel27.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.25002F);
     this.xrLabel27.Name                  = "xrLabel27";
     this.xrLabel27.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                 = new System.Drawing.SizeF(175.8206F, 23F);
     this.xrLabel27.StyleName             = "Title";
     this.xrLabel27.StylePriority.UseFont = false;
     this.xrLabel27.Text                  = "Electronically signed:";
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.LatestSignoffDate")
     });
     this.xrLabel26.Dpi           = 100F;
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(510.7407F, 32.25002F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(191.2593F, 23F);
     this.xrLabel26.Text          = "xrLabel26";
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderSignature")
     });
     this.xrLabel25.Dpi                            = 100F;
     this.xrLabel25.Font                           = new System.Drawing.Font("Kunstler Script", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel25.LocationFloat                  = new DevExpress.Utils.PointFloat(213.3768F, 20.41664F);
     this.xrLabel25.Name                           = "xrLabel25";
     this.xrLabel25.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                          = new System.Drawing.SizeF(283.3333F, 44.875F);
     this.xrLabel25.StylePriority.UseFont          = false;
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     this.xrLabel25.Text                           = "xrLabel25";
     this.xrLabel25.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel23,
         this.xrLabel24
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 69.79166F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderTypeLabel")
     });
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(157.9349F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "xrLabel23";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderName")
     });
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.99999F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(389.5833F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "xrLabel24";
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember  = "webreports_PatientHoursReportDetailSignatures";
     this.calculatedField1.DisplayName = "ProviderSignature";
     this.calculatedField1.Expression  = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.calculatedField1.Name        = "calculatedField1";
     //
     // FinalizationID
     //
     this.FinalizationID.DataMember = "webreports_PatientHoursReportDetail";
     this.FinalizationID.Expression = "ToInt(Rnd() * 100000)";
     this.FinalizationID.Name       = "FinalizationID";
     //
     // ProviderID
     //
     this.ProviderID.Description = "Provider ID";
     this.ProviderID.Name        = "ProviderID";
     this.ProviderID.Type        = typeof(int);
     this.ProviderID.ValueInfo   = "0";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderTypeLabel.Expression = "Iif([ProviderTypeCode] = \'BCBA\', \'BCBA\', \'Behavior Technician\')";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // ParentHoursReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.BCBAName,
         this.BCBASignature,
         this.ProviderSignature,
         this.calculatedField1,
         this.FinalizationID,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(74, 64, 100, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.StartDate,
         this.EndDate,
         this.ProviderID
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "16.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
    /// <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();
    }
    /// <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_BaoCaoKhenThuongKyLuatTrongThang.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.xrl_macb          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xlHoTen           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xlrNgaySinh       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xlrGioiTinh       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xlrPhongBan       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtchucvu         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtsoqd           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtngayqd         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtlydokhenthuong = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrthinhthuc       = 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_ngayBC        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_tencongty     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_thanhpho      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC       = 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.xrTableCell7      = 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.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.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();
        this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrl_bophan        = 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;
        this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F, 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(1085F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_STT,
            this.xrl_macb,
            this.xlHoTen,
            this.xlrNgaySinh,
            this.xlrGioiTinh,
            this.xlrPhongBan,
            this.xrtchucvu,
            this.xrtsoqd,
            this.xrtngayqd,
            this.xrtlydokhenthuong,
            this.xrthinhthuc
        });
        this.xrTableRow2.Name = "xrTableRow2";
        this.xrTableRow2.StylePriority.UseBorders = false;
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_STT
        //
        this.xrt_STT.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_STT.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xrt_STT.Name = "xrt_STT";
        this.xrt_STT.StylePriority.UseBorders = false;
        this.xrt_STT.StylePriority.UseFont    = false;
        this.xrt_STT.Weight = 0.37500005582198637D;
        //
        // xrl_macb
        //
        this.xrl_macb.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrl_macb.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_macb.Name    = "xrl_macb";
        this.xrl_macb.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
        this.xrl_macb.StylePriority.UseBorders       = false;
        this.xrl_macb.StylePriority.UseFont          = false;
        this.xrl_macb.StylePriority.UsePadding       = false;
        this.xrl_macb.StylePriority.UseTextAlignment = false;
        this.xrl_macb.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrl_macb.Weight        = 0.697916764178888D;
        //
        // xlHoTen
        //
        this.xlHoTen.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xlHoTen.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xlHoTen.Name    = "xlHoTen";
        this.xlHoTen.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
        this.xlHoTen.StylePriority.UseBorders       = false;
        this.xlHoTen.StylePriority.UseFont          = false;
        this.xlHoTen.StylePriority.UsePadding       = false;
        this.xlHoTen.StylePriority.UseTextAlignment = false;
        this.xlHoTen.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xlHoTen.Weight        = 1.3333336527611195D;
        //
        // xlrNgaySinh
        //
        this.xlrNgaySinh.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xlrNgaySinh.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xlrNgaySinh.Name = "xlrNgaySinh";
        this.xlrNgaySinh.StylePriority.UseBorders = false;
        this.xlrNgaySinh.StylePriority.UseFont    = false;
        this.xlrNgaySinh.Weight = 0.80208357990317081D;
        //
        // xlrGioiTinh
        //
        this.xlrGioiTinh.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xlrGioiTinh.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xlrGioiTinh.Name = "xlrGioiTinh";
        this.xlrGioiTinh.StylePriority.UseBorders = false;
        this.xlrGioiTinh.StylePriority.UseFont    = false;
        this.xlrGioiTinh.Weight = 0.6508332561232717D;
        //
        // xlrPhongBan
        //
        this.xlrPhongBan.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xlrPhongBan.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xlrPhongBan.Name    = "xlrPhongBan";
        this.xlrPhongBan.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xlrPhongBan.StylePriority.UseBorders       = false;
        this.xlrPhongBan.StylePriority.UseFont          = false;
        this.xlrPhongBan.StylePriority.UsePadding       = false;
        this.xlrPhongBan.StylePriority.UseTextAlignment = false;
        this.xlrPhongBan.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xlrPhongBan.Weight        = 1.721459393939105D;
        //
        // xrtchucvu
        //
        this.xrtchucvu.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtchucvu.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrtchucvu.Name    = "xrtchucvu";
        this.xrtchucvu.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtchucvu.StylePriority.UseBorders       = false;
        this.xrtchucvu.StylePriority.UseFont          = false;
        this.xrtchucvu.StylePriority.UsePadding       = false;
        this.xrtchucvu.StylePriority.UseTextAlignment = false;
        this.xrtchucvu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrtchucvu.Weight        = 1.3138551483488739D;
        //
        // xrtsoqd
        //
        this.xrtsoqd.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtsoqd.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xrtsoqd.Name = "xrtsoqd";
        this.xrtsoqd.StylePriority.UseBorders = false;
        this.xrtsoqd.StylePriority.UseFont    = false;
        this.xrtsoqd.Weight = 0.83400863678338988D;
        //
        // xrtngayqd
        //
        this.xrtngayqd.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtngayqd.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xrtngayqd.Name = "xrtngayqd";
        this.xrtngayqd.StylePriority.UseBorders = false;
        this.xrtngayqd.StylePriority.UseFont    = false;
        this.xrtngayqd.Weight = 0.83367263429437755D;
        //
        // xrtlydokhenthuong
        //
        this.xrtlydokhenthuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtlydokhenthuong.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrtlydokhenthuong.Name    = "xrtlydokhenthuong";
        this.xrtlydokhenthuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtlydokhenthuong.StylePriority.UseBorders       = false;
        this.xrtlydokhenthuong.StylePriority.UseFont          = false;
        this.xrtlydokhenthuong.StylePriority.UsePadding       = false;
        this.xrtlydokhenthuong.StylePriority.UseTextAlignment = false;
        this.xrtlydokhenthuong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrtlydokhenthuong.Weight        = 1.250169401283479D;
        //
        // xrthinhthuc
        //
        this.xrthinhthuc.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrthinhthuc.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrthinhthuc.Name    = "xrthinhthuc";
        this.xrthinhthuc.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrthinhthuc.StylePriority.UseBorders       = false;
        this.xrthinhthuc.StylePriority.UseFont          = false;
        this.xrthinhthuc.StylePriority.UsePadding       = false;
        this.xrthinhthuc.StylePriority.UseTextAlignment = false;
        this.xrthinhthuc.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrthinhthuc.Weight        = 1.0376693643114345D;
        //
        // 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       = 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.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ngayBC,
            this.xrl_tencongty,
            this.xrl_thanhpho,
            this.xrl_TitleBC
        });
        this.ReportHeader.HeightF = 110.5F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_ngayBC
        //
        this.xrl_ngayBC.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_ngayBC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 87.5F);
        this.xrl_ngayBC.Name                           = "xrl_ngayBC";
        this.xrl_ngayBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ngayBC.SizeF                          = new System.Drawing.SizeF(1085F, 23F);
        this.xrl_ngayBC.StylePriority.UseFont          = false;
        this.xrl_ngayBC.StylePriority.UseTextAlignment = false;
        this.xrl_ngayBC.Text                           = "Từ ngày ... đến ngày ...";
        this.xrl_ngayBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_tencongty
        //
        this.xrl_tencongty.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_tencongty.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 22.99999F);
        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(344.7499F, 23F);
        this.xrl_tencongty.StylePriority.UseFont          = false;
        this.xrl_tencongty.StylePriority.UseTextAlignment = false;
        this.xrl_tencongty.Text                           = "CÔNG TY CỔ PHẦN THẾ GIỚI GIẢI TRÍ";
        this.xrl_tencongty.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_thanhpho
        //
        this.xrl_thanhpho.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_thanhpho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrl_thanhpho.Name                           = "xrl_thanhpho";
        this.xrl_thanhpho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_thanhpho.SizeF                          = new System.Drawing.SizeF(344.7499F, 23F);
        this.xrl_thanhpho.StylePriority.UseFont          = false;
        this.xrl_thanhpho.StylePriority.UseTextAlignment = false;
        this.xrl_thanhpho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_thanhpho.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(1085F, 23.00001F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO KHEN THƯỞNG KÝ LUẬT";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 41.45834F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        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(1085F, 41.45834F);
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell7,
            this.xrTableCell4,
            this.xrTableCell3,
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11
        });
        this.xrTableRow1.Name = "xrTableRow1";
        this.xrTableRow1.StylePriority.UseBorders = false;
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "STT";
        this.xrTableCell1.Weight = 0.37500001173753095D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Mã cán bộ";
        this.xrTableCell2.Weight = 0.69791659821576546D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Họ tên";
        this.xrTableCell7.Weight = 1.3333336482689893D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Ngày sinh";
        this.xrTableCell4.Weight = 0.80208341384065063D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Giới tính";
        this.xrTableCell3.Weight = 0.65083310545666861D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Phòng ban";
        this.xrTableCell5.Weight = 1.7214591706882605D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Chức vụ";
        this.xrTableCell6.Weight = 1.3138543287197235D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Số QĐ";
        this.xrTableCell8.Weight = 0.83400919869706591D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name   = "xrTableCell9";
        this.xrTableCell9.Text   = "Ngày QĐ";
        this.xrTableCell9.Weight = 0.83367260727366754D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name   = "xrTableCell10";
        this.xrTableCell10.Text   = "Lý do";
        this.xrTableCell10.Weight = 1.2501692182436912D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "Hình thức";
        this.xrTableCell11.Weight = 1.0376679875636086D;
        //
        // 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 = 161F;
        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(0F, 135.4167F);
        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(305.5832F, 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(361.9583F, 135.4167F);
        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(368.8486F, 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(771.9583F, 135.4167F);
        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(313.0417F, 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(771.9583F, 10.41667F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(313.0417F, 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(361.9583F, 35.41667F);
        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(374.8486F, 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(771.9583F, 35.41667F);
        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(313.0417F, 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(0F, 35.41667F);
        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(305.5832F, 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;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_bophan
        });
        this.GroupHeader1.HeightF = 23F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // GroupFooter1
        //
        this.GroupFooter1.Name = "GroupFooter1";
        //
        // 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(958.9583F, 38.54167F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0417F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // xrl_bophan
        //
        this.xrl_bophan.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrl_bophan.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrl_bophan.Name                     = "xrl_bophan";
        this.xrl_bophan.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrl_bophan.SizeF                    = new System.Drawing.SizeF(1085F, 23F);
        this.xrl_bophan.StylePriority.UseBorders = false;
        //
        // rp_BaoCaoKhenThuongKyLuatTrongThang
        //
        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(6, 9, 50, 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)).EndInit();
    }
Ejemplo n.º 20
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "Att_InOutReport.resx";

        this.Detail             = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell27      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell30      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell29      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell28      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell20      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell19      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10      = 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.TopMargin          = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin       = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1       = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable1           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell21      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell22      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell24      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell25      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell23      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell26      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3       = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageFooter         = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo2        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo1        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.attendanceDataSet1 = new AttendanceDataSet();
        this.sp_Att_ScheduleDescription_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_ScheduleDescription_ReportTableAdapter();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
        this.xrCompAddress = new DevExpress.XtraReports.UI.XRLabel();
        this.xrTitle       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrCompName    = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        this.sp_Att_AttendanceRegister_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_AttendanceRegister_ReportTableAdapter();
        this.GroupFooter1  = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrTable5      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow5   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 15.41665F;
        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", 9.75F);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(846.5417F, 15.41665F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell27,
            this.xrTableCell30,
            this.xrTableCell29,
            this.xrTableCell28,
            this.xrTableCell20,
            this.xrTableCell19,
            this.xrTableCell5,
            this.xrTableCell8,
            this.xrTableCell10,
            this.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1;
        //
        // xrTableCell27
        //
        this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Code")
        });
        this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell27.Name = "xrTableCell27";
        this.xrTableCell27.StylePriority.UseFont = false;
        this.xrTableCell27.Text   = "xrTableCell27";
        this.xrTableCell27.Weight = 0.4999997711181639;
        //
        // xrTableCell30
        //
        this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Att_Date")
        });
        this.xrTableCell30.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell30.Name = "xrTableCell30";
        this.xrTableCell30.StylePriority.UseFont = false;
        this.xrTableCell30.Text         = "xrTableCell30";
        this.xrTableCell30.Weight       = 0.96874988555908215;
        this.xrTableCell30.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell30_BeforePrint);
        //
        // xrTableCell29
        //
        this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Shift_Name")
        });
        this.xrTableCell29.Font   = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell29.Name   = "xrTableCell29";
        this.xrTableCell29.Text   = "xrTableCell29";
        this.xrTableCell29.Weight = 1.0208333206176756;
        //
        // xrTableCell28
        //
        this.xrTableCell28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OnDuty_Time")
        });
        this.xrTableCell28.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell28.Name          = "xrTableCell28";
        this.xrTableCell28.Text          = "xrTableCell28";
        this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell28.Weight        = 0.63541610717773434;
        //
        // xrTableCell20
        //
        this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OffDuty_Time")
        });
        this.xrTableCell20.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell20.Name          = "xrTableCell20";
        this.xrTableCell20.Text          = "xrTableCell20";
        this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell20.Weight        = 0.67456237792968743;
        //
        // xrTableCell19
        //
        this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.In_Time")
        });
        this.xrTableCell19.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell19.Name          = "xrTableCell19";
        this.xrTableCell19.Text          = "xrTableCell19";
        this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell19.Weight        = 0.69382476806640625;
        //
        // xrTableCell5
        //
        this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Out_Time")
        });
        this.xrTableCell5.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell5.Name          = "xrTableCell5";
        this.xrTableCell5.Text          = "xrTableCell5";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell5.Weight        = 0.62500030517578153;
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.LateMin")
        });
        this.xrTableCell8.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell8.Name          = "xrTableCell8";
        this.xrTableCell8.Text          = "xrTableCell8";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell8.Weight        = 0.52398162841796925;
        this.xrTableCell8.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell8_BeforePrint);
        //
        // xrTableCell10
        //
        this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.EarlyMin")
        });
        this.xrTableCell10.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell10.Name          = "xrTableCell10";
        this.xrTableCell10.Text          = "xrTableCell10";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell10.Weight        = 0.57291687011718739;
        this.xrTableCell10.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell10_BeforePrint);
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.EffectiveWork_Min")
        });
        this.xrTableCell9.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell9.Name          = "xrTableCell9";
        this.xrTableCell9.Text          = "xrTableCell9";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell9.Weight        = 0.5723724365234375;
        this.xrTableCell9.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell9_BeforePrint);
        //
        // xrTableCell11
        //
        this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OverTime_Min")
        });
        this.xrTableCell11.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "xrTableCell11";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell11.Weight        = 0.88281188964843693;
        this.xrTableCell11.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell11_BeforePrint);
        //
        // xrTableCell12
        //
        this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Field1")
        });
        this.xrTableCell12.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.Text          = "xrTableCell12";
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell12.Weight        = 0.794948733033147;
        //
        // 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       = 0F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 18.54165F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // 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("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(36.45834F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(846.5417F, 18.54165F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell21,
            this.xrTableCell7,
            this.xrTableCell6,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell1,
            this.xrTableCell22,
            this.xrTableCell24,
            this.xrTableCell25,
            this.xrTableCell23,
            this.xrTableCell26,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell21
        //
        this.xrTableCell21.Name   = "xrTableCell21";
        this.xrTableCell21.Text   = "ID";
        this.xrTableCell21.Weight = 0.43482135264705046;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Date";
        this.xrTableCell7.Weight = 0.84246639449167837;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Shift";
        this.xrTableCell6.Weight = 0.88776053973238311;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "On Duty ";
        this.xrTableCell2.Weight = 0.55258535928846564;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Off Duty ";
        this.xrTableCell4.Weight = 0.58662782725143692;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "In Time";
        this.xrTableCell1.Weight = 0.60338002583602923;
        //
        // xrTableCell22
        //
        this.xrTableCell22.Name   = "xrTableCell22";
        this.xrTableCell22.Text   = "Out Time";
        this.xrTableCell22.Weight = 0.54352680981884849;
        //
        // xrTableCell24
        //
        this.xrTableCell24.Name   = "xrTableCell24";
        this.xrTableCell24.Text   = "Late";
        this.xrTableCell24.Weight = 0.45567689520649723;
        //
        // xrTableCell25
        //
        this.xrTableCell25.Name   = "xrTableCell25";
        this.xrTableCell25.Text   = "Early";
        this.xrTableCell25.Weight = 0.49823307924366106;
        //
        // xrTableCell23
        //
        this.xrTableCell23.Name   = "xrTableCell23";
        this.xrTableCell23.Text   = "Work";
        this.xrTableCell23.Weight = 0.49775962447414274;
        //
        // xrTableCell26
        //
        this.xrTableCell26.Name   = "xrTableCell26";
        this.xrTableCell26.Text   = "Overtime";
        this.xrTableCell26.Weight = 0.76773174494671226;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Status";
        this.xrTableCell3.Weight = 0.69132030305227632;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 23.95833F;
        this.PageFooter.Name    = "PageFooter";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Format        = "Page{0}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(587.7919F, 0F);
        this.xrPageInfo2.Name          = "xrPageInfo2";
        this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(295.2082F, 23F);
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(344.7917F, 23F);
        //
        // attendanceDataSet1
        //
        this.attendanceDataSet1.DataSetName             = "AttendanceDataSet";
        this.attendanceDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // sp_Att_ScheduleDescription_ReportTableAdapter1
        //
        this.sp_Att_ScheduleDescription_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.ReportHeader.HeightF = 77F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrPanel1
        //
        this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrCompAddress,
            this.xrTitle,
            this.xrPictureBox1,
            this.xrCompName
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(36.45833F, 5F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(846.5417F, 72F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrCompAddress
        //
        this.xrCompAddress.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompAddress.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompAddress.LocationFloat            = new DevExpress.Utils.PointFloat(4.041668F, 27F);
        this.xrCompAddress.Name                     = "xrCompAddress";
        this.xrCompAddress.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompAddress.SizeF                    = new System.Drawing.SizeF(353.125F, 22.04167F);
        this.xrCompAddress.StylePriority.UseBorders = false;
        this.xrCompAddress.StylePriority.UseFont    = false;
        this.xrCompAddress.Text                     = "xrCompAddress";
        //
        // xrTitle
        //
        this.xrTitle.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTitle.Font                           = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(208.7263F, 52F);
        this.xrTitle.Name                           = "xrTitle";
        this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTitle.SizeF                          = new System.Drawing.SizeF(450.1771F, 16F);
        this.xrTitle.StylePriority.UseBorders       = false;
        this.xrTitle.StylePriority.UseFont          = false;
        this.xrTitle.StylePriority.UseTextAlignment = false;
        this.xrTitle.Text                           = "xrTitle";
        this.xrTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(743.5417F, 2F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(100F, 47.04167F);
        this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrCompName
        //
        this.xrCompName.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompName.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompName.LocationFloat            = new DevExpress.Utils.PointFloat(4.041668F, 2F);
        this.xrCompName.Name                     = "xrCompName";
        this.xrCompName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompName.SizeF                    = new System.Drawing.SizeF(353.125F, 23F);
        this.xrCompName.StylePriority.UseBorders = false;
        this.xrCompName.StylePriority.UseFont    = false;
        this.xrCompName.Text                     = "xrCompName";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 15.625F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // 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("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(846.5418F, 14.99999F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18,
            this.xrTableCell15
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "ID";
        this.xrTableCell13.Weight = 0.3645834350585937;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = ":";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell14.Weight        = 0.13541648864746092;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Code")
        });
        this.xrTableCell16.Name   = "xrTableCell16";
        this.xrTableCell16.Text   = "[Emp_Code]";
        this.xrTableCell16.Weight = 0.96875007629394538;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = "Name";
        this.xrTableCell17.Weight = 0.49263153076171884;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell18.Name = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text          = ":";
        this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell18.Weight        = 0.15929840087890612;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Name")
        });
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseBorders = false;
        this.xrTableCell15.Text   = "xrTableCell15";
        this.xrTableCell15.Weight = 6.3447381591796876;
        //
        // sp_Att_AttendanceRegister_ReportTableAdapter1
        //
        this.sp_Att_AttendanceRegister_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable5
        });
        this.GroupFooter1.HeightF = 20F;
        this.GroupFooter1.Name    = "GroupFooter1";
        //
        // xrTable5
        //
        this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable5.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(36.45831F, 0F);
        this.xrTable5.Name          = "xrTable5";
        this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow5
        });
        this.xrTable5.SizeF = new System.Drawing.SizeF(846.5417F, 20F);
        this.xrTable5.StylePriority.UseBorders = false;
        this.xrTable5.StylePriority.UseFont    = false;
        //
        // xrTableRow5
        //
        this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell36,
            this.xrTableCell32,
            this.xrTableCell33,
            this.xrTableCell34,
            this.xrTableCell35,
            this.xrTableCell37
        });
        this.xrTableRow5.Name   = "xrTableRow5";
        this.xrTableRow5.Weight = 1;
        //
        // xrTableCell36
        //
        this.xrTableCell36.Name = "xrTableCell36";
        this.xrTableCell36.StylePriority.UseTextAlignment = false;
        this.xrTableCell36.Text          = "Total ";
        this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell36.Weight        = 2.0018547344583935;
        //
        // xrTableCell32
        //
        this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell32.Name = "xrTableCell32";
        this.xrTableCell32.StylePriority.UseTextAlignment = false;
        this.xrTableCell32.Text          = "xrTableCell32";
        this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell32.Weight        = 0.20493458428833339;
        this.xrTableCell32.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell32_BeforePrint);
        //
        // xrTableCell33
        //
        this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell33.Name = "xrTableCell33";
        this.xrTableCell33.StylePriority.UseTextAlignment = false;
        this.xrTableCell33.Text          = "xrTableCell33";
        this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell33.Weight        = 0.22407351670249165;
        this.xrTableCell33.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell33_BeforePrint);
        //
        // xrTableCell34
        //
        this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell34.Name = "xrTableCell34";
        this.xrTableCell34.StylePriority.UseTextAlignment = false;
        this.xrTableCell34.Text          = "xrTableCell34";
        this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell34.Weight        = 0.22386105546104113;
        this.xrTableCell34.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell34_BeforePrint);
        //
        // xrTableCell35
        //
        this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell35.Name = "xrTableCell35";
        this.xrTableCell35.StylePriority.UseTextAlignment = false;
        this.xrTableCell35.Text          = "xrTableCell35";
        this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell35.Weight        = 0.345276499085476;
        this.xrTableCell35.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell35_BeforePrint);
        //
        // xrTableCell37
        //
        this.xrTableCell37.Name   = "xrTableCell37";
        this.xrTableCell37.Weight = 0.3109128341579464;
        //
        // Att_InOutReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.PageFooter,
            this.ReportHeader,
            this.GroupHeader2,
            this.GroupFooter1
        });
        this.DataAdapter = this.sp_Att_AttendanceRegister_ReportTableAdapter1;
        this.DataMember  = "sp_Att_AttendanceRegister_Report";
        this.DataSource  = this.attendanceDataSet1;
        this.Font        = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins     = new System.Drawing.Printing.Margins(7, 0, 0, 0);
        this.PageWidth   = 900;
        this.PaperKind   = System.Drawing.Printing.PaperKind.Custom;
        this.Version     = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Ejemplo n.º 21
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();
        }
Ejemplo 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 = "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();
 }
Ejemplo 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 = "EmployeeClaimreport.resx";

        System.Resources.ResourceManager    resources  = global::Resources.EmployeeClaimreport.ResourceManager;
        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.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.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
        this.xrLabel1               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3               = 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.xrTableCell2           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrPictureBox1          = new DevExpress.XtraReports.UI.XRPictureBox();
        this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.employeeClaimApproved1 = new EmployeeClaimApproved();
        this.formattingRule1        = new DevExpress.XtraReports.UI.FormattingRule();
        this.GroupFooter1           = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrLabel7               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8               = new DevExpress.XtraReports.UI.XRLabel();
        this.PageFooter             = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1            = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo2            = new DevExpress.XtraReports.UI.XRPageInfo();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.employeeClaimApproved1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF = 16.04166F;
        this.Detail.Name    = "Detail";
        this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
            new DevExpress.XtraReports.UI.GroupField("Sum_Claim", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)
        });
        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("Verdana", 8.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.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(639.9999F, 14.99999F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1;
        //
        // xrTableCell5
        //
        this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Emp_Id")
        });
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "xrTableCell5";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell5.Weight        = 1;
        //
        // xrTableCell6
        //
        this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Emp_Name")
        });
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "xrTableCell6";
        this.xrTableCell6.Weight = 1.9062503051757813;
        //
        // xrTableCell7
        //
        this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Claim_Name")
        });
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "xrTableCell7";
        this.xrTableCell7.Weight = 1.9583331298828124;
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Claim_Amount")
        });
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "xrTableCell8";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell8.Weight        = 1.5354159545898436;
        //
        // TopMargin
        //
        this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.xrLabel5,
            this.xrLabel2,
            this.xrLabel4,
            this.xrLabel3,
            this.xrTable1,
            this.xrPictureBox1
        });
        this.TopMargin.HeightF       = 94.58336F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 13.33332F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(446.875F, 13.625F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "xrLabel1";
        //
        // xrLabel5
        //
        this.xrLabel5.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(4.768372E-05F, 26.95832F);
        this.xrLabel5.Name                  = "xrLabel5";
        this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                 = new System.Drawing.SizeF(446.8749F, 14.66667F);
        this.xrLabel5.StylePriority.UseFont = false;
        this.xrLabel5.Text                  = "xrLabel5";
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(232.2917F, 41.62499F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(214.5833F, 12.58334F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "xrLabel2";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Year")
        });
        this.xrLabel4.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(99.99998F, 41.62499F);
        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.58333F);
        this.xrLabel4.StylePriority.UseFont = false;
        this.xrLabel4.Text                  = "xrLabel4";
        //
        // xrLabel3
        //
        this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Month")
        });
        this.xrLabel3.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 41.62499F);
        this.xrLabel3.Name                  = "xrLabel3";
        this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                 = new System.Drawing.SizeF(100F, 12.58332F);
        this.xrLabel3.StylePriority.UseFont = false;
        this.xrLabel3.Text                  = "xrLabel3";
        //
        // xrTable1
        //
        this.xrTable1.Font          = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(4.768372E-05F, 74.74995F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(639.9999F, 15.20837F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4
        });
        this.xrTableRow1.Name = "xrTableRow1";
        this.xrTableRow1.StylePriority.UseBorders = false;
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "Employee Id";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell1.Weight        = 1;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Employee Name";
        this.xrTableCell2.Weight = 1.90625;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont = false;
        this.xrTableCell3.Text   = "Claim Name";
        this.xrTableCell3.Weight = 1.9583330674988213;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Claim Amount";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell4.Weight        = 1.535415976845782;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(521.875F, 10F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(102.4999F, 60.37499F);
        this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 14.79168F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // employeeClaimApproved1
        //
        this.employeeClaimApproved1.DataSetName             = "EmployeeClaimApproved";
        this.employeeClaimApproved1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // formattingRule1
        //
        this.formattingRule1.DataMember = "EmployeeClaim";
        this.formattingRule1.DataSource = this.employeeClaimApproved1;
        this.formattingRule1.Name       = "formattingRule1";
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6
        });
        this.GroupFooter1.HeightF      = 15.16666F;
        this.GroupFooter1.KeepTogether = true;
        this.GroupFooter1.Name         = "GroupFooter1";
        //
        // xrLabel7
        //
        this.xrLabel7.Font                  = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(145.4168F, 0F);
        this.xrLabel7.Name                  = "xrLabel7";
        this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                 = new System.Drawing.SizeF(147.9167F, 13F);
        this.xrLabel7.StylePriority.UseFont = false;
        this.xrLabel7.Text                  = "Total Claim Amount :";
        this.xrLabel7.Visible               = false;
        //
        // xrLabel6
        //
        this.xrLabel6.Font                  = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(293.3335F, 0F);
        this.xrLabel6.Name                  = "xrLabel6";
        this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                 = new System.Drawing.SizeF(153.5415F, 13F);
        this.xrLabel6.StylePriority.UseFont = false;
        this.xrLabel6.Text                  = "xrLabel6";
        this.xrLabel6.Visible               = false;
        this.xrLabel6.BeforePrint          += new System.Drawing.Printing.PrintEventHandler(this.xrLabel6_BeforePrint);
        //
        // xrLabel8
        //
        this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeClaim.Claim_Amount")
        });
        this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(486.4583F, 0F);
        this.xrLabel8.Name          = "xrLabel8";
        this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrLabel8.SizeF         = new System.Drawing.SizeF(153.5415F, 13F);
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        xrSummary1.Running          = DevExpress.XtraReports.UI.SummaryRunning.Report;
        this.xrLabel8.Summary       = xrSummary1;
        this.xrLabel8.Text          = "xrLabel8";
        this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 22.99998F;
        this.PageFooter.Name    = "PageFooter";
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(321.875F, 22.99998F);
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Format        = "Page{0}Of {1}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(321.875F, 0F);
        this.xrPageInfo2.Name          = "xrPageInfo2";
        this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
        this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(318.1248F, 22.99998F);
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // EmployeeClaimreport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupFooter1,
            this.PageFooter
        });
        this.DataMember = "EmployeeClaim";
        this.DataSource = this.employeeClaimApproved1;
        this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1
        });
        this.Margins = new System.Drawing.Printing.Margins(100, 100, 95, 15);
        this.Version = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.employeeClaimApproved1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Ejemplo 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 = "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();
    }
Ejemplo 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 = "rptBanHang.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.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
         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.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = 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.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.header = new DevExpress.XtraReports.UI.XRSubreport();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.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.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
         this.dsBaoCaoBanHang1 = new dsBaoCaoBanHang();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sdfsdfsdf = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrDiscount01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.thanhtienafterdis01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrBarCode1 = new DevExpress.XtraReports.UI.XRBarCode();
         this.pTongTien = new DevExpress.XtraReports.UI.CalculatedField();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.sale_InvoiceToPrintTableAdapter1 = new dsBaoCaoBanHangTableAdapters.sale_InvoiceToPrintTableAdapter();
         this.Thanhtien = new DevExpress.XtraReports.UI.CalculatedField();
         this.percentDiscount1 = new DevExpress.XtraReports.UI.CalculatedField();
         this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox5 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.Detail.HeightF = 30F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseFont = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrTable2
         //
         this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable2.BorderWidth = 1F;
         this.xrTable2.Font = new System.Drawing.Font("MS Reference Sans Serif", 9.75F, 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(0, 0, 5, 5, 100F);
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.xrTable2.SizeF = new System.Drawing.SizeF(748.96F, 30F);
         this.xrTable2.StylePriority.UseBorderDashStyle = false;
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseBorderWidth = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UsePadding = 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.colHangHoa,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell31});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UsePadding = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "STT";
         this.xrTableCell7.Weight = 0.36458328247070315D;
         this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
         //
         // colHangHoa
         //
         this.colHangHoa.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.productname")});
         this.colHangHoa.Name = "colHangHoa";
         this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.colHangHoa.StylePriority.UseBorders = false;
         this.colHangHoa.StylePriority.UsePadding = false;
         this.colHangHoa.StylePriority.UseTextAlignment = false;
         this.colHangHoa.Text = "colHangHoa";
         this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.colHangHoa.Weight = 4.052847185033353D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentPrice", "{0:n0}")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UsePadding = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:0.00 VND}";
         this.xrTableCell11.Summary = xrSummary1;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell11.Weight = 0.99829627768477114D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Quantity", "{0:n0}")});
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UsePadding = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Text = "xrTableCell30";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell30.Weight = 0.782191345631486D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Total", "{0:n0}")});
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UsePadding = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Text = "xrTableCell31";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell31.Weight = 0.97617918250893376D;
         //
         // 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 = 14F;
         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.xrTable4});
         this.PageHeader.HeightF = 25F;
         this.PageHeader.Name = "PageHeader";
         this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader;
         //
         // xrTable4
         //
         this.xrTable4.BackColor = System.Drawing.Color.Snow;
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.BorderWidth = 1F;
         this.xrTable4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable4.SizeF = new System.Drawing.SizeF(748.96F, 25F);
         this.xrTable4.StylePriority.UseBackColor = false;
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseBorderWidth = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell16,
         this.xrTableCell19});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "STT";
         this.xrTableCell3.Weight = 0.36560020791428305D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "Tên Hàng Hoá";
         this.xrTableCell13.Weight = 4.0641524463652621D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "Đơn giá";
         this.xrTableCell14.Weight = 1.0010809425008556D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "Số lượng\r\n";
         this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell16.Weight = 0.78437319053638133D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.Text = "Thành tiền";
         this.xrTableCell19.Weight = 0.97890222513473879D;
         //
         // header
         //
         this.header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.header.Name = "header";
         this.header.SizeF = new System.Drawing.SizeF(750F, 29.625F);
         //
         // xrLabel10
         //
         this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.InvoiceNo", "Mã đơn : {0}")});
         this.xrLabel10.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Italic);
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 75.54163F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 26.41667F);
         this.xrLabel10.StylePriority.UseFont = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "xrLabel10";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold);
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 32.74995F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(748.9583F, 42.79168F);
         this.xrLabel13.StylePriority.UseFont = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 173.75F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(69.79163F, 16F);
         this.xrLabel17.StylePriority.UseFont = false;
         this.xrLabel17.Text = "Ghi chú: ";
         //
         // GroupHeader2
         //
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("TenKhachHang", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 0F;
         this.GroupHeader2.Name = "GroupHeader2";
         //
         // xrTable7
         //
         this.xrTable7.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(7.249959F, 101.9583F);
         this.xrTable7.Name = "xrTable7";
         this.xrTable7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 4, 4, 100F);
         this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
         this.xrTable7.SizeF = new System.Drawing.SizeF(741.7084F, 54.75F);
         this.xrTable7.StylePriority.UseFont = false;
         this.xrTable7.StylePriority.UsePadding = false;
         this.xrTable7.StylePriority.UseTextAlignment = false;
         this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell20,
         this.xrTableCell18,
         this.xrTableCell25,
         this.xrTableCell24});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 1D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseFont = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "Khách hàng: ";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell6.Weight = 1.0520836686849815D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Customer")});
         this.xrTableCell23.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseFont = false;
         this.xrTableCell23.Text = "xrTableCell23";
         this.xrTableCell23.Weight = 2.5880258821406894D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseFont = false;
         this.xrTableCell20.Text = "Ngày :";
         this.xrTableCell20.Weight = 0.5894757719221223D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentDate", "{0:dd/MM/yyyy}")});
         this.xrTableCell18.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseFont = false;
         this.xrTableCell18.Weight = 1.0417734816221154D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseFont = false;
         this.xrTableCell25.StylePriority.UseTextAlignment = false;
         this.xrTableCell25.Text = "Điện thoại:";
         this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell25.Weight = 0.90503245148400147D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Phone")});
         this.xrTableCell24.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseFont = false;
         this.xrTableCell24.Text = "xrTableCell24";
         this.xrTableCell24.Weight = 1.2406931607105067D;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseFont = false;
         this.xrTableCell26.Text = "Địa chỉ : ";
         this.xrTableCell26.Weight = 0.73958367866282337D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CustomerAddress")});
         this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseFont = false;
         this.xrTableCell27.Weight = 6.6775007379015943D;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Snow;
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable1.BorderWidth = 1F;
         this.xrTable1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 183.4722F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.xrTable1.SizeF = new System.Drawing.SizeF(748.9583F, 25F);
         this.xrTable1.StylePriority.UseBackColor = false;
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseBorderWidth = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell5});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "STT";
         this.xrTableCell1.Weight = 0.36560020791428305D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.Text = "Tên Hàng Hoá";
         this.xrTableCell2.Weight = 4.0641554790407382D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.Text = "Đơn giá";
         this.xrTableCell4.Weight = 1.0011300565736081D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell21.Multiline = true;
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "Số lượng\r\n";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.78432104378815293D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.Text = "Thành tiền";
         this.xrTableCell5.Weight = 0.97895618222477876D;
         //
         // formattingRule1
         //
         this.formattingRule1.DataMember = null;
         //
         //
         //
         this.formattingRule1.Formatting.BackColor = System.Drawing.Color.Gray;
         this.formattingRule1.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(50, 50, 50, 50, 100F);
         this.formattingRule1.Name = "formattingRule1";
         //
         // dsBaoCaoBanHang1
         //
         this.dsBaoCaoBanHang1.DataSetName = "dsBaoCaoBanHang";
         this.dsBaoCaoBanHang1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrTable3,
         this.xrTable6,
         this.xrLabel17});
         this.GroupFooter1.HeightF = 192.4583F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // xrLabel4
         //
         this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Notes")});
         this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(70.83334F, 173.75F);
         this.xrLabel4.Name = "xrLabel4";
         this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel4.SizeF = new System.Drawing.SizeF(329.0094F, 16F);
         this.xrLabel4.StylePriority.UseFont = false;
         //
         // xrTable3
         //
         this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable3.BorderWidth = 1F;
         this.xrTable3.Font = new System.Drawing.Font("Verdana", 9F, 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.xrTableRow5,
         this.xrTableRow7,
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable3.SizeF = new System.Drawing.SizeF(749F, 124.1666F);
         this.xrTable3.StylePriority.UseBorderDashStyle = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseBorderWidth = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.xrTableCell10,
         this.xrSum});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.Weight = 4.6116583633422845D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseFont = false;
         this.xrTableCell10.StylePriority.UsePadding = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "Tổng cộng";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell10.Weight = 1.4052649307250975D;
         //
         // xrSum
         //
         this.xrSum.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.FinalTotal", "{0:n0}")});
         this.xrSum.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrSum.Name = "xrSum";
         this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrSum.StylePriority.UseBorders = false;
         this.xrSum.StylePriority.UseFont = false;
         this.xrSum.StylePriority.UsePadding = false;
         this.xrSum.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:n0}";
         this.xrSum.Summary = xrSummary2;
         this.xrSum.Text = "xrSum";
         this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrSum.Weight = 1.4730767059326171D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell28,
         this.xrTableCell29});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseBorders = false;
         this.xrTableCell22.Weight = 4.6116583633422845D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseFont = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Text = "Chiết khấu 1";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell28.Weight = 1.4052649307250975D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount", "{0:n0}")});
         this.xrTableCell29.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseFont = false;
         this.xrTableCell29.StylePriority.UsePadding = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell29.Weight = 1.4730767059326171D;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.Weight = 4.6116583633422845D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseFont = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "Chiết khấu 2";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell33.Weight = 1.4052649307250975D;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.sdfsdfsdf,
         this.xrDiscount01});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Weight = 4.6116586875915528D;
         //
         // sdfsdfsdf
         //
         this.sdfsdfsdf.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.sdfsdfsdf.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.sdfsdfsdf.Multiline = true;
         this.sdfsdfsdf.Name = "sdfsdfsdf";
         this.sdfsdfsdf.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.sdfsdfsdf.StylePriority.UseBorders = false;
         this.sdfsdfsdf.StylePriority.UseFont = false;
         this.sdfsdfsdf.StylePriority.UsePadding = false;
         this.sdfsdfsdf.StylePriority.UseTextAlignment = false;
         this.sdfsdfsdf.Text = "Phí giao hàng\r\n";
         this.sdfsdfsdf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sdfsdfsdf.Weight = 1.4052652549743652D;
         //
         // xrDiscount01
         //
         this.xrDiscount01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrDiscount01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.ShipFees", "{0:n0}")});
         this.xrDiscount01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrDiscount01.Name = "xrDiscount01";
         this.xrDiscount01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrDiscount01.StylePriority.UseBorders = false;
         this.xrDiscount01.StylePriority.UseFont = false;
         this.xrDiscount01.StylePriority.UsePadding = false;
         this.xrDiscount01.StylePriority.UseTextAlignment = false;
         this.xrDiscount01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrDiscount01.Weight = 1.473076057434082D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell48,
         this.thanhtienafterdis01});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.Weight = 4.6116583824157713D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseFont = false;
         this.xrTableCell48.StylePriority.UsePadding = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Thành tiền";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell48.Weight = 1.4052649497985839D;
         //
         // thanhtienafterdis01
         //
         this.thanhtienafterdis01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.thanhtienafterdis01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Payment", "{0:n0}")});
         this.thanhtienafterdis01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.thanhtienafterdis01.Name = "thanhtienafterdis01";
         this.thanhtienafterdis01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.thanhtienafterdis01.StylePriority.UseBorders = false;
         this.thanhtienafterdis01.StylePriority.UseFont = false;
         this.thanhtienafterdis01.StylePriority.UsePadding = false;
         this.thanhtienafterdis01.StylePriority.UseTextAlignment = false;
         this.thanhtienafterdis01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.thanhtienafterdis01.Weight = 1.4730766677856444D;
         this.thanhtienafterdis01.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.thanhtienafterdis01_BeforePrint);
         //
         // xrTable6
         //
         this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 137.6666F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseFont = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 1.4999997049967446D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:0.00 VND}";
         this.xrTableCell9.Summary = xrSummary3;
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 5.0000002950032547D;
         //
         // lbchu
         //
         this.lbchu.Font = new System.Drawing.Font("Arial", 12F);
         this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(2.499835F, 0F);
         this.lbchu.Name = "lbchu";
         this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.lbchu.SizeF = new System.Drawing.SizeF(573.4233F, 20F);
         this.lbchu.StylePriority.UseFont = false;
         this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
         //
         // xrLine1
         //
         this.xrLine1.BorderWidth = 5F;
         this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
         this.xrLine1.LineWidth = 2;
         this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F);
         this.xrLine1.Name = "xrLine1";
         this.xrLine1.SizeF = new System.Drawing.SizeF(750.0001F, 11.54169F);
         this.xrLine1.StylePriority.UseBorderWidth = false;
         //
         // xrPictureBox1
         //
         this.xrPictureBox1.ImageUrl = "~\\img\\logohdk.png";
         this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 24.54169F);
         this.xrPictureBox1.Name = "xrPictureBox1";
         this.xrPictureBox1.SizeF = new System.Drawing.SizeF(171.875F, 61.49998F);
         this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel5
         //
         this.xrLabel5.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 115.2917F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(480.514F, 31.33333F);
         this.xrLabel5.StylePriority.UseFont = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Mã giảm giá bên có thời hạn từ 01-05-2015 đến ngày 30-05-2015.";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 86.04166F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(480.514F, 18.83333F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "TẶNG BẠN MÃ GIẢM GIÁ 10% CHO LẦN MUA HÀNG TIẾP THEO";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 22F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(419.7918F, 36.20841F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(240.6251F, 36.37494F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "CẢM ƠN BẠN !";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrBarCode1
         //
         this.xrBarCode1.AutoModule = true;
         this.xrBarCode1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDotDot;
         this.xrBarCode1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrBarCode1.Font = new System.Drawing.Font("Microsoft YaHei", 16F, System.Drawing.FontStyle.Bold);
         this.xrBarCode1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
         this.xrBarCode1.FormattingRules.Add(this.formattingRule1);
         this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(23.95846F, 24.54169F);
         this.xrBarCode1.Module = 8F;
         this.xrBarCode1.Name = "xrBarCode1";
         this.xrBarCode1.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 10, 20, 10, 100F);
         this.xrBarCode1.SizeF = new System.Drawing.SizeF(196.8751F, 215.7501F);
         this.xrBarCode1.StylePriority.UseBorderDashStyle = false;
         this.xrBarCode1.StylePriority.UseBorders = false;
         this.xrBarCode1.StylePriority.UseFont = false;
         this.xrBarCode1.StylePriority.UseForeColor = false;
         this.xrBarCode1.StylePriority.UsePadding = false;
         this.xrBarCode1.StylePriority.UseTextAlignment = false;
         qrCodeGenerator1.ErrorCorrectionLevel = DevExpress.XtraPrinting.BarCode.QRCodeErrorCorrectionLevel.M;
         qrCodeGenerator1.Version = DevExpress.XtraPrinting.BarCode.QRCodeVersion.Version1;
         this.xrBarCode1.Symbology = qrCodeGenerator1;
         this.xrBarCode1.Text = "GGHKBD";
         this.xrBarCode1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // pTongTien
         //
         this.pTongTien.Expression = "[TongTien]+[Thue]+[ShipFees]-[GiamGia]";
         this.pTongTien.Name = "pTongTien";
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.header,
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.xrTable1});
         this.ReportHeader.HeightF = 208.4722F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // sale_InvoiceToPrintTableAdapter1
         //
         this.sale_InvoiceToPrintTableAdapter1.ClearBeforeFill = true;
         //
         // Thanhtien
         //
         this.Thanhtien.Expression = "[sale_InvoiceToPrint.FinalTotal] - [sale_InvoiceToPrint.ShipFees]";
         this.Thanhtien.Name = "Thanhtien";
         //
         // percentDiscount1
         //
         this.percentDiscount1.Expression = "[sale_InvoiceToPrint.ShipFees]/[sale_InvoiceToPrint.FinalTotal]*100";
         this.percentDiscount1.Name = "percentDiscount1";
         //
         // PageFooter
         //
         this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrPictureBox4,
         this.xrLabel2,
         this.xrPictureBox5,
         this.xrLine1,
         this.xrBarCode1,
         this.xrPictureBox1,
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel5});
         this.PageFooter.HeightF = 245.8333F;
         this.PageFooter.Name = "PageFooter";
         //
         // xrLabel11
         //
         this.xrLabel11.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(279.4574F, 182.3125F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(181.7084F, 23F);
         this.xrLabel11.StylePriority.UseFont = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "www.hongdiepkhang.com";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox4
         //
         this.xrPictureBox4.ImageUrl = "~\\images\\icon-webapp.png";
         this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(254.4574F, 181.3125F);
         this.xrPictureBox4.Name = "xrPictureBox4";
         this.xrPictureBox4.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox4.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(495.0408F, 182.3125F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(211.515F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.StylePriority.UseTextAlignment = false;
         this.xrLabel2.Text = "facebook.com/hongdiepkhang";
         this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox5
         //
         this.xrPictureBox5.ImageUrl = "~\\images\\circle-social_facebook_outline_stroke-128.png";
         this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(468.0409F, 180.3125F);
         this.xrPictureBox5.Name = "xrPictureBox5";
         this.xrPictureBox5.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox5.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount2", "{0:n0}")});
         this.xrTableCell34.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseFont = false;
         this.xrTableCell34.StylePriority.UsePadding = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell34.Weight = 1.4730767059326171D;
         //
         // rptBanHang
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader,
         this.PageFooter});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.pTongTien,
         this.Thanhtien,
         this.percentDiscount1});
         this.DataAdapter = this.sale_InvoiceToPrintTableAdapter1;
         this.DataMember = "sale_InvoiceToPrint";
         this.DataSource = this.dsBaoCaoBanHang1;
         this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1});
         this.Margins = new System.Drawing.Printing.Margins(49, 51, 0, 14);
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
         DevExpress.DataAccess.Sql.StoredProcQuery storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
         System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptReporteAsistencia));
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
         this.groupHeaderBand2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
         this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
         this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
         this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
         this.pEvento = new DevExpress.XtraReports.Parameters.Parameter();
         this.pTipo = new DevExpress.XtraReports.Parameters.Parameter();
         this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel17,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel24,
         this.xrLabel25});
         this.Detail.HeightF = 23F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StyleName = "DataField";
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel15
         //
         this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Confirmado")});
         this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(616.8115F, 0F);
         this.xrLabel15.Name = "xrLabel15";
         this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel15.SizeF = new System.Drawing.SizeF(84.2738F, 15F);
         this.xrLabel15.StylePriority.UseTextAlignment = false;
         this.xrLabel15.Text = "xrLabel15";
         this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Estado")});
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(701.0853F, 0F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(87.28574F, 15F);
         this.xrLabel17.StylePriority.UseTextAlignment = false;
         this.xrLabel17.Text = "xrLabel17";
         this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel19
         //
         this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.FechaAsistencia", "{0:H:mm:ss}")});
         this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 0F);
         this.xrLabel19.Name = "xrLabel19";
         this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel19.SizeF = new System.Drawing.SizeF(114.4802F, 15F);
         this.xrLabel19.StylePriority.UseTextAlignment = false;
         this.xrLabel19.Text = "xrLabel19";
         this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel20
         //
         this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.IdAsociado")});
         this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLabel20.Name = "xrLabel20";
         this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel20.SizeF = new System.Drawing.SizeF(71.17064F, 15F);
         this.xrLabel20.Text = "xrLabel20";
         //
         // xrLabel22
         //
         this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Nombre")});
         this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(77.17071F, 0F);
         this.xrLabel22.Name = "xrLabel22";
         this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel22.SizeF = new System.Drawing.SizeF(241.8293F, 15F);
         this.xrLabel22.Text = "xrLabel22";
         //
         // xrLabel23
         //
         this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.NumeroCedula")});
         this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(319.0001F, 0F);
         this.xrLabel23.Name = "xrLabel23";
         this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel23.SizeF = new System.Drawing.SizeF(93.54164F, 15F);
         this.xrLabel23.StylePriority.UseTextAlignment = false;
         this.xrLabel23.Text = "xrLabel23";
         this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel24
         //
         this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Presente")});
         this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 0F);
         this.xrLabel24.Name = "xrLabel24";
         this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel24.SizeF = new System.Drawing.SizeF(61.62891F, 15F);
         this.xrLabel24.StylePriority.UseTextAlignment = false;
         this.xrLabel24.Text = "xrLabel24";
         this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel25
         //
         this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Telefono")});
         this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 0F);
         this.xrLabel25.Name = "xrLabel25";
         this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel25.SizeF = new System.Drawing.SizeF(89.78967F, 15F);
         this.xrLabel25.StylePriority.UseTextAlignment = false;
         this.xrLabel25.Text = "xrLabel25";
         this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 71.875F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 100F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // sqlDataSource1
         //
         this.sqlDataSource1.ConnectionName = "DBEventos";
         this.sqlDataSource1.Name = "sqlDataSource1";
         storedProcQuery1.Name = "sp_Reportes_Read";
         queryParameter1.Name = "@IdEvento";
         queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.pEvento]", typeof(int));
         queryParameter2.Name = "@Tipo";
         queryParameter2.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.pTipo]", typeof(string));
         storedProcQuery1.Parameters.Add(queryParameter1);
         storedProcQuery1.Parameters.Add(queryParameter2);
         storedProcQuery1.StoredProcName = "sp_Reportes_Read";
         this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1});
         this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
         //
         // groupHeaderBand2
         //
         this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel5,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel13});
         this.groupHeaderBand2.HeightF = 39.37499F;
         this.groupHeaderBand2.Name = "groupHeaderBand2";
         this.groupHeaderBand2.StyleName = "FieldCaption";
         //
         // xrLabel3
         //
         this.xrLabel3.BackColor = System.Drawing.Color.Blue;
         this.xrLabel3.ForeColor = System.Drawing.Color.White;
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(616.8114F, 5.999994F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(84.2738F, 20F);
         this.xrLabel3.StylePriority.UseBackColor = false;
         this.xrLabel3.StylePriority.UseForeColor = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "Confirmado";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel5
         //
         this.xrLabel5.BackColor = System.Drawing.Color.Blue;
         this.xrLabel5.ForeColor = System.Drawing.Color.White;
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(701.0852F, 5.999994F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(87.28574F, 20F);
         this.xrLabel5.StylePriority.UseBackColor = false;
         this.xrLabel5.StylePriority.UseForeColor = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Estado";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel7
         //
         this.xrLabel7.BackColor = System.Drawing.Color.Blue;
         this.xrLabel7.ForeColor = System.Drawing.Color.White;
         this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 5.999994F);
         this.xrLabel7.Name = "xrLabel7";
         this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel7.SizeF = new System.Drawing.SizeF(114.4801F, 20F);
         this.xrLabel7.StylePriority.UseBackColor = false;
         this.xrLabel7.StylePriority.UseForeColor = false;
         this.xrLabel7.StylePriority.UseTextAlignment = false;
         this.xrLabel7.Text = "Hora Asistencia";
         this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel8
         //
         this.xrLabel8.BackColor = System.Drawing.Color.Blue;
         this.xrLabel8.ForeColor = System.Drawing.Color.White;
         this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 5.999994F);
         this.xrLabel8.Name = "xrLabel8";
         this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel8.SizeF = new System.Drawing.SizeF(71.17064F, 20F);
         this.xrLabel8.StylePriority.UseBackColor = false;
         this.xrLabel8.StylePriority.UseForeColor = false;
         this.xrLabel8.StylePriority.UseTextAlignment = false;
         this.xrLabel8.Text = "Id";
         this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel10
         //
         this.xrLabel10.BackColor = System.Drawing.Color.Blue;
         this.xrLabel10.ForeColor = System.Drawing.Color.White;
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(77.17064F, 6.00001F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(241.8294F, 20F);
         this.xrLabel10.StylePriority.UseBackColor = false;
         this.xrLabel10.StylePriority.UseForeColor = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "Nombre";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel11
         //
         this.xrLabel11.BackColor = System.Drawing.Color.Blue;
         this.xrLabel11.ForeColor = System.Drawing.Color.White;
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(319F, 5.999994F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(93.54164F, 20F);
         this.xrLabel11.StylePriority.UseBackColor = false;
         this.xrLabel11.StylePriority.UseForeColor = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "Cédula";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel12
         //
         this.xrLabel12.BackColor = System.Drawing.Color.Blue;
         this.xrLabel12.ForeColor = System.Drawing.Color.White;
         this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 5.999994F);
         this.xrLabel12.Name = "xrLabel12";
         this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel12.SizeF = new System.Drawing.SizeF(61.62897F, 20F);
         this.xrLabel12.StylePriority.UseBackColor = false;
         this.xrLabel12.StylePriority.UseForeColor = false;
         this.xrLabel12.StylePriority.UseTextAlignment = false;
         this.xrLabel12.Text = "Presente";
         this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.BackColor = System.Drawing.Color.Blue;
         this.xrLabel13.ForeColor = System.Drawing.Color.White;
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 6.00001F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(89.78967F, 20F);
         this.xrLabel13.StylePriority.UseBackColor = false;
         this.xrLabel13.StylePriority.UseForeColor = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "Teléfono";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // pageFooterBand1
         //
         this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrPageInfo1,
         this.xrPageInfo2});
         this.pageFooterBand1.HeightF = 31F;
         this.pageFooterBand1.Name = "pageFooterBand1";
         //
         // xrLine2
         //
         this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLine2.Name = "xrLine2";
         this.xrLine2.SizeF = new System.Drawing.SizeF(844F, 8F);
         //
         // xrPageInfo1
         //
         this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 8F);
         this.xrPageInfo1.Name = "xrPageInfo1";
         this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
         this.xrPageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo1.StyleName = "PageInfo";
         //
         // xrPageInfo2
         //
         this.xrPageInfo2.Format = "Página {0} de {1}";
         this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(536.9999F, 8F);
         this.xrPageInfo2.Name = "xrPageInfo2";
         this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo2.StyleName = "PageInfo";
         this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
         //
         // reportHeaderBand1
         //
         this.reportHeaderBand1.HeightF = 78.08336F;
         this.reportHeaderBand1.Name = "reportHeaderBand1";
         //
         // Title
         //
         this.Title.BackColor = System.Drawing.Color.Transparent;
         this.Title.BorderColor = System.Drawing.Color.Black;
         this.Title.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.Title.BorderWidth = 1F;
         this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.Title.ForeColor = System.Drawing.Color.Navy;
         this.Title.Name = "Title";
         //
         // FieldCaption
         //
         this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
         this.FieldCaption.BorderColor = System.Drawing.Color.Black;
         this.FieldCaption.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.FieldCaption.BorderWidth = 1F;
         this.FieldCaption.Font = new System.Drawing.Font("Times New Roman", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.FieldCaption.ForeColor = System.Drawing.Color.Navy;
         this.FieldCaption.Name = "FieldCaption";
         //
         // PageInfo
         //
         this.PageInfo.BackColor = System.Drawing.Color.Transparent;
         this.PageInfo.BorderColor = System.Drawing.Color.Black;
         this.PageInfo.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.PageInfo.BorderWidth = 1F;
         this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.PageInfo.ForeColor = System.Drawing.Color.Navy;
         this.PageInfo.Name = "PageInfo";
         //
         // DataField
         //
         this.DataField.BackColor = System.Drawing.Color.Transparent;
         this.DataField.BorderColor = System.Drawing.Color.Black;
         this.DataField.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.DataField.BorderWidth = 1F;
         this.DataField.Font = new System.Drawing.Font("Arial", 8F);
         this.DataField.ForeColor = System.Drawing.Color.Black;
         this.DataField.Name = "DataField";
         //
         // pEvento
         //
         this.pEvento.Description = "Seleccione un evento";
         this.pEvento.Name = "pEvento";
         this.pEvento.Type = typeof(int);
         this.pEvento.ValueInfo = "0";
         this.pEvento.Visible = false;
         //
         // pTipo
         //
         this.pTipo.Description = "Seleccione un tipo";
         this.pTipo.Name = "pTipo";
         this.pTipo.Visible = false;
         //
         // PageHeader
         //
         this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine3,
         this.xrLine4,
         this.xrLabel27});
         this.PageHeader.HeightF = 60.41667F;
         this.PageHeader.Name = "PageHeader";
         //
         // xrLine3
         //
         this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 58.41667F);
         this.xrLine3.Name = "xrLine3";
         this.xrLine3.SizeF = new System.Drawing.SizeF(843.9999F, 2F);
         //
         // xrLine4
         //
         this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrLine4.Name = "xrLine4";
         this.xrLine4.SizeF = new System.Drawing.SizeF(843.9999F, 16.00001F);
         //
         // xrLabel27
         //
         this.xrLabel27.BackColor = System.Drawing.Color.Blue;
         this.xrLabel27.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrLabel27.ForeColor = System.Drawing.Color.White;
         this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.00001F);
         this.xrLabel27.Name = "xrLabel27";
         this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel27.SizeF = new System.Drawing.SizeF(843.9999F, 34.16666F);
         this.xrLabel27.StyleName = "Title";
         this.xrLabel27.StylePriority.UseBackColor = false;
         this.xrLabel27.StylePriority.UseFont = false;
         this.xrLabel27.StylePriority.UseForeColor = false;
         this.xrLabel27.StylePriority.UseTextAlignment = false;
         this.xrLabel27.Text = "REPORTE DE ASISTENCIA";
         this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // RptReporteAsistencia
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.groupHeaderBand2,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.PageHeader});
         this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1});
         this.DataMember = "sp_Reportes_Read";
         this.DataSource = this.sqlDataSource1;
         this.Margins = new System.Drawing.Printing.Margins(0, 0, 72, 100);
         this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.pEvento,
         this.pTipo});
         this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField});
         this.Version = "15.2";
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 27
0
 private void InitializeComponent()
 {
     this.dtl = new DevExpress.XtraReports.UI.DetailBand();
     this.ph = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel();
     this.pf = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrTableRoadInfo = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableRoadInfoCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRoadInfoCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableDev = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableDevCell = new DevExpress.XtraReports.UI.XRTableCell();
     this.xlblDevice = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblUser = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTime = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xlblDev = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // dtl
     //
     this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.dtl.Height = 0;
     this.dtl.Name = "dtl";
     this.dtl.ParentStyleUsing.UseFont = false;
     //
     // ph
     //
     this.ph.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.ph.Height = 0;
     this.ph.Name = "ph";
     this.ph.ParentStyleUsing.UseFont = false;
     //
     // xlblReportHeader
     //
     this.xlblReportHeader.BackColor = System.Drawing.Color.Empty;
     this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control;
     this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblReportHeader.Location = new System.Drawing.Point(250, 25);
     this.xlblReportHeader.Name = "xlblReportHeader";
     this.xlblReportHeader.ParentStyleUsing.UseBackColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseFont = false;
     this.xlblReportHeader.ParentStyleUsing.UseForeColor = false;
     this.xlblReportHeader.Size = new System.Drawing.Size(600, 33);
     this.xlblReportHeader.Text = "測試報表";
     this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // pf
     //
     this.pf.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.pf.Height = 158;
     this.pf.Name = "pf";
     this.pf.ParentStyleUsing.UseFont = false;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrLabel1.Location = new System.Drawing.Point(967, 108);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.ParentStyleUsing.UseFont = false;
     this.xrLabel1.ParentStyleUsing.UseForeColor = false;
     this.xrLabel1.Size = new System.Drawing.Size(108, 25);
     this.xrLabel1.Text = "頁次:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo
     //
     this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrPageInfo.Location = new System.Drawing.Point(1075, 108);
     this.xrPageInfo.Name = "xrPageInfo";
     this.xrPageInfo.ParentStyleUsing.UseFont = false;
     this.xrPageInfo.ParentStyleUsing.UseForeColor = false;
     this.xrPageInfo.Size = new System.Drawing.Size(50, 25);
     this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xlblDev,
     this.xrTableRoadInfo,
     this.xrTableDev,
     this.xlblDevice,
     this.xlblTimeRange,
     this.xrPageInfo,
     this.xrLabel1,
     this.xlblMemo,
     this.xlblUser,
     this.xlblTime,
     this.xlblReportHeader});
     this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.TopMargin.Height = 142;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.ParentStyleUsing.UseFont = false;
     //
     // xrTableRoadInfo
     //
     this.xrTableRoadInfo.Location = new System.Drawing.Point(0, 108);
     this.xrTableRoadInfo.Name = "xrTableRoadInfo";
     this.xrTableRoadInfo.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2});
     this.xrTableRoadInfo.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableRoadInfoCell1,
     this.xrTableRoadInfoCell2});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRoadInfoCell1
     //
     this.xrTableRoadInfoCell1.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell1.Location = new System.Drawing.Point(0, 0);
     this.xrTableRoadInfoCell1.Name = "xrTableRoadInfoCell1";
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell1.Size = new System.Drawing.Size(208, 25);
     this.xrTableRoadInfoCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRoadInfoCell2
     //
     this.xrTableRoadInfoCell2.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell2.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell2.Location = new System.Drawing.Point(208, 0);
     this.xrTableRoadInfoCell2.Name = "xrTableRoadInfoCell2";
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell2.Size = new System.Drawing.Size(200, 25);
     this.xrTableRoadInfoCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableDev
     //
     this.xrTableDev.Location = new System.Drawing.Point(808, 108);
     this.xrTableDev.Name = "xrTableDev";
     this.xrTableDev.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTableDev.Size = new System.Drawing.Size(159, 25);
     this.xrTableDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableDevCell});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Size = new System.Drawing.Size(159, 25);
     //
     // xrTableDevCell
     //
     this.xrTableDevCell.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableDevCell.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableDevCell.Location = new System.Drawing.Point(0, 0);
     this.xrTableDevCell.Name = "xrTableDevCell";
     this.xrTableDevCell.ParentStyleUsing.UseFont = false;
     this.xrTableDevCell.ParentStyleUsing.UseForeColor = false;
     this.xrTableDevCell.Size = new System.Drawing.Size(159, 25);
     this.xrTableDevCell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblDevice
     //
     this.xlblDevice.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDevice.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDevice.Location = new System.Drawing.Point(717, 108);
     this.xlblDevice.Name = "xlblDevice";
     this.xlblDevice.ParentStyleUsing.UseFont = false;
     this.xlblDevice.ParentStyleUsing.UseForeColor = false;
     this.xlblDevice.Size = new System.Drawing.Size(95, 25);
     this.xlblDevice.Text = "偵測器編號:";
     this.xlblDevice.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTimeRange
     //
     this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTimeRange.Location = new System.Drawing.Point(0, 83);
     this.xlblTimeRange.Name = "xlblTimeRange";
     this.xlblTimeRange.ParentStyleUsing.UseFont = false;
     this.xlblTimeRange.ParentStyleUsing.UseForeColor = false;
     this.xlblTimeRange.Size = new System.Drawing.Size(408, 25);
     this.xlblTimeRange.Text = "時間:";
     this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblMemo
     //
     this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblMemo.Location = new System.Drawing.Point(967, 83);
     this.xlblMemo.Name = "xlblMemo";
     this.xlblMemo.ParentStyleUsing.UseFont = false;
     this.xlblMemo.ParentStyleUsing.UseForeColor = false;
     this.xlblMemo.Size = new System.Drawing.Size(158, 25);
     this.xlblMemo.Text = "中區-RPT_DATA_06";
     this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlblUser
     //
     this.xlblUser.BackColor = System.Drawing.Color.Empty;
     this.xlblUser.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblUser.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblUser.Location = new System.Drawing.Point(717, 58);
     this.xlblUser.Name = "xlblUser";
     this.xlblUser.ParentStyleUsing.UseBackColor = false;
     this.xlblUser.ParentStyleUsing.UseFont = false;
     this.xlblUser.ParentStyleUsing.UseForeColor = false;
     this.xlblUser.Size = new System.Drawing.Size(249, 25);
     this.xlblUser.Text = "操作者:";
     this.xlblUser.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTime
     //
     this.xlblTime.BackColor = System.Drawing.Color.Empty;
     this.xlblTime.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTime.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTime.Location = new System.Drawing.Point(717, 83);
     this.xlblTime.Name = "xlblTime";
     this.xlblTime.ParentStyleUsing.UseBackColor = false;
     this.xlblTime.ParentStyleUsing.UseFont = false;
     this.xlblTime.ParentStyleUsing.UseForeColor = false;
     this.xlblTime.Size = new System.Drawing.Size(249, 25);
     this.xlblTime.Text = "列印日期:";
     this.xlblTime.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail});
     this.DetailReport.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.ParentStyleUsing.UseFont = false;
     //
     // Detail
     //
     this.Detail.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.Detail.Height = 0;
     this.Detail.Name = "Detail";
     this.Detail.ParentStyleUsing.UseFont = false;
     //
     // xlblDev
     //
     this.xlblDev.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDev.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDev.Location = new System.Drawing.Point(0, 108);
     this.xlblDev.Name = "xlblDev";
     this.xlblDev.ParentStyleUsing.UseFont = false;
     this.xlblDev.ParentStyleUsing.UseForeColor = false;
     this.xlblDev.Size = new System.Drawing.Size(408, 25);
     this.xlblDev.Text = "設備種類:";
     this.xlblDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // clsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.dtl,
     this.ph,
     this.pf,
     this.TopMargin,
     this.DetailReport});
     this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4Rotated;
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo 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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonthlyPayroll));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.DetailReport2     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail4           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.Money             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.header            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport4     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail5           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.Branch            = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.Ref              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.Payment          = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel25        = new DevExpress.XtraReports.UI.XRLabel();
     this.Department       = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel22        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrCrossBandBox1  = new DevExpress.XtraReports.UI.XRCrossBandBox();
     this.xrCrossBandLine1 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     this.xrCrossBandLine2 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName    = "DataField";
     this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrLabel12
     //
     resources.ApplyResources(this.xrLabel12, "xrLabel12");
     this.xrLabel12.Name    = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     //
     // TopMargin
     //
     resources.ApplyResources(this.TopMargin, "TopMargin");
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // BottomMargin
     //
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel24, "xrLabel24");
     this.xrLabel24.Name    = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // User
     //
     resources.ApplyResources(this.User, "User");
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel23
     //
     resources.ApplyResources(this.xrLabel23, "xrLabel23");
     this.xrLabel23.Name    = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // xrPageInfo1
     //
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     //
     // xrPageInfo2
     //
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel15
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PayDate")
     });
     resources.ApplyResources(this.xrLabel18, "xrLabel18");
     this.xrLabel18.Name    = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.StylePriority.UseFont = false;
     //
     // xrLabel17
     //
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Multiline             = true;
     this.xrLabel17.Name                  = "xrLabel17";
     this.xrLabel17.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.BeforePrint          += new System.Drawing.Printing.PrintEventHandler(this.xrLabel17_BeforePrint);
     //
     // xrLabel15
     //
     resources.ApplyResources(this.xrLabel15, "xrLabel15");
     this.xrLabel15.Name      = "xrLabel15";
     this.xrLabel15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.StyleName = "Title";
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor     = System.Drawing.Color.Transparent;
     this.DataField.BorderColor   = System.Drawing.Color.Black;
     this.DataField.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth   = 1F;
     this.DataField.Font          = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor     = System.Drawing.Color.Black;
     this.DataField.Name          = "DataField";
     this.DataField.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DataField.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1
     });
     this.DetailReport.DataMember   = "Names";
     this.DetailReport.DataSource   = this.objectDataSource1;
     this.DetailReport.Level        = 1;
     this.DetailReport.Name         = "DetailReport";
     this.DetailReport.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport_BeforePrint);
     //
     // Detail1
     //
     resources.ApplyResources(this.Detail1, "Detail1");
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel14,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel1
     });
     this.Detail1.KeepTogether            = true;
     this.Detail1.MultiColumn.ColumnCount = 15;
     this.Detail1.MultiColumn.ColumnWidth = 60F;
     this.Detail1.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail1.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail1.Name = "Detail1";
     this.Detail1.StylePriority.UseBackColor = false;
     //
     // xrLabel14
     //
     resources.ApplyResources(this.xrLabel14, "xrLabel14");
     this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel14.Name    = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel14.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel14.StyleName                  = "header";
     this.xrLabel14.StylePriority.UseBackColor = false;
     this.xrLabel14.StylePriority.UseBorders   = false;
     this.xrLabel14.StylePriority.UseFont      = false;
     this.xrLabel14.StylePriority.UsePadding   = false;
     //
     // xrLabel8
     //
     resources.ApplyResources(this.xrLabel8, "xrLabel8");
     this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel8.Name    = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel8.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel8.StyleName                  = "header";
     this.xrLabel8.StylePriority.UseBackColor = false;
     this.xrLabel8.StylePriority.UseBorders   = false;
     this.xrLabel8.StylePriority.UseFont      = false;
     this.xrLabel8.StylePriority.UsePadding   = false;
     //
     // xrLabel7
     //
     resources.ApplyResources(this.xrLabel7, "xrLabel7");
     this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel7.Name    = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel7.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel7.StyleName                  = "header";
     this.xrLabel7.StylePriority.UseBackColor = false;
     this.xrLabel7.StylePriority.UseBorders   = false;
     this.xrLabel7.StylePriority.UseFont      = false;
     this.xrLabel7.StylePriority.UsePadding   = false;
     //
     // xrLabel6
     //
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel6.Name    = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel6.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel6.StyleName                  = "header";
     this.xrLabel6.StylePriority.UseBackColor = false;
     this.xrLabel6.StylePriority.UseBorders   = false;
     this.xrLabel6.StylePriority.UseFont      = false;
     this.xrLabel6.StylePriority.UsePadding   = false;
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Names.name")
     });
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.StyleName = "header";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UsePadding       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Reports.MonthlyPayrollCollection);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.DetailReport2
     });
     this.DetailReport1.DataMember   = "Payrolls";
     this.DetailReport1.DataSource   = this.objectDataSource1;
     this.DetailReport1.Level        = 2;
     this.DetailReport1.Name         = "DetailReport1";
     this.DetailReport1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport1_BeforePrint);
     //
     // Detail2
     //
     resources.ApplyResources(this.Detail2, "Detail2");
     this.Detail2.Name = "Detail2";
     //
     // DetailReport2
     //
     this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3
     });
     this.DetailReport2.DataMember = "Payrolls.Entitlements";
     this.DetailReport2.DataSource = this.objectDataSource1;
     this.DetailReport2.Level      = 0;
     this.DetailReport2.Name       = "DetailReport2";
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel13,
         this.xrLabel4,
         this.xrLabel2,
         this.xrLabel3
     });
     resources.ApplyResources(this.Detail3, "Detail3");
     this.Detail3.KeepTogether            = true;
     this.Detail3.MultiColumn.ColumnCount = 15;
     this.Detail3.MultiColumn.ColumnWidth = 60F;
     this.Detail3.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail3.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.Entitlements.AmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel5, "xrLabel5");
     this.xrLabel5.Name      = "xrLabel5";
     this.xrLabel5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel5.StyleName = "Money";
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UsePadding       = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     //
     // xrLabel13
     //
     this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.calendarDays")
     });
     resources.ApplyResources(this.xrLabel13, "xrLabel13");
     this.xrLabel13.Name    = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel13.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel13.StylePriority.UseBorders       = false;
     this.xrLabel13.StylePriority.UsePadding       = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.BasicAmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name    = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel4.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel4.StyleName                      = "Money";
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UsePadding       = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.days")
     });
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name    = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel2.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel2.StyleName                      = "Money";
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.name")
     });
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name    = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel3.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UsePadding       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail4
     });
     this.DetailReport3.DataMember   = "Totals";
     this.DetailReport3.DataSource   = this.objectDataSource1;
     this.DetailReport3.Level        = 3;
     this.DetailReport3.Name         = "DetailReport3";
     this.DetailReport3.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport3_BeforePrint);
     //
     // Detail4
     //
     this.Detail4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9
     });
     resources.ApplyResources(this.Detail4, "Detail4");
     this.Detail4.MultiColumn.ColumnCount = 15;
     this.Detail4.MultiColumn.ColumnWidth = 60F;
     this.Detail4.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail4.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail4.Name = "Detail4";
     //
     // xrLabel11
     //
     this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     resources.ApplyResources(this.xrLabel11, "xrLabel11");
     this.xrLabel11.Name    = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel11.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel11.StylePriority.UseBorders       = false;
     this.xrLabel11.StylePriority.UsePadding       = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     //
     // xrLabel10
     //
     this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalBasics", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel10, "xrLabel10");
     this.xrLabel10.Name    = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel10.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel10.StyleName                      = "Money";
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UsePadding       = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     //
     // xrLabel9
     //
     this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Totals.amount", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel9, "xrLabel9");
     this.xrLabel9.Name      = "xrLabel9";
     this.xrLabel9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel9.StyleName = "Money";
     this.xrLabel9.StylePriority.UseBorders       = false;
     this.xrLabel9.StylePriority.UsePadding       = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     //
     // Money
     //
     this.Money.Name          = "Money";
     this.Money.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // header
     //
     this.header.Name          = "header";
     this.header.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // DetailReport4
     //
     this.DetailReport4.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail5
     });
     this.DetailReport4.DataMember = "Headers";
     this.DetailReport4.DataSource = this.objectDataSource1;
     this.DetailReport4.Level      = 0;
     this.DetailReport4.Name       = "DetailReport4";
     //
     // Detail5
     //
     this.Detail5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16
     });
     resources.ApplyResources(this.Detail5, "Detail5");
     this.Detail5.MultiColumn.ColumnCount = 12;
     this.Detail5.MultiColumn.ColumnWidth = 60F;
     this.Detail5.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail5.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail5.Name = "Detail5";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Headers.name")
     });
     resources.ApplyResources(this.xrLabel16, "xrLabel16");
     this.xrLabel16.Name    = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel28,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19
     });
     resources.ApplyResources(this.PageHeader, "PageHeader");
     this.PageHeader.Name = "PageHeader";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Branch, "Text", "")
     });
     resources.ApplyResources(this.xrLabel28, "xrLabel28");
     this.xrLabel28.Name    = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     //
     // Branch
     //
     resources.ApplyResources(this.Branch, "Branch");
     this.Branch.Name    = "Branch";
     this.Branch.Visible = false;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Ref, "Text", "")
     });
     resources.ApplyResources(this.xrLabel27, "xrLabel27");
     this.xrLabel27.Name    = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     //
     // Ref
     //
     resources.ApplyResources(this.Ref, "Ref");
     this.Ref.Name    = "Ref";
     this.Ref.Visible = false;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Payment, "Text", "")
     });
     resources.ApplyResources(this.xrLabel26, "xrLabel26");
     this.xrLabel26.Name    = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     //
     // Payment
     //
     resources.ApplyResources(this.Payment, "Payment");
     this.Payment.Name    = "Payment";
     this.Payment.Visible = false;
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Department, "Text", "")
     });
     resources.ApplyResources(this.xrLabel25, "xrLabel25");
     this.xrLabel25.Name    = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     //
     // Department
     //
     resources.ApplyResources(this.Department, "Department");
     this.Department.Name    = "Department";
     this.Department.Visible = false;
     //
     // xrLabel22
     //
     resources.ApplyResources(this.xrLabel22, "xrLabel22");
     this.xrLabel22.Name    = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     //
     // xrLabel21
     //
     resources.ApplyResources(this.xrLabel21, "xrLabel21");
     this.xrLabel21.Name    = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     //
     // xrLabel20
     //
     resources.ApplyResources(this.xrLabel20, "xrLabel20");
     this.xrLabel20.Name    = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     //
     // xrLabel19
     //
     resources.ApplyResources(this.xrLabel19, "xrLabel19");
     this.xrLabel19.Name    = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     //
     // xrCrossBandBox1
     //
     this.xrCrossBandBox1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandBox1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandBox1, "xrCrossBandBox1");
     this.xrCrossBandBox1.Name      = "xrCrossBandBox1";
     this.xrCrossBandBox1.StartBand = this.PageHeader;
     this.xrCrossBandBox1.WidthF    = 940.625F;
     //
     // xrCrossBandLine1
     //
     this.xrCrossBandLine1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine1, "xrCrossBandLine1");
     this.xrCrossBandLine1.Name      = "xrCrossBandLine1";
     this.xrCrossBandLine1.StartBand = this.PageHeader;
     this.xrCrossBandLine1.WidthF    = 1.041667F;
     //
     // xrCrossBandLine2
     //
     this.xrCrossBandLine2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine2.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine2, "xrCrossBandLine2");
     this.xrCrossBandLine2.Name      = "xrCrossBandLine2";
     this.xrCrossBandLine2.StartBand = this.PageHeader;
     this.xrCrossBandLine2.WidthF    = 938.5417F;
     //
     // MonthlyPayroll
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport,
         this.DetailReport1,
         this.DetailReport3,
         this.DetailReport4,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.CrossBandControls.AddRange(new DevExpress.XtraReports.UI.XRCrossBandControl[] {
         this.xrCrossBandLine2,
         this.xrCrossBandLine1,
         this.xrCrossBandBox1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Department,
         this.Branch,
         this.Payment,
         this.Ref,
         this.User
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField,
         this.Money,
         this.header
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BorrowedDocs));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
     this.DeliveryDateExceeded = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrTableCell8         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11        = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell15        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
     this.companyLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReceivedPercent  = new DevExpress.XtraReports.UI.CalculatedField();
     this.CompanyId        = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture          = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDocIds    = new DevExpress.XtraReports.Parameters.Parameter();
     this.DocsIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName       = new DevExpress.XtraReports.Parameters.Parameter();
     this.AssignEndDate    = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.ConEmpStartDate  = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "SP_BorrowedDocs";
     queryParameter1.Name  = "@Culture";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name  = "@LoginCompanyId";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name  = "@Doc";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingDocIds]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "SP_BorrowedDocs";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 63.5F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Silver;
     this.xrTable2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth   = 1F;
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.EvenStyleName = "tbl_odd_detail";
     this.xrTable2.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "tbl_even_detail";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders     = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont        = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Site")
     });
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell4.Weight        = 0.11056524965261336D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Purpose")
     });
     this.xrTableCell1.Dpi  = 254F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell1.Weight        = 0.14548798205074123D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.ExpdelvryDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi = 254F;
     this.xrTableCell7.FormattingRules.Add(this.DeliveryDateExceeded);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.10827628442976688D;
     //
     // DeliveryDateExceeded
     //
     this.DeliveryDateExceeded.Condition              = "[ExpdelvryDate]<LocalDateTimeToday()";
     this.DeliveryDateExceeded.DataMember             = "SP_BorrowedDocs";
     this.DeliveryDateExceeded.Formatting.BorderWidth = 1F;
     this.DeliveryDateExceeded.Formatting.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.DeliveryDateExceeded.Formatting.Visible     = DevExpress.Utils.DefaultBoolean.True;
     this.DeliveryDateExceeded.Name = "DeliveryDateExceeded";
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.RecvDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell8.Dpi  = 254F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.10964101182186527D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DocName")
     });
     this.xrTableCell9.Dpi  = 254F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.16753169367895224D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.JobName")
     });
     this.xrTableCell10.Dpi  = 254F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15556520642517518D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.EmpName")
     });
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.18201755971242239D;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.Dpi       = 254F;
     this.PageHeader.HeightF   = 63.5F;
     this.PageHeader.Name      = "PageHeader";
     this.PageHeader.StyleName = "tbl_header_style";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.xrTableCell14,
         this.xrTableCell13,
         this.xrTableCell6,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Dpi    = 254F;
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "الجهة";
     this.xrTableCell15.Weight = 1.2191038081965198D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Dpi    = 254F;
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "الغرض للإعارة";
     this.xrTableCell14.Weight = 1.6041660107525171D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Dpi    = 254F;
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "التاريخ المتوقع للارتجاع";
     this.xrTableCell13.Weight = 1.1938659267354235D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Dpi    = 254F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "تاريخ الاستلام";
     this.xrTableCell6.Weight = 1.2089125351471246D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 254F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "المستندات المعارة";
     this.xrTableCell5.Weight = 1.8472222615835232D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi    = 254F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "الوظيفة";
     this.xrTableCell2.Weight = 1.7152782049704727D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 254F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "اسم الموظف";
     this.xrTableCell3.Weight = 2.0069445512426181D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.companyLogo,
         this.xrLabel11
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 218.1666F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(883.6393F, 40.98377F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1117.212F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "تقرير المستندات المُعارة للموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // companyLogo
     //
     this.companyLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(3.000032F, 1.986098F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel11.Dpi                            = 254F;
     this.xrLabel11.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(2029.93F, 0F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(934.0693F, 105.7759F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 71.95106F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(707.6166F, 13.53106F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2709F, 13.53104F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.999978F, 10.74665F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(961.6166F, 13.53106F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // ReceivedPercent
     //
     this.ReceivedPercent.DataMember = "SP_EmployeeDocumentsReport";
     this.ReceivedPercent.Expression = "(100*[ReceivedPaperCount])/([MissingPaperCount]+[ReceivedPaperCount])";
     this.ReceivedPercent.Name       = "ReceivedPercent";
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "ar-EG";
     this.Culture.Visible     = false;
     //
     // MappingDocIds
     //
     this.MappingDocIds.Description = "MappingDocIds";
     this.MappingDocIds.Name        = "MappingDocIds";
     this.MappingDocIds.Visible     = false;
     //
     // DocsIds
     //
     this.DocsIds.Description = "اسم المستند";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_BorrowedDocs";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "DocName";
     dynamicListLookUpSettings1.ValueMember   = "DocID";
     this.DocsIds.LookUpSettings = dynamicListLookUpSettings1;
     this.DocsIds.MultiValue     = true;
     this.DocsIds.Name           = "DocsIds";
     this.DocsIds.Type           = typeof(int);
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "BorrowedDocs";
     this.ReportName.Visible     = false;
     //
     // AssignEndDate
     //
     this.AssignEndDate.Description = "إلي";
     this.AssignEndDate.Name        = "AssignEndDate";
     this.AssignEndDate.Type        = typeof(System.DateTime);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("DeptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 95.25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DeptName")
     });
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2341F, 24.99998F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(509.7639F, 63.19446F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // ConEmpStartDate
     //
     this.ConEmpStartDate.Description = "تاريخ الاستلام من";
     this.ConEmpStartDate.Name        = "ConEmpStartDate";
     this.ConEmpStartDate.Type        = typeof(System.DateTime);
     //
     // BorrowedDocs
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.ReceivedPercent
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "SP_BorrowedDocs";
     this.DataSource   = this.sqlDataSource1;
     this.Dpi          = 254F;
     this.FilterString = "[RecvDate] Between(?ConEmpStartDate, ?AssignEndDate)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.DeliveryDateExceeded,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(3, 3, 0, 0);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.Culture,
         this.DocsIds,
         this.ConEmpStartDate,
         this.MappingDocIds,
         this.ReportName,
         this.AssignEndDate
     });
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo 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()
 {
     this.components               = new System.ComponentModel.Container();
     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.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.objectDataSource1        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPanel2                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo3              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPictureBox2            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     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.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.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter               = new DevExpress.XtraReports.UI.PageFooterBand();
     this.RigName                  = new DevExpress.XtraReports.Parameters.Parameter();
     this.LogoFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     this.IrmaFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).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.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(748.7307F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell4,
         this.xrTableCell12,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell9.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell9.Multiline             = true;
     this.xrTableCell9.Name                  = "xrTableCell9";
     this.xrTableCell9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.StyleName             = "DetailData3";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.Text                  = "xrTableCell9";
     this.xrTableCell9.TextFormatString      = "{0:dd-MMM-yy}";
     this.xrTableCell9.Weight                = 0.085508701113737734D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell10.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Multiline             = true;
     this.xrTableCell10.Name                  = "xrTableCell10";
     this.xrTableCell10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell10.StyleName             = "DetailData3";
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.Text                  = "xrTableCell10";
     this.xrTableCell10.TextFormatString      = "{0:hh:mm tt}";
     this.xrTableCell10.Weight                = 0.096022101308237379D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrTableCell11.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell11.Multiline             = true;
     this.xrTableCell11.Name                  = "xrTableCell11";
     this.xrTableCell11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.StyleName             = "DetailData3";
     this.xrTableCell11.StylePriority.UseFont = false;
     this.xrTableCell11.Text                  = "xrTableCell11";
     this.xrTableCell11.Weight                = 0.16315843921596263D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Company]")
     });
     this.xrTableCell13.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell13.Multiline             = true;
     this.xrTableCell13.Name                  = "xrTableCell13";
     this.xrTableCell13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StyleName             = "DetailData3";
     this.xrTableCell13.StylePriority.UseFont = false;
     this.xrTableCell13.Text                  = "xrTableCell13";
     this.xrTableCell13.Weight                = 0.14489572133280498D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Nationality]")
     });
     this.xrTableCell14.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell14.Multiline             = true;
     this.xrTableCell14.Name                  = "xrTableCell14";
     this.xrTableCell14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell14.StyleName             = "DetailData3";
     this.xrTableCell14.StylePriority.UseFont = false;
     this.xrTableCell14.Text                  = "xrTableCell14";
     this.xrTableCell14.Weight                = 0.14606979385860874D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Multiline                      = true;
     this.xrTableCell4.Name                           = "xrTableCell4";
     this.xrTableCell4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UsePadding       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight                         = 0.11698113649059191D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Multiline                      = true;
     this.xrTableCell12.Name                           = "xrTableCell12";
     this.xrTableCell12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 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                         = 0.12283572893081503D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell16.Multiline                      = true;
     this.xrTableCell16.Name                           = "xrTableCell16";
     this.xrTableCell16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell16.StylePriority.UseFont          = false;
     this.xrTableCell16.StylePriority.UsePadding       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell16.Weight                         = 0.12283572893081503D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 49.0566F;
     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       = 183F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Ensco.Irma.Models.PobArrivalLogModel);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName                      = "PageInfo";
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(437.0001F, 0F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName                      = "PageInfo";
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo2.TextFormatString               = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2
     });
     this.reportHeaderBand1.HeightF = 71.69814F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrPanel2
     //
     this.xrPanel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel9,
         this.xrLabel1,
         this.xrPageInfo3,
         this.xrPictureBox2
     });
     this.xrPanel2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel2.Name                     = "xrPanel2";
     this.xrPanel2.SizeF                    = new System.Drawing.SizeF(750F, 64.62264F);
     this.xrPanel2.StylePriority.UseBorders = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox1.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\ensco.png";
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(10F, 4.830155F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(128.1132F, 55.0755F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     this.xrPictureBox1.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox1_BeforePrint);
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(109)))), ((int)(((byte)(31)))));
     this.xrLabel9.Font          = new System.Drawing.Font("Arial", 14.26415F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.ForeColor     = System.Drawing.Color.White;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(138.1132F, 4.830154F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(468.0671F, 25.55338F);
     this.xrLabel9.StyleName     = "Title";
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseForeColor     = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "PoB Arrival Log";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[RigName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(138.1132F, 31.01884F);
     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(242.1887F, 28.88681F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold);
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(449.0566F, 31.01884F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(157.1237F, 28.88681F);
     this.xrPageInfo3.StylePriority.UseBorders       = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo3.TextFormatString               = "{0:dd-MMM-yyyy}";
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox2.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\irma.png";
     this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(606.1803F, 4.830155F);
     this.xrPictureBox2.Name                     = "xrPictureBox2";
     this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(135.8197F, 55.0755F);
     this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox2.StylePriority.UseBorders = false;
     this.xrPictureBox2.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox2_BeforePrint);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 83.84906F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(750.0001F, 83.84906F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(750.0001F, 63.84905F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell15
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell1.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor = System.Drawing.Color.White;
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.StyleName = "DetailCaption3";
     this.xrTableCell1.StylePriority.UseBackColor     = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseForeColor     = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Date";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight        = 0.085508713609139336D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell2.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor = System.Drawing.Color.White;
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.StylePriority.UseBackColor     = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Time";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 0.096022124623418637D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell3.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell3.ForeColor = System.Drawing.Color.White;
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.StylePriority.UseBackColor     = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseForeColor     = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Name";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight        = 0.16315849336310651D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell5.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.ForeColor = System.Drawing.Color.White;
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.StylePriority.UseBackColor     = false;
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UseForeColor     = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Company";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell5.Weight        = 0.14489574427297924D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell6.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.ForeColor = System.Drawing.Color.White;
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.StylePriority.UseBackColor     = false;
     this.xrTableCell6.StylePriority.UseFont          = false;
     this.xrTableCell6.StylePriority.UseForeColor     = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Nationality";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 0.14606973352082775D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell7.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.ForeColor = System.Drawing.Color.White;
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseBackColor     = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Cell Phone (Y/N)";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 0.1169811957031249D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell8.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell8.ForeColor = System.Drawing.Color.White;
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.StylePriority.UseBackColor     = false;
     this.xrTableCell8.StylePriority.UseFont          = false;
     this.xrTableCell8.StylePriority.UseForeColor     = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "Presciption Medication (Y/N)";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight        = 0.12283577336338467D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell15.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell15.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.ForeColor = System.Drawing.Color.White;
     this.xrTableCell15.Multiline = true;
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell15.StylePriority.UseBackColor     = false;
     this.xrTableCell15.StylePriority.UseBorders       = false;
     this.xrTableCell15.StylePriority.UseFont          = false;
     this.xrTableCell15.StylePriority.UseForeColor     = false;
     this.xrTableCell15.StylePriority.UsePadding       = false;
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "Signature";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell15.Weight        = 0.12452827820435866D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 26.41509F;
     this.PageFooter.Name    = "PageFooter";
     //
     // RigName
     //
     this.RigName.Description = "RigName";
     this.RigName.Name        = "RigName";
     this.RigName.Visible     = false;
     //
     // LogoFile
     //
     this.LogoFile.Description = "LogoFile";
     this.LogoFile.Name        = "LogoFile";
     this.LogoFile.Visible     = false;
     //
     // IrmaFile
     //
     this.IrmaFile.Description = "IrmaFile";
     this.IrmaFile.Name        = "IrmaFile";
     this.IrmaFile.Visible     = false;
     //
     // PobArrivalLogReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1,
         this.PageFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(51, 49, 49, 183);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.RigName,
         this.LogoFile,
         this.IrmaFile
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "18.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHangHetHan));
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12    = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(825F, 48.95833F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell5,
         this.xrTableCell12
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell8.Summary       = xrSummary1;
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.75763685535931025D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TenMatHang")
     });
     this.xrTableCell6.Dpi  = 100F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "xrTableCell6";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 2.2934490375138443D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrTableCell9.Dpi  = 100F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.80335648845172447D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi  = 100F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "text";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.2194772748674545D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien", "{0:#,#}")
     });
     this.xrTableCell5.Dpi  = 100F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.4788878045182563D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().hsd")
     });
     this.xrTableCell12.Dpi  = 100F;
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 1.5562916415485952D;
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell2,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi  = 100F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "STT";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 0.94754186476410629D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 100F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Tên mặt hàng";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 2.8683133636581744D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 100F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "SL";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.0047211441528232D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi       = 100F;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Giá";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.5251447991699609D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Thành tiền ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.8495776226644305D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 100F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "HSD";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.9463830854592059D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 11.54162F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 48.95833F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.Expanded    = false;
     this.PageFooter.HeightF     = 100F;
     this.PageFooter.Name        = "PageFooter";
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 34.45834F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth   = 0F;
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.Font          = new System.Drawing.Font("Sitka Text", 34F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(160)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(804.9999F, 60.20834F);
     this.xrLabel1.StyleName     = "TableStyle";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Báo Cáo Hàng Hết Hạn Sử Dụng";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(825F, 55.62499F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 94.79166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF               = 55.62499F;
     this.GroupHeader1.Name                  = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage       = true;
     this.GroupHeader1.StylePriority.UseFont = false;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 115.0416F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(825F, 23F);
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien")
     });
     this.xrLabel3.Dpi                        = 100F;
     this.xrLabel3.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel3.LocationFloat              = new DevExpress.Utils.PointFloat(119.8967F, 58.49997F);
     this.xrLabel3.Name                       = "xrLabel3";
     this.xrLabel3.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                      = new System.Drawing.SizeF(546.77F, 30.29169F);
     this.xrLabel3.StylePriority.UseFont      = false;
     this.xrLabel3.StylePriority.UseForeColor = false;
     xrSummary2.FormatString                  = "{0:#,#} VNĐ";
     xrSummary2.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary                    = xrSummary2;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrLabel2.Dpi                        = 100F;
     this.xrLabel2.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel2.LocationFloat              = new DevExpress.Utils.PointFloat(160.5217F, 22.99999F);
     this.xrLabel2.Name                       = "xrLabel2";
     this.xrLabel2.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                      = new System.Drawing.SizeF(506.145F, 35.49998F);
     this.xrLabel2.StylePriority.UseFont      = false;
     this.xrLabel2.StylePriority.UseForeColor = false;
     xrSummary3.FormatString                  = "{0:#,#}";
     xrSummary3.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel2.Summary                    = xrSummary3;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHangHetHan()";
     storedProcQuery1.StoredProcName = "GetHangHetHan";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                        = 100F;
     this.xrLabel4.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel4.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 22.99999F);
     this.xrLabel4.Name                       = "xrLabel4";
     this.xrLabel4.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                      = new System.Drawing.SizeF(150.5217F, 35.49998F);
     this.xrLabel4.StylePriority.UseFont      = false;
     this.xrLabel4.StylePriority.UseForeColor = false;
     this.xrLabel4.Text                       = "Tổng số lượng:";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi                        = 100F;
     this.xrLabel5.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel5.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 58.49997F);
     this.xrLabel5.Name                       = "xrLabel5";
     this.xrLabel5.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                      = new System.Drawing.SizeF(109.8967F, 30.29168F);
     this.xrLabel5.StylePriority.UseFont      = false;
     this.xrLabel5.StylePriority.UseForeColor = false;
     this.xrLabel5.Text                       = "Tổng tiền:";
     //
     // BCHangHetHan
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter,
         this.GroupFooter1
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "GetHangHetHan()";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(10, 15, 34, 12);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1 = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
     DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo  efStoredProcedureInfo1  = new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter1            = new DevExpress.DataAccess.EntityFramework.EFParameter();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.efDataSource1     = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.AssessmentId      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel12,
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLine1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 189.5F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.Dpi           = 100F;
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 159.5417F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel15.StyleName     = "FieldCaption";
     this.xrLabel15.Text          = "NAME";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.ITaxAccount.ITaxpayer.TaxpayerName")
     });
     this.xrLabel14.Dpi           = 100F;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(174F, 159.5417F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel14.Text          = "xrLabel14";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.ITaxAccount.ITaxpayer.TIN")
     });
     this.xrLabel12.Dpi           = 100F;
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(174F, 129F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel12.Text          = "xrLabel12";
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 9F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "ASSESSMENT #";
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi           = 100F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 33F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "ASSESSMENT DATE";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(6F, 57F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "TAX ACCOUNT #";
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi           = 100F;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(6F, 81F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel4.StyleName     = "FieldCaption";
     this.xrLabel4.Text          = "ASSESSMENT YEAR";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi           = 100F;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(6F, 105F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel5.StyleName     = "FieldCaption";
     this.xrLabel5.Text          = "TAX PAYABLE";
     //
     // xrLabel6
     //
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(6F, 129F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel6.StyleName     = "FieldCaption";
     this.xrLabel6.Text          = "TIN";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentId")
     });
     this.xrLabel7.Dpi           = 100F;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(174F, 9F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel7.StyleName     = "DataField";
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentDate", "{0:dd MMMM, yyyy}")
     });
     this.xrLabel8.Dpi           = 100F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(174F, 33F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel8.StyleName     = "DataField";
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.TaxAccountNo")
     });
     this.xrLabel9.Dpi           = 100F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(174F, 57F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel9.StyleName     = "DataField";
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentYear")
     });
     this.xrLabel10.Dpi           = 100F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(174F, 81F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel10.StyleName     = "DataField";
     this.xrLabel10.Text          = "xrLabel10";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.TaxPayable")
     });
     this.xrLabel11.Dpi           = 100F;
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(174F, 105F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel11.StyleName     = "DataField";
     this.xrLabel11.Text          = "xrLabel11";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 3F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     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.Dpi           = 100F;
     this.BottomMargin.HeightF       = 12.8334F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // efDataSource1
     //
     efConnectionParameters1.ConnectionString     = "";
     efConnectionParameters1.ConnectionStringName = "TAAPsDBContext";
     efConnectionParameters1.Source          = typeof(TAAPs.Model.TAAPsDBContext);
     this.efDataSource1.ConnectionParameters = efConnectionParameters1;
     this.efDataSource1.Name     = "efDataSource1";
     efStoredProcedureInfo1.Name = "ITaxAccountSummary";
     efParameter1.Name           = "TaxAccountNo";
     efParameter1.Type           = typeof(int);
     efParameter1.ValueInfo      = "0";
     efStoredProcedureInfo1.Parameters.AddRange(new DevExpress.DataAccess.EntityFramework.EFParameter[] {
         efParameter1
     });
     this.efDataSource1.StoredProcedures.AddRange(new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo[] {
         efStoredProcedureInfo1
     });
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi           = 100F;
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel13
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 51F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel13
     //
     this.xrLabel13.Dpi           = 100F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(638F, 33F);
     this.xrLabel13.StyleName     = "Title";
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text          = "Taxpayer Assessment Detail";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.Title.ForeColor   = System.Drawing.Color.Maroon;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Maroon;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 12F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // AssessmentId
     //
     this.AssessmentId.Name      = "AssessmentId";
     this.AssessmentId.Type      = typeof(int);
     this.AssessmentId.ValueInfo = "0";
     //
     // IAssessmentSummary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.efDataSource1
     });
     this.DataMember  = "IAssessments";
     this.DataSource  = this.efDataSource1;
     this.DisplayName = "Individual Asessments";
     this.Margins     = new System.Drawing.Printing.Margins(46, 140, 50, 13);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.AssessmentId
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 33
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_DienBienLuong.resx";

        this.Detail             = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_sttt           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaysinh       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_soquyetdinh    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tenquyetdinh   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_hesoluong      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_luongcung      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_luongdongbh    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_bacluong       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngayhuongluong = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_bacluongnb     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngayhieuluc    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_loailuong      = 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.xrTableCell4       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = 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.xrTableCell3       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12      = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader       = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrl_ngayBC         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenCongTy      = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter       = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_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();
        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.xrTableCell27      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_hoten          = 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(1044.958F, 25F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_sttt,
            this.xrt_ngaysinh,
            this.xrt_soquyetdinh,
            this.xrt_tenquyetdinh,
            this.xrt_hesoluong,
            this.xrt_luongcung,
            this.xrt_luongdongbh,
            this.xrt_bacluong,
            this.xrt_ngayhuongluong,
            this.xrt_bacluongnb,
            this.xrt_ngayhieuluc,
            this.xrt_loailuong
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_sttt
        //
        this.xrt_sttt.Name = "xrt_sttt";
        this.xrt_sttt.StylePriority.UseTextAlignment = false;
        this.xrt_sttt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_sttt.Weight        = 0.096422348839708683D;
        this.xrt_sttt.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // 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.29772031004158372D;
        //
        // xrt_soquyetdinh
        //
        this.xrt_soquyetdinh.Name = "xrt_soquyetdinh";
        this.xrt_soquyetdinh.StylePriority.UseTextAlignment = false;
        this.xrt_soquyetdinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_soquyetdinh.Weight        = 0.16410346722331887D;
        //
        // xrt_tenquyetdinh
        //
        this.xrt_tenquyetdinh.Name    = "xrt_tenquyetdinh";
        this.xrt_tenquyetdinh.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_tenquyetdinh.StylePriority.UsePadding       = false;
        this.xrt_tenquyetdinh.StylePriority.UseTextAlignment = false;
        this.xrt_tenquyetdinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_tenquyetdinh.Weight        = 0.3089426546152223D;
        //
        // xrt_hesoluong
        //
        this.xrt_hesoluong.Name = "xrt_hesoluong";
        this.xrt_hesoluong.StylePriority.UseTextAlignment = false;
        this.xrt_hesoluong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_hesoluong.Weight        = 0.14420970901672567D;
        //
        // xrt_luongcung
        //
        this.xrt_luongcung.Name    = "xrt_luongcung";
        this.xrt_luongcung.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_luongcung.StylePriority.UsePadding       = false;
        this.xrt_luongcung.StylePriority.UseTextAlignment = false;
        this.xrt_luongcung.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrt_luongcung.Weight        = 0.23227512636289852D;
        //
        // xrt_luongdongbh
        //
        this.xrt_luongdongbh.Name    = "xrt_luongdongbh";
        this.xrt_luongdongbh.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_luongdongbh.StylePriority.UsePadding       = false;
        this.xrt_luongdongbh.StylePriority.UseTextAlignment = false;
        this.xrt_luongdongbh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrt_luongdongbh.Weight        = 0.23549335356083839D;
        //
        // xrt_bacluong
        //
        this.xrt_bacluong.Name = "xrt_bacluong";
        this.xrt_bacluong.StylePriority.UseTextAlignment = false;
        this.xrt_bacluong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_bacluong.Weight        = 0.22185895392780353D;
        //
        // xrt_ngayhuongluong
        //
        this.xrt_ngayhuongluong.Name = "xrt_ngayhuongluong";
        this.xrt_ngayhuongluong.StylePriority.UseTextAlignment = false;
        this.xrt_ngayhuongluong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngayhuongluong.Weight        = 0.2404556582987083D;
        //
        // xrt_bacluongnb
        //
        this.xrt_bacluongnb.Name = "xrt_bacluongnb";
        this.xrt_bacluongnb.StylePriority.UseTextAlignment = false;
        this.xrt_bacluongnb.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_bacluongnb.Weight        = 0.24430087586777893D;
        //
        // xrt_ngayhieuluc
        //
        this.xrt_ngayhieuluc.Name = "xrt_ngayhieuluc";
        this.xrt_ngayhieuluc.StylePriority.UseTextAlignment = false;
        this.xrt_ngayhieuluc.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngayhieuluc.Weight        = 0.23162764593638557D;
        //
        // xrt_loailuong
        //
        this.xrt_loailuong.Name    = "xrt_loailuong";
        this.xrt_loailuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_loailuong.StylePriority.UsePadding       = false;
        this.xrt_loailuong.StylePriority.UseTextAlignment = false;
        this.xrt_loailuong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_loailuong.Weight        = 0.31808302202483268D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 49F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.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 = 39.58333F;
        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, 39.58333F);
        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.xrTableCell11,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell2,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            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;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Ngày sinh";
        this.xrTableCell5.Weight = 0.29772033491683875D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Số quyết định";
        this.xrTableCell1.Weight = 0.16410336319688731D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "Tên quyết định";
        this.xrTableCell11.Weight = 0.30894278980674544D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Hệ số lương";
        this.xrTableCell6.Weight = 0.14420946231063125D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Lương cứng";
        this.xrTableCell7.Weight = 0.23227528876659132D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Lương đóng BHXH";
        this.xrTableCell2.Weight = 0.23549304582685698D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Bậc lương";
        this.xrTableCell8.Weight = 0.2218589582992474D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name   = "xrTableCell9";
        this.xrTableCell9.Text   = "Ngày hưởng lương";
        this.xrTableCell9.Weight = 0.24045566738588023D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name   = "xrTableCell10";
        this.xrTableCell10.Text   = "Bậc lươngNB";
        this.xrTableCell10.Weight = 0.24430088222963034D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Ngày hiệu lực";
        this.xrTableCell3.Weight = 0.23162761907927038D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name   = "xrTableCell12";
        this.xrTableCell12.Text   = "Loại lương";
        this.xrTableCell12.Weight = 0.31808335868475951D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ngayBC,
            this.xrl_TenThanhPho,
            this.xrl_TitleBC,
            this.xrl_TenCongTy
        });
        this.ReportHeader.HeightF = 122F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_ngayBC
        //
        this.xrl_ngayBC.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_ngayBC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 85.50002F);
        this.xrl_ngayBC.Name                           = "xrl_ngayBC";
        this.xrl_ngayBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ngayBC.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
        this.xrl_ngayBC.StylePriority.UseFont          = false;
        this.xrl_ngayBC.StylePriority.UseTextAlignment = false;
        this.xrl_ngayBC.Text                           = "Từ ngày.... đến ngày......";
        this.xrl_ngayBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        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(499.3446F, 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_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(1044.958F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "DIỄN BIẾN LƯƠNG CỦA NHÂN VIÊN";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TenCongTy
        //
        this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 12F, 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(499.3446F, 37.5F);
        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;
        //
        // 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 = 207F;
        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(27.08333F, 148.9583F);
        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(238.6402F, 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(402.0833F, 148.9583F);
        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(245.7076F, 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(803.125F, 148.9583F);
        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(240.752F, 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(803.125F, 23.95833F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(241.8331F, 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(402.0833F, 48.95833F);
        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(247.7086F, 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(803.125F, 48.95833F);
        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(241.8334F, 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(27.08333F, 48.95833F);
        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(240.6412F, 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(955.3746F, 39.58333F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(89.58374F, 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 = 25F;
        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", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(1044.958F, 25F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell27,
            this.xrt_hoten
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell27
        //
        this.xrTableCell27.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell27.Name    = "xrTableCell27";
        this.xrTableCell27.StylePriority.UseBorders = false;
        this.xrTableCell27.Weight = 0.03370419540050508D;
        //
        // xrt_hoten
        //
        this.xrt_hoten.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_hoten.Name    = "xrt_hoten";
        this.xrt_hoten.StylePriority.UseBorders       = false;
        this.xrt_hoten.StylePriority.UseTextAlignment = false;
        this.xrt_hoten.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_hoten.Weight        = 2.7017889303152995D;
        //
        // rp_DienBienLuong
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.ReportHeader,
            this.ReportFooter,
            this.PageFooter,
            this.GroupHeader1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(11, 109, 49, 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.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Ejemplo n.º 34
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();
    }
Ejemplo 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()
 {
     //string resourceFileName = "RepVendasTaxasDiarias.resx";
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.ltaxa            = new DevExpress.XtraReports.UI.XRLabel();
     this.ldata            = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ltusuario        = new DevExpress.XtraReports.UI.XRLabel();
     this.ltempresa        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ltitulorelatorio = new DevExpress.XtraReports.UI.XRLabel();
     this.grupocabecalho   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel18        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.grupofiltros     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.lftaxa           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lcaminho         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.lfperiodo        = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.ltaxa,
         this.ldata
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 11.04167F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltaxa
     //
     this.ltaxa.Font          = new System.Drawing.Font("Calibri", 7F);
     this.ltaxa.ForeColor     = System.Drawing.Color.Black;
     this.ltaxa.LocationFloat = new DevExpress.Utils.PointFloat(84.63166F, 0F);
     this.ltaxa.Name          = "ltaxa";
     this.ltaxa.NullValueText = " ";
     this.ltaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltaxa.SizeF         = new System.Drawing.SizeF(202.5985F, 10F);
     this.ltaxa.StylePriority.UseBackColor     = false;
     this.ltaxa.StylePriority.UseFont          = false;
     this.ltaxa.StylePriority.UseTextAlignment = false;
     this.ltaxa.Text          = "ltaxa";
     this.ltaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.ltaxa.WordWrap      = false;
     //
     // ldata
     //
     this.ldata.Font          = new System.Drawing.Font("Calibri", 6.5F);
     this.ldata.ForeColor     = System.Drawing.Color.Black;
     this.ldata.LocationFloat = new DevExpress.Utils.PointFloat(0.0001518815F, 0F);
     this.ldata.Name          = "ldata";
     this.ldata.NullValueText = " ";
     this.ldata.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ldata.SizeF         = new System.Drawing.SizeF(84.63151F, 10F);
     this.ldata.StylePriority.UseBackColor = false;
     this.ldata.StylePriority.UseFont      = false;
     this.ldata.Text          = "ldata";
     this.ldata.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.ldata.WordWrap      = false;
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 48.81465F;
     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;
     //
     // ltusuario
     //
     this.ltusuario.BackColor     = System.Drawing.Color.White;
     this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
     this.ltusuario.StylePriority.UseBackColor     = false;
     this.ltusuario.StylePriority.UseFont          = false;
     this.ltusuario.StylePriority.UseTextAlignment = false;
     this.ltusuario.Text          = "ltusuario";
     this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltempresa
     //
     this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
     this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
     this.ltempresa.StylePriority.UseBackColor     = false;
     this.ltempresa.StylePriority.UseBorders       = false;
     this.ltempresa.StylePriority.UseFont          = false;
     this.ltempresa.StylePriority.UseForeColor     = false;
     this.ltempresa.StylePriority.UseTextAlignment = false;
     this.ltempresa.Text          = "ltempresa";
     this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
     this.xrPageInfo2.BorderWidth   = 0F;
     this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
     this.xrPageInfo2.StylePriority.UseBackColor     = false;
     this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 24.16428F;
     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.BackColor = System.Drawing.Color.LightGray;
     this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrPageInfo3,
         this.ltitulorelatorio,
         this.xrPageInfo2,
         this.ltempresa,
         this.ltusuario
     });
     this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
     this.PageHeader.HeightF = 76.04166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor = false;
     this.PageHeader.StylePriority.UseBorders   = false;
     this.PageHeader.StylePriority.UseFont      = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
     this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPictureBox1.BorderWidth     = 0F;
     this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
     this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
     this.xrPictureBox1.Name            = "xrPictureBox1";
     this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
     this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorderColor     = false;
     this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
     this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
     this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrPageInfo3.Format        = "Pág: {0}/{1}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
     this.xrPageInfo3.StylePriority.UseBackColor     = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltitulorelatorio
     //
     this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
     this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
     this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
     this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
     this.ltitulorelatorio.StylePriority.UseBackColor     = false;
     this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
     this.ltitulorelatorio.StylePriority.UseBorders       = false;
     this.ltitulorelatorio.StylePriority.UseFont          = false;
     this.ltitulorelatorio.StylePriority.UseForeColor     = false;
     this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
     this.ltitulorelatorio.Text          = "RELATÓRIO TAXAS DIÁRIAS";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // grupocabecalho
     //
     this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel26,
         this.xrLabel19
     });
     this.grupocabecalho.HeightF         = 13F;
     this.grupocabecalho.Name            = "grupocabecalho";
     this.grupocabecalho.RepeatEveryPage = true;
     //
     // xrLabel18
     //
     this.xrLabel18.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel18.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel18.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001554136F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(87.23003F, 13F);
     this.xrLabel18.StylePriority.UseBackColor     = false;
     this.xrLabel18.StylePriority.UseBorderColor   = false;
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseForeColor     = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Data";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel26.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel26.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel26.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel26.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(287.2302F, 0F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(761.7698F, 13F);
     this.xrLabel26.StylePriority.UseBackColor     = false;
     this.xrLabel26.StylePriority.UseBorderColor   = false;
     this.xrLabel26.StylePriority.UseBorders       = false;
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseForeColor     = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text          = "|";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel19.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel19.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel19.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(87.23018F, 0F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(200F, 13F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseBorderColor   = false;
     this.xrLabel19.StylePriority.UseBorders       = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseForeColor     = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Taxa Dia";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // grupofiltros
     //
     this.grupofiltros.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lfperiodo,
         this.xrLabel1,
         this.lftaxa,
         this.xrLabel4
     });
     this.grupofiltros.HeightF = 29.16667F;
     this.grupofiltros.Level   = 1;
     this.grupofiltros.Name    = "grupofiltros";
     //
     // lftaxa
     //
     this.lftaxa.LocationFloat = new DevExpress.Utils.PointFloat(82.23017F, 5.000007F);
     this.lftaxa.Name          = "lftaxa";
     this.lftaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lftaxa.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lftaxa.StylePriority.UseTextAlignment = false;
     this.lftaxa.Text          = "lftaxa";
     this.lftaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999998F, 5.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Taxa:";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcaminho
     });
     this.PageFooter.HeightF = 22.91667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // lcaminho
     //
     this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 4F);
     this.lcaminho.Name                  = "lcaminho";
     this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcaminho.SizeF                 = new System.Drawing.SizeF(322.9165F, 14F);
     this.lcaminho.StylePriority.UseFont = false;
     this.lcaminho.Text                  = "Gitano ->SGFin ->Vendas ->Relatório Taxas Diárias";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(594.5196F, 5.000051F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Período:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lfperiodo
     //
     this.lfperiodo.LocationFloat = new DevExpress.Utils.PointFloat(671.7498F, 5.000019F);
     this.lfperiodo.Name          = "lfperiodo";
     this.lfperiodo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lfperiodo.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lfperiodo.StylePriority.UseTextAlignment = false;
     this.lfperiodo.Text          = "lfperiodo";
     this.lfperiodo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // RepVendasTaxasDiarias
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.grupocabecalho,
         this.grupofiltros,
         this.PageFooter
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepVendasTaxasDiarias_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }