private void ShowGroupFooter(GroupHeaderBand header)
        {
            // finish group event
            OnStateChanged(header, EngineState.GroupFinished);

            // rollback to previous data row to print the header condition in the footer.
            DataBand       dataBand   = header.GroupDataBand;
            DataSourceBase dataSource = dataBand.DataSource;

            dataSource.Prior();

            GroupFooterBand footer = header.GroupFooter;

            if (footer != null)
            {
                footer.AbsRowNo++;
                footer.RowNo++;
            }
            RemoveReprint(footer);
            ShowBand(footer);
            RemoveReprint(header);

            // restore current row
            dataSource.Next();

            OutlineUp(header);
            if (header.KeepTogether)
            {
                EndKeep();
            }
            if (footer != null && footer.KeepWithData)
            {
                EndKeep();
            }
        }
Example #2
0
 void InitGroupSummaries(ASPxGridView aspxGridView1)
 {
     if (aspxGridView1.GroupSummary.Count > 0)
     {
         ReadOnlyCollection <GridViewDataColumn> groupedColumns = aspxGridView1.GetGroupedColumns();
         for (int i = groupedColumns.Count - 1; i >= 0; i--)
         {
             GroupFooterBand footerBand = new GroupFooterBand();
             footerBand.Height = bandHeight;
             report.Bands.Add(footerBand);
             footerBand.BackColor = Color.LightGray;
             foreach (ASPxSummaryItem item in aspxGridView1.GroupSummary)
             {
                 GridViewColumn col = aspxGridView1.Columns[item.FieldName];
                 if (col != null)
                 {
                     if (detailsInfo.Contains(col))
                     {
                         XRLabel label = new XRLabel();
                         label.LocationF = ((XRTableCell)detailsInfo[col]).LocationF;
                         label.SizeF     = ((XRTableCell)detailsInfo[col]).SizeF;
                         label.DataBindings.Add("Text", null, ((GridViewDataColumn)col).FieldName);
                         label.Summary = new XRSummary()
                         {
                             Running = SummaryRunning.Group
                         };
                         label.Summary.FormatString = item.DisplayFormat;
                         label.Summary.Func         = GetSummaryFunc(item.SummaryType);
                         footerBand.Controls.Add(label);
                     }
                 }
             }
         }
     }
 }
        private void LoadReportFooterInDetailReport(List <string> bands, GroupHeaderBand header)
        {
            if (header == null)
            {
                return;
            }
            string detailName = bands.Where(x => IsTypeOfBand(x, REPORT_FOOTER_BAND_MASK)).FirstOrDefault();

            if (String.IsNullOrEmpty(detailName))
            {
                return;
            }
            // Load one more report header as GroupHeader, 'cause FR don't support more than one ReportTitle band

            GroupFooterBand groupFooter = new GroupFooterBand();

            header.GroupFooter = groupFooter;


            string detailDescription = GetObjectDescription(detailName);

            LoadBand(groupFooter, detailDescription);
            LoadObjects(detailDescription, groupFooter);
            bands.Remove(detailName);
        }
Example #4
0
        private void ReadGroupFooterBand(XtraReportBase xtraReport, GroupFooterBand xtraBand, StiPage page)
        {
            StiGroupFooterBand band = new StiGroupFooterBand();

            page.Components.Add(band);

            ReadBand(xtraBand, band);
        }
Example #5
0
        /// <summary>
        /// Creates a GroupFooterBand instance in the cpecified ReportPage.
        /// </summary>
        /// <param name="page">The ReportPage instance.</param>
        /// <returns>The GroupFooterBand instance.</returns>
        public static GroupFooterBand CreateGroupFooterBand(ReportPage page)
        {
            GroupFooterBand groupFooter = new GroupFooterBand();

            page.Bands.Add(groupFooter);
            groupFooter.CreateUniqueName();
            return(groupFooter);
        }
Example #6
0
        private void LoadDetailReportGroupFooter(XmlNode footerNode, GroupHeaderBand header)
        {
            if (footerNode == null || header == null)
            {
                return;
            }

            GroupFooterBand footer = new GroupFooterBand();

            header.GroupFooter = footer;
            LoadBand(footerNode, footer);
            LoadObjects(footerNode, footer);
        }
        public static GroupFooterBand AddGroupFooterBand(this XtraReportBase report)
        {
            var result = new GroupFooterBand
            {
                KeepTogether    = true,
                HeightF         = 0F,
                GroupUnion      = GroupFooterUnion.WithLastDetail,
                RepeatEveryPage = false,
                Level           = report.Bands.OfType <GroupFooterBand>().Count(),
            };

            report.Bands.Add(result);
            return(result);
        }
Example #8
0
        protected virtual GroupFooterBand CreateContainerBand()
        {
            var result = new GroupFooterBand
            {
                KeepTogether    = true,
                HeightF         = 0F,
                GroupUnion      = GroupFooterUnion.WithLastDetail,
                RepeatEveryPage = false,
                Level           = this.Report.Bands.OfType <GroupFooterBand>().Count(),
            };

            this.Report.Bands.Add(result);

            return(result);
        }
        private void LoadDetailReportGroupFooterBand(GroupHeaderBand groupHeader, string bandName)
        {
            if (groupHeader == null || String.IsNullOrEmpty(bandName))
            {
                return;
            }
            GroupFooterBand groupFooter = new GroupFooterBand();

            groupHeader.GroupFooter = groupFooter;

            string detailDescription = GetObjectDescription(bandName);

            LoadBand(groupFooter, detailDescription);
            LoadObjects(detailDescription, groupFooter);
        }
        private void LoadGroupFooterBand(GroupHeaderBand header)
        {
            if (header == null)
            {
                return;
            }

            string name = FindReportOutsideBandName(GROUP_FOOTER_BAND_MASK);

            if (!String.IsNullOrEmpty(name))
            {
                GroupFooterBand groupFooter = new GroupFooterBand();
                header.GroupFooter = groupFooter;
                string Description = GetObjectDescription(name);
                LoadBand(groupFooter, Description);
                LoadObjects(Description, groupFooter);
            }
        }
Example #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Name = "Detail";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Name = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // Pharmacy_Purchase_Return
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.Font    = new System.Drawing.Font("Arial", 9.75F);
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        private void ShowGroupHeader(GroupHeaderBand header)
        {
            header.AbsRowNo++;
            header.RowNo++;

            if (header.ResetPageNumber && (header.FirstRowStartsNewPage || header.RowNo > 1))
            {
                ResetLogicalPageNumber();
            }
            if (header.KeepTogether)
            {
                StartKeep(header);
            }
            if (header.KeepWithData)
            {
                StartKeep(header.GroupDataBand);
            }

            // start group event
            OnStateChanged(header, EngineState.GroupStarted);

            ShowBand(header);
            if (header.RepeatOnEveryPage)
            {
                AddReprint(header);
            }

            GroupFooterBand footer = header.GroupFooter;

            if (footer != null)
            {
                if (footer.RepeatOnEveryPage)
                {
                    AddReprint(footer);
                }
            }
        }
Example #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.UI.XRSummary            xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     System.ComponentModel.ComponentResourceManager resources  = new System.ComponentModel.ComponentResourceManager(typeof(rptSoldProducts));
     this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbTDT         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbPNM         = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbSVL         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbQTY         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9  = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbAMT         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow6   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbPID         = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLine1       = new DevExpress.XtraReports.UI.XRLine();
     this.lbTTL         = 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.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbSDT         = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter1  = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable4      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbSTT         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrTable5      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbGTT         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.Detail.HeightF       = 42.70833F;
     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.None;
     this.xrTable3.Font          = new System.Drawing.Font("Tahoma", 9.75F);
     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.xrTableRow6
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(677F, 42F);
     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.xrTableCell7,
         this.lbTDT,
         this.xrTableCell13,
         this.lbPNM,
         this.lbSVL,
         this.xrTableCell8,
         this.lbQTY,
         this.xrTableCell9,
         this.lbAMT,
         this.xrTableCell10
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Weight = 0.230797487231316D;
     //
     // lbTDT
     //
     this.lbTDT.Name    = "lbTDT";
     xrSummary1.Func    = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.lbTDT.Summary = xrSummary1;
     this.lbTDT.Text    = "Date";
     this.lbTDT.Weight  = 0.212333958727278D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Weight = 0.0478210902081311D;
     //
     // lbPNM
     //
     this.lbPNM.Name = "lbPNM";
     this.lbPNM.StylePriority.UseTextAlignment = false;
     this.lbPNM.Text          = "Description";
     this.lbPNM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lbPNM.Weight        = 1.17802344493817D;
     //
     // lbSVL
     //
     this.lbSVL.Name = "lbSVL";
     this.lbSVL.StylePriority.UseTextAlignment = false;
     this.lbSVL.Text          = "Debit";
     this.lbSVL.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbSVL.Weight        = 0.419091077975699D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Weight = 0.0443131361890639D;
     //
     // lbQTY
     //
     this.lbQTY.Name = "lbQTY";
     this.lbQTY.StylePriority.UseTextAlignment = false;
     this.lbQTY.Text          = "Credit";
     this.lbQTY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbQTY.Weight        = 0.299875625998829D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell9.Name    = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders = false;
     this.xrTableCell9.Weight = 0.035450501560092D;
     //
     // lbAMT
     //
     this.lbAMT.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.lbAMT.Name    = "lbAMT";
     this.lbAMT.StylePriority.UseBorders       = false;
     this.lbAMT.StylePriority.UseTextAlignment = false;
     this.lbAMT.Text          = "Balance";
     this.lbAMT.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbAMT.Weight        = 0.479117757019885D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell10.Name    = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.Weight = 0.0531758391844389D;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.lbPID
     });
     this.xrTableRow6.Font = new System.Drawing.Font("Tahoma", 8F);
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.StylePriority.UseFont = false;
     this.xrTableRow6.Weight = 0.68D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Weight = 0.490952536166725D;
     //
     // lbPID
     //
     this.lbPID.Name = "lbPID";
     this.lbPID.StylePriority.UseTextAlignment = false;
     this.lbPID.Text          = "lbPID";
     this.lbPID.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lbPID.Weight        = 2.50904738286618D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 75F;
     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       = 75F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel1,
         this.xrLabel5,
         this.xrPictureBox1,
         this.xrLine1,
         this.lbTTL
     });
     this.ReportHeader.HeightF = 134.0001F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(99.99994F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(577.0001F, 29F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "SKYNET COMPUTERS";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(99.99994F, 56.00006F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(577F, 28.00003F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Aizawl 796007, Mizoram";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(99.99994F, 29F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(577.0001F, 27.00008F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Chanmari (P & Sons Building)";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(99.99994F, 84.00011F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(577F, 24.99999F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Phone - 9862310857";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox1
     //
     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(100F, 109.0001F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 132.0001F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(677F, 2F);
     //
     // lbTTL
     //
     this.lbTTL.Font                           = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.lbTTL.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 109.0001F);
     this.lbTTL.Name                           = "lbTTL";
     this.lbTTL.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbTTL.SizeF                          = new System.Drawing.SizeF(677F, 23F);
     this.lbTTL.StylePriority.UseFont          = false;
     this.lbTTL.StylePriority.UseTextAlignment = false;
     this.lbTTL.Text                           = "Sold Products";
     this.lbTTL.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.Bottom;
     this.xrTable1.Font          = new System.Drawing.Font("Tahoma", 9.75F, 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(677F, 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.xrTableCell14,
         this.xrTableCell4,
         this.xrTableCell6,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Weight = 0.216152894992886D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Sl.No";
     this.xrTableCell4.Weight = 0.198860942747499D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Product Name";
     this.xrTableCell6.Weight = 1.14806220242848D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Rate";
     this.xrTableCell2.Weight = 0.434000395666048D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Quantity";
     this.xrTableCell5.Weight = 0.314049012091859D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Amount";
     this.xrTableCell3.Weight = 0.498518241025347D;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable2
     //
     this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
     this.xrTable2.Borders         = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTable2.LocationFloat   = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name            = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(677F, 25F);
     this.xrTable2.StylePriority.UseBorderDashStyle = false;
     this.xrTable2.StylePriority.UseBorders         = false;
     this.xrTable2.StylePriority.UseTextAlignment   = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.lbSDT
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont = false;
     this.xrTableCell1.Text   = "Date:";
     this.xrTableCell1.Weight = 1D;
     //
     // lbSDT
     //
     this.lbSDT.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.lbSDT.Name = "lbSDT";
     this.lbSDT.StylePriority.UseFont = false;
     this.lbSDT.Text   = "lbSDT";
     this.lbSDT.Weight = 5.77D;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4
     });
     this.GroupFooter1.HeightF = 25F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrTable4
     //
     this.xrTable4.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(677.0001F, 25F);
     this.xrTable4.StylePriority.UseBorders       = 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.xrTableCell11,
         this.lbSTT,
         this.xrTableCell21
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "SUB-TOTAL : ";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.Weight        = 0.42477333134247D;
     //
     // lbSTT
     //
     this.lbSTT.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.lbSTT.Name    = "lbSTT";
     this.lbSTT.StylePriority.UseBorders       = false;
     this.lbSTT.StylePriority.UseTextAlignment = false;
     this.lbSTT.Text          = "Balance";
     this.lbSTT.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbSTT.Weight        = 0.0839973551596344D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell21.Name    = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseBorders = false;
     this.xrTableCell21.Weight = 0.00762786528675917D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable5
     });
     this.ReportFooter.HeightF = 25F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrTable5
     //
     this.xrTable5.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTable5.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable5.Name          = "xrTable5";
     this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5
     });
     this.xrTable5.SizeF = new System.Drawing.SizeF(677.0001F, 25F);
     this.xrTable5.StylePriority.UseBorders       = false;
     this.xrTable5.StylePriority.UseFont          = false;
     this.xrTable5.StylePriority.UseTextAlignment = false;
     this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.lbGTT,
         this.xrTableCell15
     });
     this.xrTableRow5.Name   = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "GRAND-TOTAL : ";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight        = 0.42477333134247D;
     //
     // lbGTT
     //
     this.lbGTT.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.lbGTT.Name    = "lbGTT";
     this.lbGTT.StylePriority.UseBorders       = false;
     this.lbGTT.StylePriority.UseTextAlignment = false;
     this.lbGTT.Text          = "Balance";
     this.lbGTT.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbGTT.Weight        = 0.0839973551596344D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTableCell15.Name    = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseBorders = false;
     this.xrTableCell15.Weight = 0.00762786528675917D;
     //
     // rptSoldProducts
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader,
         this.GroupHeader1,
         this.GroupFooter1,
         this.ReportFooter
     });
     this.DisplayName = "Sold Products";
     this.Font        = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins     = new System.Drawing.Printing.Margins(75, 75, 75, 75);
     this.PageHeight  = 1169;
     this.PageWidth   = 827;
     this.PaperKind   = System.Drawing.Printing.PaperKind.A4;
     this.Version     = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 public static GroupFooterHelper AddGroupFooter(this GroupFooterBand band)
 {
     return(new GroupFooterHelper(band));
 }
    /// <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();
    }
        private void button1_Click(object sender, EventArgs e)
        {
            // Create a report, and specify its data source.
            XtraReport   report = new XtraReport();
            nwindDataSet ds     = new nwindDataSet();

            new nwindDataSetTableAdapters.CategoryProductsTableAdapter().Fill(ds.CategoryProducts);
            report.DataSource = ds;
            report.DataMember = "CategoryProducts";

            // Add a detail band and define its contents.
            DetailBand detailBand = new DetailBand();

            detailBand.Height = 100;
            report.Bands.Add(detailBand);

            XRLabel detailLabel = new XRLabel();

            detailLabel.DataBindings.Add("Text", report.DataSource, "ProductName");
            detailLabel.Width = 200;
            detailBand.Controls.Add(detailLabel);

            // Add a group header band and define its contents.
            GroupHeaderBand ghBand = new GroupHeaderBand();

            ghBand.Height = 20;
            report.Bands.Add(ghBand);

            XRLabel ghLabel = new XRLabel();

            ghLabel.DataBindings.Add("Text", report.DataSource, "CategoryName");
            ghLabel.Width     = 200;
            ghLabel.BackColor = Color.LightBlue;
            ghBand.Controls.Add(ghLabel);

            // Define a grouping criteria for the group header band.
            GroupField groupField = new GroupField();

            groupField.FieldName = "CategoryName";
            ghBand.GroupFields.Add(groupField);

            // Create a group footer band.
            GroupFooterBand gfBand = new GroupFooterBand();

            gfBand.Height = 20;
            // You can force the group header to be repeated on each page.
            gfBand.RepeatEveryPage = true;
            // It's important to set its Band.PageBreak property to AfterBand,
            // because the page numbers are displayed for the last group on a page.
            // So, if there are two distinct groups appearing on the same page,
            // this will result in improper page numbering.
            gfBand.PageBreak = PageBreak.AfterBand;
            report.Bands.Add(gfBand);

            // Create an instance of the XRPageInfo control.
            XRPageInfo pageInfo = new XRPageInfo();

            // Set the group header band as the running band for this control.
            pageInfo.RunningBand = ghBand;
            // Adjust other properties of XRPageInfo.
            pageInfo.Width     = 200;
            pageInfo.BackColor = Color.LightBlue;
            pageInfo.PageInfo  = PageInfo.NumberOfTotal;
            pageInfo.Format    = "Pages in this Group: {0} of {1}";
            gfBand.Controls.Add(pageInfo);

            // Show the report's print preview.
            report.ShowPreview();
        }
Example #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     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();
 }
Example #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.dtlGovBusiness    = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.dtlGovAccre       = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel70         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupFooter2      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail4           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel35         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36         = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport4     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail5           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable7          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow7       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell19     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21     = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter3      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 10F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 30F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.Font    = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.Detail.HeightF = 288F;
     this.Detail.Name    = "Detail";
     this.Detail.StylePriority.UseFont          = false;
     this.Detail.StylePriority.UseTextAlignment = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Upper([Transactions].[Permitees].[FullName])")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 249F);
     this.xrLabel2.Multiline                      = true;
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(375F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateCreated]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(33.00002F, 189F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(226.375F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Date";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel1.TextFormatString               = "{0:MMMM dd, yyyy}";
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.dtlGovBusiness,
         this.dtlGovAccre,
         this.DetailReport3,
         this.DetailReport4
     });
     this.DetailReport.DataMember = "BillingStatementViewModels";
     this.DetailReport.DataSource = this.objectDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Expanded = false;
     this.Detail1.HeightF  = 0F;
     this.Detail1.Name     = "Detail1";
     //
     // dtlGovBusiness
     //
     this.dtlGovBusiness.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.GroupFooter2
     });
     this.dtlGovBusiness.DataMember = "BillingStatementViewModels.GovernorsBusinessPermitFee";
     this.dtlGovBusiness.DataSource = this.objectDataSource1;
     this.dtlGovBusiness.Level      = 0;
     this.dtlGovBusiness.Name       = "dtlGovBusiness";
     //
     // Detail2
     //
     this.Detail2.HeightF = 0F;
     this.Detail2.Name    = "Detail2";
     //
     // dtlGovAccre
     //
     this.dtlGovAccre.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3,
         this.GroupFooter1
     });
     this.dtlGovAccre.DataMember = "BillingStatementViewModels.GovernorsAccreditationFees";
     this.dtlGovAccre.DataSource = this.objectDataSource1;
     this.dtlGovAccre.Level      = 1;
     this.dtlGovAccre.Name       = "dtlGovAccre";
     //
     // Detail3
     //
     this.Detail3.HeightF = 0F;
     this.Detail3.Name    = "Detail3";
     //
     // xrLabel70
     //
     this.xrLabel70.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel70.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([TotalCost]),0.0 )")
     });
     this.xrLabel70.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel70.LocationFloat                  = new DevExpress.Utils.PointFloat(268.0835F, 0F);
     this.xrLabel70.Multiline                      = true;
     this.xrLabel70.Name                           = "xrLabel70";
     this.xrLabel70.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel70.SizeF                          = new System.Drawing.SizeF(106.9165F, 18F);
     this.xrLabel70.StylePriority.UseBorders       = false;
     this.xrLabel70.StylePriority.UseFont          = false;
     this.xrLabel70.StylePriority.UseTextAlignment = false;
     this.xrLabel70.Text                           = "xrLabel2";
     this.xrLabel70.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrLabel70.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(31.70849F, 0F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(227.6665F, 18F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Governor\'s Accreditation Fees";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel70
     });
     this.GroupFooter1.HeightF = 21F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel7
     });
     this.GroupFooter2.HeightF = 37F;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([TotalCost]),0.0 )")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(268.0835F, 19F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(106.9165F, 18F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel2";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrLabel6.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel7
     //
     this.xrLabel7.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(33.00002F, 18.99999F);
     this.xrLabel7.Multiline             = true;
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(235.0835F, 18F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = "Governor\'s Business Permit Fees";
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail4
     });
     this.DetailReport3.Level = 2;
     this.DetailReport3.Name  = "DetailReport3";
     //
     // Detail4
     //
     this.Detail4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel35,
         this.xrLabel34,
         this.xrLabel33,
         this.xrLabel36
     });
     this.Detail4.HeightF = 31.00012F;
     this.Detail4.Name    = "Detail4";
     //
     // xrLabel35
     //
     this.xrLabel35.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel35.LocationFloat                  = new DevExpress.Utils.PointFloat(32.55285F, 18.00012F);
     this.xrLabel35.Multiline                      = true;
     this.xrLabel35.Name                           = "xrLabel35";
     this.xrLabel35.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel35.ProcessNullValues              = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
     this.xrLabel35.SizeF                          = new System.Drawing.SizeF(226.8222F, 13F);
     this.xrLabel35.StylePriority.UseFont          = false;
     this.xrLabel35.StylePriority.UsePadding       = false;
     this.xrLabel35.StylePriority.UseTextAlignment = false;
     this.xrLabel35.Text                           = "Interest(2%)";
     this.xrLabel35.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel34
     //
     this.xrLabel34.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel34.LocationFloat                  = new DevExpress.Utils.PointFloat(31.70849F, 0F);
     this.xrLabel34.Multiline                      = true;
     this.xrLabel34.Name                           = "xrLabel34";
     this.xrLabel34.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel34.SizeF                          = new System.Drawing.SizeF(227.6665F, 13F);
     this.xrLabel34.StylePriority.UseFont          = false;
     this.xrLabel34.StylePriority.UsePadding       = false;
     this.xrLabel34.StylePriority.UseTextAlignment = false;
     this.xrLabel34.Text                           = "Surcharge(25%)";
     this.xrLabel34.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrLabel33
     //
     this.xrLabel33.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull(Sum([[Transactions].[Surcharge]),0.0 )")
     });
     this.xrLabel33.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel33.LocationFloat                  = new DevExpress.Utils.PointFloat(259.375F, 0F);
     this.xrLabel33.Multiline                      = true;
     this.xrLabel33.Name                           = "xrLabel33";
     this.xrLabel33.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel33.SizeF                          = new System.Drawing.SizeF(115.625F, 13F);
     this.xrLabel33.StylePriority.UseFont          = false;
     this.xrLabel33.StylePriority.UsePadding       = false;
     this.xrLabel33.StylePriority.UseTextAlignment = false;
     this.xrLabel33.Text                           = "xrLabel33";
     this.xrLabel33.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel33.TextFormatString               = "{0:0,0.00}";
     //
     // xrLabel36
     //
     this.xrLabel36.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "IsNull([Transactions].[Interest],0.0)")
     });
     this.xrLabel36.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel36.LocationFloat                  = new DevExpress.Utils.PointFloat(260.2194F, 18.00004F);
     this.xrLabel36.Multiline                      = true;
     this.xrLabel36.Name                           = "xrLabel36";
     this.xrLabel36.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel36.SizeF                          = new System.Drawing.SizeF(114.7806F, 13F);
     this.xrLabel36.StylePriority.UseFont          = false;
     this.xrLabel36.StylePriority.UsePadding       = false;
     this.xrLabel36.StylePriority.UseTextAlignment = false;
     this.xrLabel36.Text                           = "xrLabel36";
     this.xrLabel36.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel36.TextFormatString               = "{0:0,0.00}";
     //
     // DetailReport4
     //
     this.DetailReport4.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail5
     });
     this.DetailReport4.DataMember = "BillingStatementViewModels.TransactionPenalties";
     this.DetailReport4.DataSource = this.objectDataSource1;
     this.DetailReport4.Level      = 3;
     this.DetailReport4.Name       = "DetailReport4";
     //
     // Detail5
     //
     this.Detail5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable7
     });
     this.Detail5.HeightF = 15F;
     this.Detail5.Name    = "Detail5";
     //
     // xrTable7
     //
     this.xrTable7.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(33.00002F, 0F);
     this.xrTable7.Name          = "xrTable7";
     this.xrTable7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7
     });
     this.xrTable7.SizeF = new System.Drawing.SizeF(342F, 15F);
     this.xrTable7.StylePriority.UseFont          = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow7
     //
     this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell19,
         this.xrTableCell21
     });
     this.xrTableRow7.Name   = "xrTableRow7";
     this.xrTableRow7.Weight = 0.6D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Penalty]")
     });
     this.xrTableCell19.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrTableCell19.Multiline             = true;
     this.xrTableCell19.Name                  = "xrTableCell19";
     this.xrTableCell19.StylePriority.UseFont = false;
     this.xrTableCell19.Text                  = "xrTableCell3";
     this.xrTableCell19.Weight                = 1.0081381003061927D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PenaltyAmount]")
     });
     this.xrTableCell21.Font                           = new System.Drawing.Font("Calibri", 8F);
     this.xrTableCell21.Multiline                      = true;
     this.xrTableCell21.Name                           = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseFont          = false;
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text                           = "xrTableCell4";
     this.xrTableCell21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell21.Weight                         = 1.1508580372459112D;
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel3
     });
     this.GroupFooter3.HeightF = 171.2726F;
     this.GroupFooter3.Name    = "GroupFooter3";
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel3.BorderWidth     = 2F;
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Amount]")
     });
     this.xrLabel3.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(246.875F, 35.97107F);
     this.xrLabel3.Multiline     = true;
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(128.125F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseBorderWidth     = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.BorderWidth     = 2F;
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AmountInWord]")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 9F);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(31.70849F, 148.2726F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(342F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseBorderWidth     = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel3";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Models.Billings);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // rptOfficialReceipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport,
         this.GroupFooter3
     });
     this.BookmarkDuplicateSuppress = false;
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource    = this.objectDataSource1;
     this.Font          = new System.Drawing.Font("Arial", 9.75F);
     this.Margins       = new System.Drawing.Printing.Margins(15, 20, 10, 30);
     this.PageWidth     = 410;
     this.PaperKind     = System.Drawing.Printing.PaperKind.Custom;
     this.ScriptsSource = "\r\n";
     this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.Version       = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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();
 }
Example #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 = "ActMainReport.resx";
         this.components = new System.ComponentModel.Container();
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.tblActHeader = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.hdrTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.tblGroupDate = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.tblActHeader1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailDocuments = new DevExpress.XtraReports.UI.DetailBand();
         this.tblDocument = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.tblActSummary = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cfOnDate = new DevExpress.XtraReports.UI.CalculatedField();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.BackColor = System.Drawing.Color.Thistle;
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblActs.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActs.StylePriority.UseBackColor = false;
         this.tblActs.StylePriority.UseBorders = false;
         this.tblActs.StylePriority.UseTextAlignment = false;
         this.tblActs.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.cellTotalCost,
         this.cellPaidOn,
         this.cellLeftOn,
         this.cellApproval1,
         this.cellKailasPaid1,
         this.cellKailasDue,
         this.cellPaidDue,
         this.cellApproval2,
         this.cellKailasPaid2,
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell5});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.Weight = 0.33707868689518711D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.Weight = 0.22471907062271032D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.Weight = 0.22471913729657511D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseFont = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.Weight = 0.37453185898241342D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell8.Weight = 0.13108616421673858D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell9.Weight = 0.074906378701990128D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.074906375725478314D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.13108615379894739D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.14981274624206087D;
         //
         // cellTotalCost
         //
         this.cellTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost", "{0:#.00}")});
         this.cellTotalCost.Name = "cellTotalCost";
         this.cellTotalCost.StylePriority.UseTextAlignment = false;
         this.cellTotalCost.Tag = "TotalCost";
         this.cellTotalCost.Text = "cellTotalCost";
         this.cellTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellTotalCost.Weight = 0.093632966308272114D;
         //
         // cellPaidOn
         //
         this.cellPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn", "{0:#.00}")});
         this.cellPaidOn.Name = "cellPaidOn";
         this.cellPaidOn.StylePriority.UseTextAlignment = false;
         this.cellPaidOn.Tag = "PaidOn";
         this.cellPaidOn.Text = "cellPaidOn";
         this.cellPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidOn.Weight = 0.093632966122240036D;
         //
         // cellLeftOn
         //
         this.cellLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn", "{0:#.00}")});
         this.cellLeftOn.Name = "cellLeftOn";
         this.cellLeftOn.StylePriority.UseTextAlignment = false;
         this.cellLeftOn.Tag = "LeftOn";
         this.cellLeftOn.Text = "cellLeftOn";
         this.cellLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellLeftOn.Weight = 0.093632966029224107D;
         //
         // cellApproval1
         //
         this.cellApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1", "{0:#.00}")});
         this.cellApproval1.Name = "cellApproval1";
         this.cellApproval1.StylePriority.UseTextAlignment = false;
         this.cellApproval1.Tag = "Approval1";
         this.cellApproval1.Text = "cellApproval1";
         this.cellApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval1.Weight = 0.093632965982716088D;
         //
         // cellKailasPaid1
         //
         this.cellKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1", "{0:#.00}")});
         this.cellKailasPaid1.Name = "cellKailasPaid1";
         this.cellKailasPaid1.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid1.Tag = "KailasPaid1";
         this.cellKailasPaid1.Text = "cellKailasPaid1";
         this.cellKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid1.Weight = 0.093632965959462189D;
         //
         // cellKailasDue
         //
         this.cellKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue", "{0:#.00}")});
         this.cellKailasDue.Name = "cellKailasDue";
         this.cellKailasDue.StylePriority.UseTextAlignment = false;
         this.cellKailasDue.Tag = "KailasDue";
         this.cellKailasDue.Text = "cellKailasDue";
         this.cellKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasDue.Weight = 0.093632965947835156D;
         //
         // cellPaidDue
         //
         this.cellPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue", "{0:#.00}")});
         this.cellPaidDue.Name = "cellPaidDue";
         this.cellPaidDue.StylePriority.UseTextAlignment = false;
         this.cellPaidDue.Tag = "PaidDue";
         this.cellPaidDue.Text = "cellPaidDue";
         this.cellPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidDue.Weight = 0.093632965942021584D;
         //
         // cellApproval2
         //
         this.cellApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2", "{0:#.00}")});
         this.cellApproval2.Name = "cellApproval2";
         this.cellApproval2.StylePriority.UseTextAlignment = false;
         this.cellApproval2.Tag = "Approval2";
         this.cellApproval2.Text = "cellApproval2";
         this.cellApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval2.Weight = 0.093632965939114854D;
         //
         // cellKailasPaid2
         //
         this.cellKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2", "{0:#.00}")});
         this.cellKailasPaid2.Name = "cellKailasPaid2";
         this.cellKailasPaid2.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid2.Tag = "KailasPaid2";
         this.cellKailasPaid2.Text = "cellKailasPaid2";
         this.cellKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid2.Weight = 0.093632965937661489D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryCalculated", "{0:#.00}")});
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Tag = "SalaryCalculated";
         this.xrTableCell22.Text = "cellSalaryCalculated";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell22.Weight = 0.093632961067487558D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryPaidDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseTextAlignment = false;
         this.xrTableCell23.Tag = "SalaryPaidDate";
         this.xrTableCell23.Text = "cellSalaryPaidDate";
         this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell23.Weight = 0.11235955169479248D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CalculatedMain", "{0:#.00}")});
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseTextAlignment = false;
         this.xrTableCell24.Tag = "CalculatedMain";
         this.xrTableCell24.Text = "cellCalculatedMain";
         this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell24.Weight = 0.093632959367995469D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidMainDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Tag = "PaidMainDate";
         this.xrTableCell5.Text = "cellPaidMainDate";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.13483126121907518D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 50F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActHeader});
         this.ReportHeader.HeightF = 75.00001F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // tblActHeader
         //
         this.tblActHeader.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader.Name = "tblActHeader";
         this.tblActHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.tblActHeader.SizeF = new System.Drawing.SizeF(1602F, 75.00001F);
         this.tblActHeader.StylePriority.UseBorders = false;
         this.tblActHeader.StylePriority.UseFont = false;
         this.tblActHeader.StylePriority.UseTextAlignment = false;
         this.tblActHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44,
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.hdrTotalCost,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56,
         this.xrTableCell57,
         this.xrTableCell58,
         this.xrTableCell59,
         this.xrTableCell60,
         this.xrTableCell61});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseBorders = false;
         this.xrTableCell40.Text = "Працівник";
         this.xrTableCell40.Weight = 0.33707868689518711D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.StylePriority.UseBorders = false;
         this.xrTableCell41.Text = "Населений пункт";
         this.xrTableCell41.Weight = 0.22471907062271032D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.StylePriority.UseBorders = false;
         this.xrTableCell42.Text = "Адреса";
         this.xrTableCell42.Weight = 0.22471913729657511D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseBorders = false;
         this.xrTableCell43.Text = "Замовник";
         this.xrTableCell43.Weight = 0.37453185898241342D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.StylePriority.UseBorders = false;
         this.xrTableCell44.StylePriority.UseTextAlignment = false;
         this.xrTableCell44.Text = "Телефон";
         this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell44.Weight = 0.13108616421673858D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "К-сть ділянок";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.074906378701990128D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.StylePriority.UseTextAlignment = false;
         this.xrTableCell46.Text = "К-сть актів";
         this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell46.Weight = 0.074906375725478314D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.StylePriority.UseTextAlignment = false;
         this.xrTableCell47.Text = "Категорія";
         this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell47.Weight = 0.13108615379894739D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Статус";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell48.Weight = 0.14981274624206087D;
         //
         // hdrTotalCost
         //
         this.hdrTotalCost.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.hdrTotalCost.Name = "hdrTotalCost";
         this.hdrTotalCost.StylePriority.UseBorders = false;
         this.hdrTotalCost.StylePriority.UseTextAlignment = false;
         this.hdrTotalCost.Tag = "TotalCost";
         this.hdrTotalCost.Text = "Загальна вартість робіт";
         this.hdrTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.hdrTotalCost.Weight = 0.093632966308272114D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.StylePriority.UseTextAlignment = false;
         this.xrTableCell50.Tag = "PaidOn";
         this.xrTableCell50.Text = "Аванс";
         this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell50.Weight = 0.093632966122240036D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.StylePriority.UseTextAlignment = false;
         this.xrTableCell51.Tag = "LeftOn";
         this.xrTableCell51.Text = "Залишено на місці";
         this.xrTableCell51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell51.Weight = 0.093632966029224107D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseTextAlignment = false;
         this.xrTableCell52.Tag = "Approval1";
         this.xrTableCell52.Text = "Погодження 1";
         this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell52.Weight = 0.093632965982716088D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.StylePriority.UseTextAlignment = false;
         this.xrTableCell53.Tag = "KailasPaid1";
         this.xrTableCell53.Text = "Оплачено на ПП Кайлас-К";
         this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell53.Weight = 0.093632965959462189D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.StylePriority.UseTextAlignment = false;
         this.xrTableCell54.Tag = "KailasDue";
         this.xrTableCell54.Text = "Заборгованість по ПП Кайлас-К";
         this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell54.Weight = 0.093632965947835156D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.StylePriority.UseTextAlignment = false;
         this.xrTableCell55.Tag = "PaidDue";
         this.xrTableCell55.Text = "Опл. заборгованість (після виїзду)";
         this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell55.Weight = 0.093632965942021584D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.StylePriority.UseTextAlignment = false;
         this.xrTableCell56.Tag = "Approval2";
         this.xrTableCell56.Text = "Погодження 2";
         this.xrTableCell56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell56.Weight = 0.093632965939114854D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.StylePriority.UseBorders = false;
         this.xrTableCell57.StylePriority.UseTextAlignment = false;
         this.xrTableCell57.Tag = "KailasPaid2";
         this.xrTableCell57.Text = "Оплачено на ПП Кайлас-К 2";
         this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell57.Weight = 0.093632965937661489D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.StylePriority.UseBorders = false;
         this.xrTableCell58.StylePriority.UseTextAlignment = false;
         this.xrTableCell58.Tag = "SalaryCalculated";
         this.xrTableCell58.Text = "Нараховано";
         this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell58.Weight = 0.093632961067487558D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.StylePriority.UseBorders = false;
         this.xrTableCell59.StylePriority.UseTextAlignment = false;
         this.xrTableCell59.Tag = "SalaryPaidDate";
         this.xrTableCell59.Text = "Оплочено";
         this.xrTableCell59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell59.Weight = 0.11235955169479248D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.StylePriority.UseBorders = false;
         this.xrTableCell60.StylePriority.UseTextAlignment = false;
         this.xrTableCell60.Tag = "CalculatedMain";
         this.xrTableCell60.Text = "Нараховано ХМЛ";
         this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell60.Weight = 0.093632959367995469D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseBorders = false;
         this.xrTableCell61.StylePriority.UseTextAlignment = false;
         this.xrTableCell61.Tag = "PaidMainDate";
         this.xrTableCell61.Text = "Оплочено ХМЛ";
         this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell61.Weight = 0.13483126121907518D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblGroupDate,
         this.tblActHeader1});
         this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("cfOnDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WholePage;
         this.GroupHeader1.HeightF = 30.5F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // tblGroupDate
         //
         this.tblGroupDate.BackColor = System.Drawing.Color.PapayaWhip;
         this.tblGroupDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblGroupDate.LocationFloat = new DevExpress.Utils.PointFloat(0F, 15.5F);
         this.tblGroupDate.Name = "tblGroupDate";
         this.tblGroupDate.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblGroupDate.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblGroupDate.StylePriority.UseBackColor = false;
         this.tblGroupDate.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Left;
         this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 0, 0, 0, 100F);
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseFont = false;
         this.xrTableCell1.StylePriority.UsePadding = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "Дата виїзду:";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell1.Weight = 0.056179775280898875D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Right;
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseFont = false;
         this.xrTableCell3.StylePriority.UsePadding = false;
         this.xrTableCell3.Weight = 0.9438202247191011D;
         //
         // tblActHeader1
         //
         this.tblActHeader1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader1.Name = "tblActHeader1";
         this.tblActHeader1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.tblActHeader1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActHeader1.StylePriority.UseBorders = false;
         this.tblActHeader1.StylePriority.UseFont = false;
         this.tblActHeader1.StylePriority.UseTextAlignment = false;
         this.tblActHeader1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell20,
         this.xrTableCell21,
         this.xrTableCell26,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30,
         this.xrTableCell31,
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "1";
         this.xrTableCell13.Weight = 0.33707868689518711D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "2";
         this.xrTableCell14.Weight = 0.22471907062271032D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Text = "3";
         this.xrTableCell15.Weight = 0.22471913729657511D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.Text = "4";
         this.xrTableCell16.Weight = 0.37453185898241342D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.StylePriority.UseTextAlignment = false;
         this.xrTableCell17.Text = "5";
         this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell17.Weight = 0.13108616421673858D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseBorders = false;
         this.xrTableCell18.StylePriority.UseTextAlignment = false;
         this.xrTableCell18.Text = "6";
         this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell18.Weight = 0.074906378701990128D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.StylePriority.UseTextAlignment = false;
         this.xrTableCell19.Text = "7";
         this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell19.Weight = 0.074906375725478314D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseBorders = false;
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "8";
         this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell20.Weight = 0.13108615379894739D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "9";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.14981274624206087D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseBorders = false;
         this.xrTableCell26.StylePriority.UseTextAlignment = false;
         this.xrTableCell26.Tag = "TotalCost";
         this.xrTableCell26.Text = "10";
         this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell26.Weight = 0.093632966308272114D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Tag = "PaidOn";
         this.xrTableCell28.Text = "11";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell28.Weight = 0.093632966122240036D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.Tag = "LeftOn";
         this.xrTableCell29.Text = "12";
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell29.Weight = 0.093632966029224107D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Tag = "Approval1";
         this.xrTableCell30.Text = "13";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell30.Weight = 0.093632965982716088D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Tag = "KailasPaid1";
         this.xrTableCell31.Text = "14";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell31.Weight = 0.093632965959462189D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Tag = "KailasDue";
         this.xrTableCell32.Text = "15";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.093632965947835156D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Tag = "PaidDue";
         this.xrTableCell33.Text = "16";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.093632965942021584D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Tag = "Approval2";
         this.xrTableCell34.Text = "17";
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell34.Weight = 0.093632965939114854D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Tag = "KailasPaid2";
         this.xrTableCell35.Text = "18";
         this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell35.Weight = 0.093632965937661489D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Tag = "SalaryCalculated";
         this.xrTableCell36.Text = "19";
         this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell36.Weight = 0.093632961067487558D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseBorders = false;
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Tag = "SalaryPaidDate";
         this.xrTableCell37.Text = "20";
         this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell37.Weight = 0.11235955169479248D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseBorders = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Tag = "CalculatedMain";
         this.xrTableCell38.Text = "21";
         this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell38.Weight = 0.093632959367995469D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.StylePriority.UseBorders = false;
         this.xrTableCell39.StylePriority.UseTextAlignment = false;
         this.xrTableCell39.Tag = "PaidMainDate";
         this.xrTableCell39.Text = "22";
         this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell39.Weight = 0.13483126121907518D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailDocuments,
         this.GroupHeader2,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Documents";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailDocuments
         //
         this.detailDocuments.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblDocument});
         this.detailDocuments.HeightF = 15F;
         this.detailDocuments.KeepTogether = true;
         this.detailDocuments.MultiColumn.ColumnSpacing = 10F;
         this.detailDocuments.MultiColumn.ColumnWidth = 400F;
         this.detailDocuments.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
         this.detailDocuments.Name = "detailDocuments";
         this.detailDocuments.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailDocuments_BeforePrint);
         //
         // tblDocument
         //
         this.tblDocument.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblDocument.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblDocument.Name = "tblDocument";
         this.tblDocument.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.tblDocument.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblDocument.StylePriority.UseBorders = false;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell62,
         this.xrTableCell64,
         this.xrTableCell65});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocumentName")});
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell62.StylePriority.UsePadding = false;
         this.xrTableCell62.Text = "xrTableCell62";
         this.xrTableCell62.Weight = 1.5D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocValue")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.StylePriority.UseTextAlignment = false;
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell64.Weight = 0.5D;
         //
         // xrTableCell65
         //
         this.xrTableCell65.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.Comment")});
         this.xrTableCell65.Name = "xrTableCell65";
         this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell65.StylePriority.UsePadding = false;
         this.xrTableCell65.StylePriority.UseTextAlignment = false;
         this.xrTableCell65.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell65.Weight = 6.01D;
         //
         // GroupHeader2
         //
         this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("GroupName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 15F;
         this.GroupHeader2.KeepTogether = true;
         this.GroupHeader2.Name = "GroupHeader2";
         this.GroupHeader2.RepeatEveryPage = true;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.xrTable1.StylePriority.UseBackColor = false;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell63});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.GroupName")});
         this.xrTableCell63.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.StylePriority.UseBorders = false;
         this.xrTableCell63.StylePriority.UseFont = false;
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 1D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.HeightF = 3F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // GroupFooter2
         //
         this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActSummary});
         this.GroupFooter2.HeightF = 15F;
         this.GroupFooter2.Name = "GroupFooter2";
         //
         // tblActSummary
         //
         this.tblActSummary.BackColor = System.Drawing.Color.PaleGoldenrod;
         this.tblActSummary.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActSummary.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActSummary.Name = "tblActSummary";
         this.tblActSummary.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.tblActSummary.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActSummary.StylePriority.UseBackColor = false;
         this.tblActSummary.StylePriority.UseBorders = false;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell25,
         this.sumTotalCost,
         this.sumPaidOn,
         this.sumLeftOn,
         this.sumApproval1,
         this.sumKailasPaid1,
         this.sumKailasDue,
         this.sumPaidDue,
         this.sumApproval2,
         this.sumKailasPaid2,
         this.xrTableCell27});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.StylePriority.UsePadding = false;
         this.xrTableCell49.StylePriority.UseTextAlignment = false;
         this.xrTableCell49.Text = "Всього за";
         this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell49.Weight = 1.5730338221632141D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseBorders = false;
         this.xrTableCell25.Weight = 0.14981261978435156D;
         //
         // sumTotalCost
         //
         this.sumTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost")});
         this.sumTotalCost.Name = "sumTotalCost";
         this.sumTotalCost.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:#.00}";
         xrSummary1.IgnoreNullValues = true;
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumTotalCost.Summary = xrSummary1;
         this.sumTotalCost.Tag = "TotalCost";
         this.sumTotalCost.Text = "sumTotalCost";
         this.sumTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumTotalCost.Weight = 0.093633073099543551D;
         //
         // sumPaidOn
         //
         this.sumPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn")});
         this.sumPaidOn.Name = "sumPaidOn";
         this.sumPaidOn.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:#.00}";
         xrSummary2.IgnoreNullValues = true;
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidOn.Summary = xrSummary2;
         this.sumPaidOn.Text = "sumPaidOn";
         this.sumPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidOn.Weight = 0.093632958801498078D;
         //
         // sumLeftOn
         //
         this.sumLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn")});
         this.sumLeftOn.Name = "sumLeftOn";
         this.sumLeftOn.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:#.00}";
         xrSummary3.IgnoreNullValues = true;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumLeftOn.Summary = xrSummary3;
         this.sumLeftOn.Tag = "PaidOn";
         this.sumLeftOn.Text = "sumLeftOn";
         this.sumLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumLeftOn.Weight = 0.0936330730995435D;
         //
         // sumApproval1
         //
         this.sumApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1")});
         this.sumApproval1.Name = "sumApproval1";
         this.sumApproval1.StylePriority.UseTextAlignment = false;
         xrSummary4.FormatString = "{0:#.00}";
         xrSummary4.IgnoreNullValues = true;
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval1.Summary = xrSummary4;
         this.sumApproval1.Tag = "Approval1";
         this.sumApproval1.Text = "sumApproval1";
         this.sumApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval1.Weight = 0.09363295880149819D;
         //
         // sumKailasPaid1
         //
         this.sumKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1")});
         this.sumKailasPaid1.Name = "sumKailasPaid1";
         this.sumKailasPaid1.StylePriority.UseTextAlignment = false;
         xrSummary5.FormatString = "{0:#.00}";
         xrSummary5.IgnoreNullValues = true;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid1.Summary = xrSummary5;
         this.sumKailasPaid1.Tag = "KailasPaid1";
         this.sumKailasPaid1.Text = "sumKailasPaid1";
         this.sumKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid1.Weight = 0.093633187397588968D;
         //
         // sumKailasDue
         //
         this.sumKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue")});
         this.sumKailasDue.Name = "sumKailasDue";
         this.sumKailasDue.StylePriority.UseTextAlignment = false;
         xrSummary6.FormatString = "{0:#.00}";
         xrSummary6.IgnoreNullValues = true;
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasDue.Summary = xrSummary6;
         this.sumKailasDue.Tag = "KailasDue";
         this.sumKailasDue.Text = "sumKailasDue";
         this.sumKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasDue.Weight = 0.093632730205407244D;
         //
         // sumPaidDue
         //
         this.sumPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue")});
         this.sumPaidDue.Name = "sumPaidDue";
         this.sumPaidDue.StylePriority.UseTextAlignment = false;
         xrSummary7.FormatString = "{0:#.00}";
         xrSummary7.IgnoreNullValues = true;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidDue.Summary = xrSummary7;
         this.sumPaidDue.Tag = "PaidDue";
         this.sumPaidDue.Text = "sumPaidDue";
         this.sumPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidDue.Weight = 0.093633187397588913D;
         //
         // sumApproval2
         //
         this.sumApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2")});
         this.sumApproval2.Name = "sumApproval2";
         this.sumApproval2.StylePriority.UseTextAlignment = false;
         xrSummary8.FormatString = "{0:#.00}";
         xrSummary8.IgnoreNullValues = true;
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval2.Summary = xrSummary8;
         this.sumApproval2.Tag = "Approval2";
         this.sumApproval2.Text = "sumApproval2";
         this.sumApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval2.Weight = 0.093632730205407272D;
         //
         // sumKailasPaid2
         //
         this.sumKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2")});
         this.sumKailasPaid2.Name = "sumKailasPaid2";
         this.sumKailasPaid2.StylePriority.UseTextAlignment = false;
         xrSummary9.FormatString = "{0:#.00}";
         xrSummary9.IgnoreNullValues = true;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid2.Summary = xrSummary9;
         this.sumKailasPaid2.Tag = "KailasPaid2";
         this.sumKailasPaid2.Text = "sumKailasPaid2";
         this.sumKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid2.Weight = 0.093633187397588968D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Weight = 0.43445647164676959D;
         //
         // cfOnDate
         //
         this.cfOnDate.Expression = "GetDate([MeteringDate])";
         this.cfOnDate.Name = "cfOnDate";
         //
         // ActMainReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.DetailReport,
         this.GroupFooter2});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.cfOnDate});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(26, 26, 50, 50);
         this.PageHeight = 1169;
         this.PageWidth = 1654;
         this.PaperKind = System.Drawing.Printing.PaperKind.A3;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.Version = "15.1";
         this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ActMainReport_BeforePrint);
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "StepReport.resx";
         this.components = new System.ComponentModel.Container();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailSteps = new DevExpress.XtraReports.UI.DetailBand();
         this.tblSteps = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblActs.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.tblActs.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell2,
         this.xrTableCell10,
         this.xrTableCell3,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell11});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MeteringDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.StylePriority.UseTextAlignment = false;
         this.xrTableCell14.Text = "xrTableCell14";
         this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell14.Weight = 0.091450357298137608D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.StylePriority.UseTextAlignment = false;
         this.xrTableCell15.Text = "xrTableCell15";
         this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell15.Weight = 0.10669208251214116D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "xrTableCell1";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell1.Weight = 0.27435106813559013D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 0.18290071309274597D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseBorders = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 0.22862589249357956D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseBorders = false;
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 0.18290070970980582D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.StylePriority.UseTextAlignment = false;
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell2.Weight = 0.10669207988096552D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.076208630856557685D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell3.Weight = 0.076208628889134711D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.10669208419765233D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "xrTableCell13";
         this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell13.Weight = 0.091450355559682034D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActNum")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.10516790311461627D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 51F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrTable5});
         this.ReportHeader.HeightF = 43.25F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1069F, 27.49999F);
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell19,
         this.xrTableCell23,
         this.xrTableCell16,
         this.xrTableCell24,
         this.xrTableCell20,
         this.xrTableCell25,
         this.xrTableCell17,
         this.xrTableCell26,
         this.xrTableCell21,
         this.xrTableCell27,
         this.xrTableCell18});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "Дата\r\nзаміру";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell22.Weight = 0.16838166867604984D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "Статус";
         this.xrTableCell19.Weight = 0.19644527952731267D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Text = "Працівник";
         this.xrTableCell23.Weight = 0.50514498818578624D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.Text = "Населений пункт";
         this.xrTableCell16.Weight = 0.336763323078209D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Text = "Адреса";
         this.xrTableCell24.Weight = 0.42095415563199762D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.Text = "Замовник";
         this.xrTableCell20.Weight = 0.33676332307820905D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.Text = "№ телефону";
         this.xrTableCell25.Weight = 0.19644527952731264D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell17.Multiline = true;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseFont = false;
         this.xrTableCell17.Text = "К-сть\r\n ділянок";
         this.xrTableCell17.Weight = 0.14031805247207801D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Multiline = true;
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "К-сть\r\nактів";
         this.xrTableCell26.Weight = 0.14031805247207793D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Text = "Категорія";
         this.xrTableCell21.Weight = 0.19644527952731267D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Text = "Дата\r\nдоговору";
         this.xrTableCell27.Weight = 0.16838166867604984D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Text = "№ договору";
         this.xrTableCell18.Weight = 0.19363892914760436D;
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.25F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "1";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.16838166867604984D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.Text = "2";
         this.xrTableCell46.Weight = 0.19644527952731267D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.Text = "3";
         this.xrTableCell47.Weight = 0.50514498818578624D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.Text = "4";
         this.xrTableCell48.Weight = 0.336763323078209D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.Text = "5";
         this.xrTableCell49.Weight = 0.42095415563199762D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.Text = "6";
         this.xrTableCell50.Weight = 0.33676332307820905D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.Text = "7";
         this.xrTableCell51.Weight = 0.19644527952731264D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell52.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell52.Multiline = true;
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseFont = false;
         this.xrTableCell52.Text = "8";
         this.xrTableCell52.Weight = 0.14031805247207801D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell53.Multiline = true;
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.Text = "9";
         this.xrTableCell53.Weight = 0.14031805247207793D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.Text = "10";
         this.xrTableCell54.Weight = 0.19644527952731267D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell55.Multiline = true;
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.Text = "11";
         this.xrTableCell55.Weight = 0.16838166867604984D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.Text = "12";
         this.xrTableCell56.Weight = 0.19363892914760436D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailSteps,
         this.GroupHeader1,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Steps";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailSteps
         //
         this.detailSteps.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblSteps});
         this.detailSteps.HeightF = 15F;
         this.detailSteps.KeepTogether = true;
         this.detailSteps.Name = "detailSteps";
         this.detailSteps.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailSteps_BeforePrint);
         //
         // tblSteps
         //
         this.tblSteps.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblSteps.Font = new System.Drawing.Font("Times New Roman", 8F);
         this.tblSteps.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblSteps.Name = "tblSteps";
         this.tblSteps.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblSteps.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.tblSteps.StylePriority.UseBorders = false;
         this.tblSteps.StylePriority.UseFont = false;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.OrdNum")});
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.18575856007409755D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.ActionName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.StylePriority.UseTextAlignment = false;
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell4.Weight = 0.650154799860234D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Delivered", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Text = "xrTableCell5";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.24767801857585131D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Received", "{0:dd.MM.yyyy}")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseBorders = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell6.Weight = 0.24767801857585131D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.GroupHeader1.HeightF = 15F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable3.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell31,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.Text = "№ п/п";
         this.xrTableCell31.Weight = 0.59999996430703428D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.Text = "Назва етапу";
         this.xrTableCell28.Weight = 2.0999996549191584D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.Text = "Передали";
         this.xrTableCell29.Weight = 0.80000030517577592D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.Text = "Отримали";
         this.xrTableCell30.Weight = 0.80000030517577592D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
         this.GroupFooter1.HeightF = 15F;
         this.GroupFooter1.Name = "GroupFooter1";
         this.GroupFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupFooter1_BeforePrint);
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39,
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "1";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.16838166867604984D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.Text = "2";
         this.xrTableCell34.Weight = 0.19644527952731267D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.Text = "3";
         this.xrTableCell35.Weight = 0.50514498818578624D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.Text = "4";
         this.xrTableCell36.Weight = 0.336763323078209D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.Text = "5";
         this.xrTableCell37.Weight = 0.42095415563199762D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.Text = "6";
         this.xrTableCell38.Weight = 0.33676332307820905D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "7";
         this.xrTableCell39.Weight = 0.19644527952731264D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell40.Multiline = true;
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseFont = false;
         this.xrTableCell40.Text = "8";
         this.xrTableCell40.Weight = 0.14031805247207801D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Multiline = true;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "9";
         this.xrTableCell41.Weight = 0.14031805247207793D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "10";
         this.xrTableCell42.Weight = 0.19644527952731267D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Multiline = true;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.Text = "11";
         this.xrTableCell43.Weight = 0.16838166867604984D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "12";
         this.xrTableCell44.Weight = 0.19363892914760436D;
         //
         // StepReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.DetailReport});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 50, 51, 50);
         this.PageHeight = 827;
         this.PageWidth = 1169;
         this.PaperKind = System.Drawing.Printing.PaperKind.A4;
         this.Version = "15.1";
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #22
0
        private void InitializeComponent()
        {
            components = new Container();
            var resources = new ComponentResourceManager(typeof(LeaveList));

            topMarginBand1       = new TopMarginBand();
            xrPictureBox1        = new XRPictureBox();
            detailBand1          = new DetailBand();
            xrTable4             = new XRTable();
            xrTableRow6          = new XRTableRow();
            xrTableCell15        = new XRTableCell();
            xrTableCell17        = new XRTableCell();
            xrTableCell18        = new XRTableCell();
            xrTableCell22        = new XRTableCell();
            xrTableCell24        = new XRTableCell();
            xrTableRow7          = new XRTableRow();
            xrTableCell19        = new XRTableCell();
            xrTableCell20        = new XRTableCell();
            xrTableCell21        = new XRTableCell();
            xrTableCell23        = new XRTableCell();
            xrTableCell25        = new XRTableCell();
            xrTableRow8          = new XRTableRow();
            xrTableCell26        = new XRTableCell();
            xrLabel2             = new XRLabel();
            xrTable3             = new XRTable();
            xrTableRow4          = new XRTableRow();
            xrTableCell14        = new XRTableCell();
            xrTableRow5          = new XRTableRow();
            xrTableCell16        = new XRTableCell();
            xrLabel1             = new XRLabel();
            bottomMarginBand1    = new BottomMarginBand();
            xrPageInfo2          = new XRPageInfo();
            xrPageInfo1          = new XRPageInfo();
            bindingSource1       = new BindingSource(components);
            xrTable1             = new XRTable();
            xrTableRow1          = new XRTableRow();
            xrTableCell1         = new XRTableCell();
            xrTableCell2         = new XRTableCell();
            xrTableCell3         = new XRTableCell();
            xrTable2             = new XRTable();
            xrTableRow2          = new XRTableRow();
            xrTableCell4         = new XRTableCell();
            xrTableCell5         = new XRTableCell();
            xrTableCell7         = new XRTableCell();
            xrTableCell8         = new XRTableCell();
            xrTableCell6         = new XRTableCell();
            xrTableRow3          = new XRTableRow();
            xrTableCell9         = new XRTableCell();
            xrTableCell10        = new XRTableCell();
            xrTableCell11        = new XRTableCell();
            xrTableCell12        = new XRTableCell();
            xrTableCell13        = new XRTableCell();
            ReportHeader         = new ReportHeaderBand();
            GroupHeader1         = new GroupHeaderBand();
            xrLabel3             = new XRLabel();
            statusCompleted      = new CalculatedField();
            statusNotStarted     = new CalculatedField();
            statusInProgress     = new CalculatedField();
            statusNeedAssistance = new CalculatedField();
            statusDeferred       = new CalculatedField();
            parameter1           = new Parameter();
            GroupFooter1         = new GroupFooterBand();
            ((ISupportInitialize)xrTable4).BeginInit();
            ((ISupportInitialize)xrTable3).BeginInit();
            ((ISupportInitialize)bindingSource1).BeginInit();
            ((ISupportInitialize)xrTable1).BeginInit();
            ((ISupportInitialize)xrTable2).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            //
            // topMarginBand1
            //
            topMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPictureBox1
            });
            topMarginBand1.HeightF = 138F;
            topMarginBand1.Name    = "topMarginBand1";
            //
            // xrPictureBox1
            //
            xrPictureBox1.Image         = (Image)resources.GetObject("xrPictureBox1.Image");
            xrPictureBox1.LocationFloat = new PointFloat(392.7083F, 6.243578F);
            xrPictureBox1.Name          = "xrPictureBox1";
            xrPictureBox1.SizeF         = new SizeF(344.7917F, 125.1618F);
            xrPictureBox1.Sizing        = ImageSizeMode.StretchImage;
            //
            // detailBand1
            //
            detailBand1.Controls.AddRange(new XRControl[]
            {
                xrTable4,
                xrLabel2,
                xrTable3,
                xrLabel1
            });
            detailBand1.HeightF = 179.1667F;
            detailBand1.Name    = "detailBand1";
            detailBand1.SortFields.AddRange(new[]
            {
                new GroupField("DueDate", XRColumnSortOrder.Ascending)
            });
            //
            // xrTable4
            //
            xrTable4.KeepTogether  = true;
            xrTable4.LocationFloat = new PointFloat(0F, 106.875F);
            xrTable4.Name          = "xrTable4";
            xrTable4.Rows.AddRange(new[]
            {
                xrTableRow6,
                xrTableRow7,
                xrTableRow8
            });
            xrTable4.SizeF = new SizeF(650F, 56.87504F);
            //
            // xrTableRow6
            //
            xrTableRow6.Cells.AddRange(new[]
            {
                xrTableCell15,
                xrTableCell17,
                xrTableCell18,
                xrTableCell22,
                xrTableCell24
            });
            xrTableRow6.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableRow6.Name      = "xrTableRow6";
            xrTableRow6.StylePriority.UseForeColor = false;
            xrTableRow6.Weight = 0.45665942772890605D;
            //
            // xrTableCell15
            //
            xrTableCell15.Name    = "xrTableCell15";
            xrTableCell15.Padding = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTableCell15.StylePriority.UseFont      = false;
            xrTableCell15.StylePriority.UseForeColor = false;
            xrTableCell15.StylePriority.UsePadding   = false;
            xrTableCell15.Text   = "DATE DE RETOUR";
            xrTableCell15.Weight = 0.60771602766636823D;
            //
            // xrTableCell17
            //
            xrTableCell17.Name    = "xrTableCell17";
            xrTableCell17.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell17.StylePriority.UseForeColor = false;
            xrTableCell17.StylePriority.UsePadding   = false;
            xrTableCell17.Text   = "CRÉE PAR";
            xrTableCell17.Weight = 0.62980608396886717D;
            //
            // xrTableCell18
            //
            xrTableCell18.Name    = "xrTableCell18";
            xrTableCell18.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell18.StylePriority.UsePadding = false;
            xrTableCell18.Text   = "EMPLOYÉ";
            xrTableCell18.Weight = 0.58008992577285823D;
            //
            // xrTableCell22
            //
            xrTableCell22.Name    = "xrTableCell22";
            xrTableCell22.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell22.StylePriority.UsePadding = false;
            xrTableCell22.Text   = "PROGRESSION";
            xrTableCell22.Weight = 0.70420532486194742D;
            //
            // xrTableCell24
            //
            xrTableCell24.Name    = "xrTableCell24";
            xrTableCell24.Padding = new PaddingInfo(0, 4, 0, 0, 100F);
            xrTableCell24.StylePriority.UsePadding       = false;
            xrTableCell24.StylePriority.UseTextAlignment = false;
            xrTableCell24.Text          = "PRIORITÉ";
            xrTableCell24.TextAlignment = TextAlignment.TopRight;
            xrTableCell24.Weight        = 0.47818263772995884D;
            //
            // xrTableRow7
            //
            xrTableRow7.Cells.AddRange(new[]
            {
                xrTableCell19,
                xrTableCell20,
                xrTableCell21,
                xrTableCell23,
                xrTableCell25
            });
            xrTableRow7.Font = new Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableRow7.Name = "xrTableRow7";
            xrTableRow7.StylePriority.UseFont = false;
            xrTableRow7.Weight = 0.45665943679824827D;
            //
            // xrTableCell19
            //
            xrTableCell19.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "DueDate", "{0:d}")
            });
            xrTableCell19.Name    = "xrTableCell19";
            xrTableCell19.Padding = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTableCell19.StylePriority.UseFont    = false;
            xrTableCell19.StylePriority.UsePadding = false;
            xrTableCell19.Text   = "12/17/2013";
            xrTableCell19.Weight = 0.60771602766636823D;
            //
            // xrTableCell20
            //
            xrTableCell20.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "AssignedEmployee.FullName")
            });
            xrTableCell20.Name    = "xrTableCell20";
            xrTableCell20.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell20.StylePriority.UsePadding = false;
            xrTableCell20.Text   = "John Hansen";
            xrTableCell20.Weight = 0.62980636210376506D;
            //
            // xrTableCell21
            //
            xrTableCell21.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Owner.FullName")
            });
            xrTableCell21.Name    = "xrTableCell21";
            xrTableCell21.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell21.StylePriority.UsePadding = false;
            xrTableCell21.Text   = "Jane Mitchell";
            xrTableCell21.Weight = 0.58008964763796045D;
            //
            // xrTableCell23
            //
            xrTableCell23.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Completion")
            });
            xrTableCell23.Name    = "xrTableCell23";
            xrTableCell23.Padding = new PaddingInfo(4, 0, 0, 0, 100F);
            xrTableCell23.StylePriority.UsePadding = false;
            xrTableCell23.Text   = "xrTableCell23";
            xrTableCell23.Weight = 0.70420532486194742D;
            //
            // xrTableCell25
            //
            xrTableCell25.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Priority")
            });
            xrTableCell25.ForeColor = Color.FromArgb(221, 128, 71);
            xrTableCell25.Name      = "xrTableCell25";
            xrTableCell25.Padding   = new PaddingInfo(0, 4, 0, 0, 100F);
            xrTableCell25.StylePriority.UseForeColor     = false;
            xrTableCell25.StylePriority.UsePadding       = false;
            xrTableCell25.StylePriority.UseTextAlignment = false;
            xrTableCell25.Text          = "High";
            xrTableCell25.TextAlignment = TextAlignment.TopRight;
            xrTableCell25.Weight        = 0.47818263772995884D;
            //
            // xrTableRow8
            //
            xrTableRow8.BorderColor = Color.FromArgb(175, 175, 175);
            xrTableRow8.Borders     = BorderSide.Bottom;
            xrTableRow8.Cells.AddRange(new[]
            {
                xrTableCell26
            });
            xrTableRow8.Name = "xrTableRow8";
            xrTableRow8.StylePriority.UseBorderColor = false;
            xrTableRow8.StylePriority.UseBorders     = false;
            xrTableRow8.Weight = 0.45665943679824827D;
            //
            // xrTableCell26
            //
            xrTableCell26.Name   = "xrTableCell26";
            xrTableCell26.Weight = 3D;
            //
            // xrLabel2
            //
            xrLabel2.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Description")
            });
            xrLabel2.Font                     = new Font("Segoe UI", 10F, FontStyle.Italic, GraphicsUnit.Point, 0);
            xrLabel2.KeepTogether             = true;
            xrLabel2.LocationFloat            = new PointFloat(128.125F, 53.66668F);
            xrLabel2.Name                     = "xrLabel2";
            xrLabel2.Padding                  = new PaddingInfo(7, 2, 0, 0, 100F);
            xrLabel2.SizeF                    = new SizeF(342.7083F, 40.625F);
            xrLabel2.StylePriority.UseFont    = false;
            xrLabel2.StylePriority.UsePadding = false;
            xrLabel2.Text                     = "Artwork is ready. The printer’s address is 100 Main Rd. We need to see the proofs" +
                                                " before we go to print.";
            //
            // xrTable3
            //
            xrTable3.LocationFloat = new PointFloat(0F, 53.66668F);
            xrTable3.Name          = "xrTable3";
            xrTable3.Padding       = new PaddingInfo(17, 0, 0, 0, 100F);
            xrTable3.Rows.AddRange(new[]
            {
                xrTableRow4,
                xrTableRow5
            });
            xrTable3.SizeF = new SizeF(109.6389F, 40.625F);
            xrTable3.StylePriority.UsePadding = false;
            //
            // xrTableRow4
            //
            xrTableRow4.Cells.AddRange(new[]
            {
                xrTableCell14
            });
            xrTableRow4.Name   = "xrTableRow4";
            xrTableRow4.Weight = 0.79591859610841031D;
            //
            // xrTableCell14
            //
            xrTableCell14.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableCell14.Name      = "xrTableCell14";
            xrTableCell14.StylePriority.UseForeColor = false;
            xrTableCell14.Text   = "DATE DÉBUT";
            xrTableCell14.Weight = 3D;
            //
            // xrTableRow5
            //
            xrTableRow5.Cells.AddRange(new[]
            {
                xrTableCell16
            });
            xrTableRow5.Name   = "xrTableRow5";
            xrTableRow5.Weight = 0.79591820772148691D;
            //
            // xrTableCell16
            //
            xrTableCell16.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "StartDate", "{0:d}")
            });
            xrTableCell16.Name   = "xrTableCell16";
            xrTableCell16.Text   = "12/15/2013";
            xrTableCell16.Weight = 3D;
            //
            // xrLabel1
            //
            xrLabel1.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Subject")
            });
            xrLabel1.Font                     = new Font("Segoe UI", 11F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel1.LocationFloat            = new PointFloat(0F, 16F);
            xrLabel1.Name                     = "xrLabel1";
            xrLabel1.Padding                  = new PaddingInfo(17, 2, 0, 0, 100F);
            xrLabel1.SizeF                    = new SizeF(649.4167F, 22.91667F);
            xrLabel1.StylePriority.UseFont    = false;
            xrLabel1.StylePriority.UsePadding = false;
            //
            // bottomMarginBand1
            //
            bottomMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPageInfo2,
                xrPageInfo1
            });
            bottomMarginBand1.Font    = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            bottomMarginBand1.HeightF = 100F;
            bottomMarginBand1.Name    = "bottomMarginBand1";
            bottomMarginBand1.StylePriority.UseFont = false;
            //
            // xrPageInfo2
            //
            xrPageInfo2.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo2.Format        = "{0:MMMM d, yyyy}";
            xrPageInfo2.LocationFloat = new PointFloat(485.4167F, 0F);
            xrPageInfo2.Name          = "xrPageInfo2";
            xrPageInfo2.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo2.PageInfo      = PageInfo.DateTime;
            xrPageInfo2.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo2.StylePriority.UseForeColor     = false;
            xrPageInfo2.StylePriority.UseTextAlignment = false;
            xrPageInfo2.TextAlignment = TextAlignment.TopRight;
            //
            // xrPageInfo1
            //
            xrPageInfo1.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo1.Format        = "Page {0} of {1}";
            xrPageInfo1.LocationFloat = new PointFloat(0F, 0F);
            xrPageInfo1.Name          = "xrPageInfo1";
            xrPageInfo1.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo1.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo1.StylePriority.UseForeColor = false;
            //
            // bindingSource1
            //
            bindingSource1.DataSource = typeof(Leave);
            //
            // xrTable1
            //
            xrTable1.LocationFloat = new PointFloat(0F, 22F);
            xrTable1.Name          = "xrTable1";
            xrTable1.Rows.AddRange(new[]
            {
                xrTableRow1
            });
            xrTable1.SizeF = new SizeF(650F, 29.69642F);
            //
            // xrTableRow1
            //
            xrTableRow1.Cells.AddRange(new[]
            {
                xrTableCell1,
                xrTableCell2,
                xrTableCell3
            });
            xrTableRow1.Name = "xrTableRow1";
            xrTableRow1.StylePriority.UseTextAlignment = false;
            xrTableRow1.TextAlignment = TextAlignment.MiddleRight;
            xrTableRow1.Weight        = 1D;
            //
            // xrTableCell1
            //
            xrTableCell1.BackColor = Color.LimeGreen;
            xrTableCell1.Font      = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell1.ForeColor = Color.White;
            xrTableCell1.Name      = "xrTableCell1";
            xrTableCell1.Padding   = new PaddingInfo(8, 0, 0, 0, 100F);
            xrTableCell1.StylePriority.UseBackColor     = false;
            xrTableCell1.StylePriority.UseFont          = false;
            xrTableCell1.StylePriority.UseForeColor     = false;
            xrTableCell1.StylePriority.UsePadding       = false;
            xrTableCell1.StylePriority.UseTextAlignment = false;
            xrTableCell1.Text          = "Congés";
            xrTableCell1.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell1.Weight        = 0.80032469757233127D;
            //
            // xrTableCell2
            //
            xrTableCell2.Name   = "xrTableCell2";
            xrTableCell2.Weight = 0.024452088141954528D;
            //
            // xrTableCell3
            //
            xrTableCell3.BackColor = Color.FromArgb(218, 218, 218);
            xrTableCell3.Font      = new Font("Segoe UI", 8F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell3.Name      = "xrTableCell3";
            xrTableCell3.Padding   = new PaddingInfo(0, 8, 0, 0, 100F);
            xrTableCell3.StylePriority.UseBackColor = false;
            xrTableCell3.StylePriority.UseFont      = false;
            xrTableCell3.StylePriority.UsePadding   = false;
            xrTableCell3.Text   = "Grouped by Status | Sorted by Due Date";
            xrTableCell3.Weight = 2.2141840142121296D;
            //
            // xrTable2
            //
            xrTable2.LocationFloat = new PointFloat(0F, 73.70834F);
            xrTable2.Name          = "xrTable2";
            xrTable2.Rows.AddRange(new[]
            {
                xrTableRow2,
                xrTableRow3
            });
            xrTable2.SizeF = new SizeF(648.9583F, 148.9583F);
            xrTable2.StylePriority.UseBorders       = false;
            xrTable2.StylePriority.UseTextAlignment = false;
            xrTable2.TextAlignment = TextAlignment.MiddleCenter;
            //
            // xrTableRow2
            //
            xrTableRow2.Cells.AddRange(new[]
            {
                xrTableCell4,
                xrTableCell5,
                xrTableCell7,
                xrTableCell8,
                xrTableCell6
            });
            xrTableRow2.Font = new Font("Microsoft Sans Serif", 36F);
            xrTableRow2.Name = "xrTableRow2";
            xrTableRow2.StylePriority.UseFont          = false;
            xrTableRow2.StylePriority.UseTextAlignment = false;
            xrTableRow2.Weight = 1D;
            //
            // xrTableCell4
            //
            xrTableCell4.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusNotStarted")
            });
            xrTableCell4.Name     = "xrTableCell4";
            xrTableCell4.Weight   = 1D;
            xrTableCell4.WordWrap = false;
            //
            // xrTableCell5
            //
            xrTableCell5.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusInProgress")
            });
            xrTableCell5.Name     = "xrTableCell5";
            xrTableCell5.Weight   = 1D;
            xrTableCell5.WordWrap = false;
            //
            // xrTableCell7
            //
            xrTableCell7.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusCompleted")
            });
            xrTableCell7.Name = "xrTableCell7";
            xrTableCell7.StylePriority.UseTextAlignment = false;
            xrTableCell7.Weight   = 1D;
            xrTableCell7.WordWrap = false;
            //
            // xrTableCell8
            //
            xrTableCell8.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusNeedAssistance")
            });
            xrTableCell8.Name     = "xrTableCell8";
            xrTableCell8.Weight   = 1D;
            xrTableCell8.WordWrap = false;
            //
            // xrTableCell6
            //
            xrTableCell6.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "statusDeferred")
            });
            xrTableCell6.Name     = "xrTableCell6";
            xrTableCell6.Weight   = 1D;
            xrTableCell6.WordWrap = false;
            //
            // xrTableRow3
            //
            xrTableRow3.BorderColor = Color.FromArgb(175, 175, 175);
            xrTableRow3.Borders     = BorderSide.Bottom;
            xrTableRow3.Cells.AddRange(new[]
            {
                xrTableCell9,
                xrTableCell10,
                xrTableCell11,
                xrTableCell12,
                xrTableCell13
            });
            xrTableRow3.Font      = new Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableRow3.ForeColor = Color.FromArgb(175, 175, 175);
            xrTableRow3.Name      = "xrTableRow3";
            xrTableRow3.StylePriority.UseBorderColor   = false;
            xrTableRow3.StylePriority.UseBorders       = false;
            xrTableRow3.StylePriority.UseFont          = false;
            xrTableRow3.StylePriority.UseForeColor     = false;
            xrTableRow3.StylePriority.UseTextAlignment = false;
            xrTableRow3.Weight = 0.5423728813559322D;
            //
            // xrTableCell9
            //
            xrTableCell9.Name   = "xrTableCell9";
            xrTableCell9.Text   = "NOT STARTED";
            xrTableCell9.Weight = 1D;
            //
            // xrTableCell10
            //
            xrTableCell10.Name   = "xrTableCell10";
            xrTableCell10.Text   = "IN PROGRESS";
            xrTableCell10.Weight = 1D;
            //
            // xrTableCell11
            //
            xrTableCell11.Name   = "xrTableCell11";
            xrTableCell11.Text   = "COMPLETED";
            xrTableCell11.Weight = 1D;
            //
            // xrTableCell12
            //
            xrTableCell12.Name   = "xrTableCell12";
            xrTableCell12.Text   = "ASSISTANCE";
            xrTableCell12.Weight = 1D;
            //
            // xrTableCell13
            //
            xrTableCell13.Name   = "xrTableCell13";
            xrTableCell13.Text   = "DEFERRED";
            xrTableCell13.Weight = 1D;
            //
            // ReportHeader
            //
            ReportHeader.Controls.AddRange(new XRControl[]
            {
                xrTable2,
                xrTable1
            });
            ReportHeader.HeightF = 246.8749F;
            ReportHeader.Name    = "ReportHeader";
            //
            // GroupHeader1
            //
            GroupHeader1.Controls.AddRange(new XRControl[]
            {
                xrLabel3
            });
            GroupHeader1.GroupFields.AddRange(new[]
            {
                new GroupField("Status", XRColumnSortOrder.Ascending)
            });
            GroupHeader1.HeightF = 26.04167F;
            GroupHeader1.Name    = "GroupHeader1";
            //
            // xrLabel3
            //
            xrLabel3.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Status")
            });
            xrLabel3.Font                           = new Font("Segoe UI", 14F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel3.ForeColor                      = Color.LawnGreen;
            xrLabel3.LocationFloat                  = new PointFloat(0F, 0F);
            xrLabel3.Name                           = "xrLabel3";
            xrLabel3.Padding                        = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel3.SizeF                          = new SizeF(648.9583F, 26.04167F);
            xrLabel3.StylePriority.UseFont          = false;
            xrLabel3.StylePriority.UseForeColor     = false;
            xrLabel3.StylePriority.UseTextAlignment = false;
            xrLabel3.TextAlignment                  = TextAlignment.BottomCenter;
            //
            // statusCompleted
            //
            statusCompleted.Expression = "[][ToStr([Status]) = \'Completed\'].Count()";
            statusCompleted.FieldType  = FieldType.Int32;
            statusCompleted.Name       = "statusCompleted";
            //
            // statusNotStarted
            //
            statusNotStarted.Expression = "[][ToStr([Status]) = \'NotStarted\'].Count()";
            statusNotStarted.FieldType  = FieldType.Int32;
            statusNotStarted.Name       = "statusNotStarted";
            //
            // statusInProgress
            //
            statusInProgress.Expression = "[][ToStr([Status]) = \'InProgress\'].Count()";
            statusInProgress.FieldType  = FieldType.Int32;
            statusInProgress.Name       = "statusInProgress";
            //
            // statusNeedAssistance
            //
            statusNeedAssistance.Expression = "[][ToStr([Status]) = \'NeedAssistance\'].Count()";
            statusNeedAssistance.FieldType  = FieldType.Int32;
            statusNeedAssistance.Name       = "statusNeedAssistance";
            //
            // statusDeferred
            //
            statusDeferred.Expression = "[][ToStr([Status]) = \'Deferred\'].Count()";
            statusDeferred.FieldType  = FieldType.Int32;
            statusDeferred.Name       = "statusDeferred";
            //
            // parameter1
            //
            parameter1.Description = "Parameter1";
            parameter1.Name        = "parameter1";
            parameter1.Type        = typeof(bool);
            parameter1.ValueInfo   = "True";
            parameter1.Visible     = false;
            //
            // GroupFooter1
            //
            GroupFooter1.HeightF   = 0F;
            GroupFooter1.Name      = "GroupFooter1";
            GroupFooter1.PageBreak = PageBreak.AfterBand;
            //
            // LeaveList
            //
            Bands.AddRange(new Band[]
            {
                topMarginBand1,
                detailBand1,
                bottomMarginBand1,
                ReportHeader,
                GroupHeader1,
                GroupFooter1
            });
            CalculatedFields.AddRange(new[]
            {
                statusCompleted,
                statusNotStarted,
                statusInProgress,
                statusNeedAssistance,
                statusDeferred
            });
            DataSource = bindingSource1;
            DesignerOptions.ShowExportWarnings = false;
            DrawWatermark = true;
            Font          = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 0);
            Margins       = new Margins(100, 82, 138, 100);
            Parameters.AddRange(new[]
            {
                parameter1
            });
            SnappingMode        = SnappingMode.SnapToGrid;
            SnapToGrid          = false;
            Version             = "15.1";
            DataSourceDemanded += LeaveList_DataSourceDemanded;
            ((ISupportInitialize)xrTable4).EndInit();
            ((ISupportInitialize)xrTable3).EndInit();
            ((ISupportInitialize)bindingSource1).EndInit();
            ((ISupportInitialize)xrTable1).EndInit();
            ((ISupportInitialize)xrTable2).EndInit();
            ((ISupportInitialize)this).EndInit();
        }
Example #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(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();
 }
Example #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 = "Allowance_Report.resx";

        DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
        DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
        this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
        this.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.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
        this.xrLabel14           = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10           = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1       = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel3            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLine1             = new DevExpress.XtraReports.UI.XRLine();
        this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrLine4             = new DevExpress.XtraReports.UI.XRLine();
        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.xrLabel13           = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel11           = new DevExpress.XtraReports.UI.XRLabel();
        this.employee_Allowance1 = new Employee_Allowance();
        this.xrLabel6            = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7            = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader2        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrLine2             = new DevExpress.XtraReports.UI.XRLine();
        this.GroupFooter1        = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrLine3             = new DevExpress.XtraReports.UI.XRLine();
        this.employee_Allowance2 = new Employee_Allowance();
        this.employee_Allowance3 = new Employee_Allowance();
        this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance3)).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.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(649.9999F, 25F);
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6
        });
        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, "dtEmpAllowance.Allowance")
        });
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "xrTableCell4";
        this.xrTableCell4.Weight = 0.67179474673548;
        //
        // xrTableCell5
        //
        this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.ActAmount")
        });
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Weight = 0.59766144972991087;
        //
        // xrTableCell6
        //
        this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.GivenAmount")
        });
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "[GivenAmount]";
        this.xrTableCell6.Weight = 0.77741851743231416;
        //
        // TopMargin
        //
        this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel14,
            this.xrLabel10,
            this.xrLabel5,
            this.xrLabel4,
            this.xrPictureBox1,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1,
            this.xrLine1
        });
        this.TopMargin.HeightF       = 107.0833F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel14
        //
        this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.Year")
        });
        this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(539.9999F, 67.00001F);
        this.xrLabel14.Name          = "xrLabel14";
        this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel14.SizeF         = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel14.Text          = "xrLabel14";
        //
        // xrLabel10
        //
        this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.Month")
        });
        this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(107.2917F, 67.00001F);
        this.xrLabel10.Name          = "xrLabel10";
        this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF         = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel10.Text          = "xrLabel10";
        //
        // 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(403.125F, 67.00001F);
        this.xrLabel5.Name                  = "xrLabel5";
        this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                 = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel5.StylePriority.UseFont = false;
        this.xrLabel5.Text                  = "xrLabel5";
        //
        // xrLabel4
        //
        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(0F, 67.00001F);
        this.xrLabel4.Name                  = "xrLabel4";
        this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                 = new System.Drawing.SizeF(100F, 23F);
        this.xrLabel4.StylePriority.UseFont = false;
        this.xrLabel4.Text                  = "xrLabel4";
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(100F, 56.00001F);
        this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        //
        // xrLabel3
        //
        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(187.5F, 20.50001F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(315.625F, 23F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "xrLabel3";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(0F, 33.00001F);
        this.xrLabel2.Name                  = "xrLabel2";
        this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                 = new System.Drawing.SizeF(164.5833F, 23F);
        this.xrLabel2.StylePriority.UseFont = false;
        this.xrLabel2.Text                  = "xrLabel2";
        //
        // 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, 10.00001F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(164.5833F, 23F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "xrLabel1";
        //
        // xrLine1
        //
        this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 95.83334F);
        this.xrLine1.Name          = "xrLine1";
        this.xrLine1.SizeF         = new System.Drawing.SizeF(650F, 7.083313F);
        //
        // 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.xrLine4,
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrLine4
        //
        this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 18.75F);
        this.xrLine4.Name          = "xrLine4";
        this.xrLine4.SizeF         = new System.Drawing.SizeF(649.9999F, 2F);
        //
        // xrTable1
        //
        this.xrTable1.Font          = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 18.75F);
        this.xrTable1.StylePriority.UseFont = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Allowance";
        this.xrTableCell1.Weight = 2.0729167175292966;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont = false;
        this.xrTableCell2.Text   = "Actual Amount";
        this.xrTableCell2.Weight = 1.9583332824707032;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Paid Amount";
        this.xrTableCell3.Weight = 2.46875;
        //
        // xrLabel13
        //
        this.xrLabel13.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(403.1249F, 0F);
        this.xrLabel13.Name                  = "xrLabel13";
        this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel13.SizeF                 = new System.Drawing.SizeF(122.9167F, 10.5F);
        this.xrLabel13.StylePriority.UseFont = false;
        this.xrLabel13.Text                  = "Employee Name";
        //
        // xrLabel11
        //
        this.xrLabel11.Font                  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel11.Name                  = "xrLabel11";
        this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel11.SizeF                 = new System.Drawing.SizeF(100F, 10.5F);
        this.xrLabel11.StylePriority.UseFont = false;
        this.xrLabel11.Text                  = "Employee Id";
        //
        // employee_Allowance1
        //
        this.employee_Allowance1.DataSetName             = "Employee_Allowance";
        this.employee_Allowance1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // xrLabel6
        //
        this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.EmpId")
        });
        this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(107.2917F, 0F);
        this.xrLabel6.Name          = "xrLabel6";
        this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF         = new System.Drawing.SizeF(100F, 10.5F);
        this.xrLabel6.Text          = "xrLabel6";
        //
        // xrLabel7
        //
        this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.EmpName")
        });
        this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(540F, 0F);
        this.xrLabel7.Name          = "xrLabel7";
        this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF         = new System.Drawing.SizeF(100F, 10.5F);
        this.xrLabel7.Text          = "[EmpName]";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLine2,
            this.xrLabel11,
            this.xrLabel6,
            this.xrLabel13,
            this.xrLabel7
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("EmpId", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 20.83333F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // xrLine2
        //
        this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.49999F);
        this.xrLine2.Name          = "xrLine2";
        this.xrLine2.SizeF         = new System.Drawing.SizeF(649.9999F, 2F);
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3,
            this.xrLine3
        });
        this.GroupFooter1.HeightF = 21.875F;
        this.GroupFooter1.Name    = "GroupFooter1";
        //
        // xrLine3
        //
        this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 0F);
        this.xrLine3.Name          = "xrLine3";
        this.xrLine3.SizeF         = new System.Drawing.SizeF(649.9999F, 2F);
        //
        // employee_Allowance2
        //
        this.employee_Allowance2.DataSetName             = "Employee_Allowance";
        this.employee_Allowance2.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // employee_Allowance3
        //
        this.employee_Allowance3.DataSetName             = "Employee_Allowance";
        this.employee_Allowance3.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.125F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(651.0416F, 18.75F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont          = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Total";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrTableCell7.Weight        = 0.98303982706498927;
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.ActAmount")
        });
        this.xrTableCell8.Name    = "xrTableCell8";
        xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
        this.xrTableCell8.Summary = xrSummary1;
        this.xrTableCell8.Text    = "xrTableCell8";
        this.xrTableCell8.Weight  = 0.87456042966002678;
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpAllowance.GivenAmount")
        });
        this.xrTableCell9.Name    = "xrTableCell9";
        xrSummary2.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
        this.xrTableCell9.Summary = xrSummary2;
        this.xrTableCell9.Text    = "xrTableCell9";
        this.xrTableCell9.Weight  = 1.142399743274984;
        //
        // Allowance_Report
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.GroupHeader2,
            this.GroupFooter1
        });
        this.DataMember = "dtEmpAllowance";
        this.DataSource = this.employee_Allowance3;
        this.Margins    = new System.Drawing.Printing.Margins(100, 100, 107, 0);
        this.Version    = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.employee_Allowance3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #25
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_SocialInsurance.resx";

            this.Detail                = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2           = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrtstt                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtEmployeeCode       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtFullName           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtBirthDate          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtSex                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtAddress            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtPhone              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtInsuranceNumber    = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtInsuranceIssueDate = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtPosition           = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.GroupHeader1          = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrTable3              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3           = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell9          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtDepartmentName     = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLogo                = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrl_TitleBC           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TenCongTy         = new DevExpress.XtraReports.UI.XRLabel();
            this.ReportFooter          = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.xrl_ten3              = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_ten2              = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_ten1              = new DevExpress.XtraReports.UI.XRLabel();
            this.xrtReportDate         = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer1           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer3           = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer2           = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader            = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1           = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15         = new DevExpress.XtraReports.UI.XRTableCell();
            this.GroupFooter1          = new DevExpress.XtraReports.UI.GroupFooterBand();
            this.PageFooter            = new DevExpress.XtraReports.UI.PageFooterBand();
            this.xrPageInfo1           = new DevExpress.XtraReports.UI.XRPageInfo();
            this.formattingRule1       = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable2
            });
            this.Detail.HeightF       = 25.41666F;
            this.Detail.KeepTogether  = true;
            this.Detail.Name          = "Detail";
            this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrTable2
            //
            this.xrTable2.Borders =
                ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left |
                                                        DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(2.000936F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1082.999F, 25.41666F);
            this.xrTable2.StylePriority.UseBorders       = false;
            this.xrTable2.StylePriority.UseFont          = false;
            this.xrTable2.StylePriority.UsePadding       = false;
            this.xrTable2.StylePriority.UseTextAlignment = false;
            this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrtstt,
                this.xrtEmployeeCode,
                this.xrtFullName,
                this.xrtBirthDate,
                this.xrtSex,
                this.xrtAddress,
                this.xrtPhone,
                this.xrtInsuranceNumber,
                this.xrtInsuranceIssueDate,
                this.xrtPosition
            });
            this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.StylePriority.UseFont          = false;
            this.xrTableRow2.StylePriority.UseTextAlignment = false;
            this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            this.xrTableRow2.Weight        = 1D;
            //
            // xrtstt
            //
            this.xrtstt.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtstt.Name = "xrtstt";
            this.xrtstt.StylePriority.UseFont          = false;
            this.xrtstt.StylePriority.UseTextAlignment = false;
            this.xrtstt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtstt.Weight        = 0.35416665980020634D;
            //
            // xrtEmployeeCode
            //
            this.xrtEmployeeCode.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtEmployeeCode.Name = "xrtEmployeeCode";
            this.xrtEmployeeCode.StylePriority.UseFont          = false;
            this.xrtEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrtEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtEmployeeCode.Weight        = 0.86457550153778651D;
            //
            // xrtFullName
            //
            this.xrtFullName.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtFullName.Name = "xrtFullName";
            this.xrtFullName.StylePriority.UseFont          = false;
            this.xrtFullName.StylePriority.UseTextAlignment = false;
            this.xrtFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtFullName.Weight        = 1.2500006236660197D;
            //
            // xrtBirthDate
            //
            this.xrtBirthDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtBirthDate.Name = "xrtBirthDate";
            this.xrtBirthDate.StylePriority.UseFont          = false;
            this.xrtBirthDate.StylePriority.UseTextAlignment = false;
            this.xrtBirthDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtBirthDate.Weight        = 0.80729853147345287D;
            //
            // xrtSex
            //
            this.xrtSex.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtSex.Name = "xrtSex";
            this.xrtSex.StylePriority.UseFont          = false;
            this.xrtSex.StylePriority.UseTextAlignment = false;
            this.xrtSex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtSex.Weight        = 0.63802091000874361D;
            //
            // xrtAddress
            //
            this.xrtAddress.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtAddress.Name = "xrtAddress";
            this.xrtAddress.StylePriority.UseFont          = false;
            this.xrtAddress.StylePriority.UseTextAlignment = false;
            this.xrtAddress.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtAddress.Weight        = 2.4648422184067971D;
            //
            // xrtPhone
            //
            this.xrtPhone.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtPhone.Name = "xrtPhone";
            this.xrtPhone.StylePriority.UseFont          = false;
            this.xrtPhone.StylePriority.UseTextAlignment = false;
            this.xrtPhone.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtPhone.Weight        = 0.90429476301779521D;
            //
            // xrtInsuranceNumber
            //
            this.xrtInsuranceNumber.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtInsuranceNumber.Name = "xrtInsuranceNumber";
            this.xrtInsuranceNumber.StylePriority.UseFont          = false;
            this.xrtInsuranceNumber.StylePriority.UseTextAlignment = false;
            this.xrtInsuranceNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtInsuranceNumber.Weight        = 1.0511087973976754D;
            //
            // xrtInsuranceIssueDate
            //
            this.xrtInsuranceIssueDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtInsuranceIssueDate.Name = "xrtInsuranceIssueDate";
            this.xrtInsuranceIssueDate.StylePriority.UseFont          = false;
            this.xrtInsuranceIssueDate.StylePriority.UseTextAlignment = false;
            this.xrtInsuranceIssueDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtInsuranceIssueDate.Weight        = 1.0670792866941483D;
            //
            // xrtPosition
            //
            this.xrtPosition.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtPosition.Name = "xrtPosition";
            this.xrtPosition.StylePriority.UseFont          = false;
            this.xrtPosition.StylePriority.UseTextAlignment = false;
            this.xrtPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtPosition.Weight        = 1.4286072963765166D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 49F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 54F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // GroupHeader1
            //
            this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable3
            });
            this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[]
            {
                new DevExpress.XtraReports.UI.GroupField("", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
            });
            this.GroupHeader1.HeightF = 25.41666F;
            this.GroupHeader1.Name    = "GroupHeader1";
            //
            // xrTable3
            //
            this.xrTable3.Borders =
                ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left |
                                                        DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(2.000936F, 0F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow3
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(1082.999F, 25.41666F);
            this.xrTable3.StylePriority.UseBorders = false;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrTableCell9,
                this.xrtDepartmentName
            });
            this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.StylePriority.UseFont          = false;
            this.xrTableRow3.StylePriority.UseTextAlignment = false;
            this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow3.Weight        = 1D;
            //
            // xrTableCell9
            //
            this.xrTableCell9.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left |
                                                       DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.StylePriority.UseBorders = false;
            this.xrTableCell9.Weight = 0.020000008040643349D;
            //
            // xrtDepartmentName
            //
            this.xrtDepartmentName.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right |
                                                       DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrtDepartmentName.Name    = "xrtDepartmentName";
            this.xrtDepartmentName.Padding = new DevExpress.XtraPrinting.PaddingInfo(11, 0, 0, 0, 100F);
            this.xrtDepartmentName.StylePriority.UseBorders       = false;
            this.xrtDepartmentName.StylePriority.UsePadding       = false;
            this.xrtDepartmentName.StylePriority.UseTextAlignment = false;
            this.xrtDepartmentName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtDepartmentName.Weight        = 10.809994580338495D;
            xrtDepartmentName.BeforePrint       += new PrintEventHandler(Group_BeforePrint);
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrLogo,
                this.xrl_TitleBC,
                this.xrl_TenCongTy
            });
            this.ReportHeader.HeightF = 207F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrLogo
            //
            this.xrLogo.LocationFloat            = new DevExpress.Utils.PointFloat(58.33333F, 0F);
            this.xrLogo.Name                     = "xrLogo";
            this.xrLogo.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 1, 1, 100F);
            this.xrLogo.SizeF                    = new System.Drawing.SizeF(110F, 110F);
            this.xrLogo.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
            this.xrLogo.StylePriority.UsePadding = false;
            //
            // xrl_TitleBC
            //
            this.xrl_TitleBC.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_TitleBC.LocationFloat                  = new DevExpress.Utils.PointFloat(1.00046F, 154.5417F);
            this.xrl_TitleBC.Name                           = "xrl_TitleBC";
            this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1083F, 23F);
            this.xrl_TitleBC.StylePriority.UseFont          = false;
            this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
            this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH CÁN BỘ THAM GIA BHXH";
            this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrl_TenCongTy
            //
            this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(1.00046F, 112.875F);
            this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
            this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
            this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(570.8333F, 23F);
            this.xrl_TenCongTy.StylePriority.UseFont          = false;
            this.xrl_TenCongTy.StylePriority.UsePadding       = false;
            this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
            this.xrl_TenCongTy.Text                           = "CÔNG TY TNHH THƯƠNG MẠI VÀ XÂY DỰNG TRUNG CHÍNH";
            this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrl_ten3,
                this.xrl_ten2,
                this.xrl_ten1,
                this.xrtReportDate,
                this.xrl_footer1,
                this.xrl_footer3,
                this.xrl_footer2
            });
            this.ReportFooter.HeightF = 209F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // xrl_ten3
            //
            this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(764.0483F, 149.375F);
            this.xrl_ten3.Name                           = "xrl_ten3";
            this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
            this.xrl_ten3.StylePriority.UseFont          = false;
            this.xrl_ten3.StylePriority.UseTextAlignment = false;
            this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_ten2
            //
            this.xrl_ten2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten2.LocationFloat                  = new DevExpress.Utils.PointFloat(372.7372F, 149.375F);
            this.xrl_ten2.Name                           = "xrl_ten2";
            this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
            this.xrl_ten2.StylePriority.UseFont          = false;
            this.xrl_ten2.StylePriority.UseTextAlignment = false;
            this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_ten1
            //
            this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(1.000458F, 149.375F);
            this.xrl_ten1.Name                           = "xrl_ten1";
            this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
            this.xrl_ten1.StylePriority.UseFont          = false;
            this.xrl_ten1.StylePriority.UseTextAlignment = false;
            this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrtReportDate
            //
            this.xrtReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
            this.xrtReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(745.2785F, 24.58331F);
            this.xrtReportDate.Name                           = "xrtReportDate";
            this.xrtReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrtReportDate.SizeF                          = new System.Drawing.SizeF(339.7215F, 23F);
            this.xrtReportDate.StylePriority.UseFont          = false;
            this.xrtReportDate.StylePriority.UseTextAlignment = false;
            this.xrtReportDate.Text                           = "{0} ngày {1} tháng {2} năm {3}";
            this.xrtReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrl_footer1
            //
            this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 49.58331F);
            this.xrl_footer1.Name                           = "xrl_footer1";
            this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
            this.xrl_footer1.StylePriority.UseFont          = false;
            this.xrl_footer1.StylePriority.UseTextAlignment = false;
            this.xrl_footer1.Text                           = "NGƯỜI LẬP";
            this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer3
            //
            this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(763.5075F, 49.58331F);
            this.xrl_footer3.Name                           = "xrl_footer3";
            this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(303.2635F, 23F);
            this.xrl_footer3.StylePriority.UseFont          = false;
            this.xrl_footer3.StylePriority.UseTextAlignment = false;
            this.xrl_footer3.Text                           = "TỔNG GIÁM ĐỐC";
            this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer2
            //
            this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(371.7368F, 49.58331F);
            this.xrl_footer2.Name                           = "xrl_footer2";
            this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
            this.xrl_footer2.StylePriority.UseFont          = false;
            this.xrl_footer2.StylePriority.UseTextAlignment = false;
            this.xrl_footer2.Text                           = "PHÒNG HCNS";
            this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable1
            });
            this.PageHeader.HeightF = 38.33333F;
            this.PageHeader.Name    = "PageHeader";
            //
            // xrTable1
            //
            this.xrTable1.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left |
                                                         DevExpress.XtraPrinting.BorderSide.Top)
                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(2.000038F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1083F, 38.33333F);
            this.xrTable1.StylePriority.UseBorders       = false;
            this.xrTable1.StylePriority.UseFont          = false;
            this.xrTable1.StylePriority.UsePadding       = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrTableCell1,
                this.xrTableCell2,
                this.xrTableCell4,
                this.xrTableCell3,
                this.xrTableCell5,
                this.xrTableCell6,
                this.xrTableCell7,
                this.xrTableCell8,
                this.xrTableCell12,
                this.xrTableCell15
            });
            this.xrTableRow1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.StylePriority.UseFont          = false;
            this.xrTableRow1.StylePriority.UseTextAlignment = false;
            this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow1.Weight        = 1D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.Name   = "xrTableCell1";
            this.xrTableCell1.Text   = "STT";
            this.xrTableCell1.Weight = 0.35416665980020634D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.Name   = "xrTableCell2";
            this.xrTableCell2.Text   = "Mã nhân viên";
            this.xrTableCell2.Weight = 0.8645834853771206D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Name   = "xrTableCell4";
            this.xrTableCell4.Text   = "Họ tên";
            this.xrTableCell4.Weight = 1.2499995319741089D;
            //
            // xrTableCell3
            //
            this.xrTableCell3.Name   = "xrTableCell3";
            this.xrTableCell3.Text   = "Ngày sinh";
            this.xrTableCell3.Weight = 0.80729163932602965D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.Name   = "xrTableCell5";
            this.xrTableCell5.Text   = "Giới tính";
            this.xrTableCell5.Weight = 0.63802091000874361D;
            //
            // xrTableCell6
            //
            this.xrTableCell6.Name   = "xrTableCell6";
            this.xrTableCell6.Text   = "Địa chỉ";
            this.xrTableCell6.Weight = 2.4648454812932687D;
            //
            // xrTableCell7
            //
            this.xrTableCell7.Name   = "xrTableCell7";
            this.xrTableCell7.Text   = "Điện thoại";
            this.xrTableCell7.Weight = 0.90429460460702282D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Name   = "xrTableCell8";
            this.xrTableCell8.Text   = "Số thẻ BHXH";
            this.xrTableCell8.Weight = 1.0511072598253863D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Name   = "xrTableCell12";
            this.xrTableCell12.Text   = "Ngày cấp BHXH";
            this.xrTableCell12.Weight = 1.0670777197907384D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.Name   = "xrTableCell15";
            this.xrTableCell15.Text   = "Chức vụ";
            this.xrTableCell15.Weight = 1.4286072963765166D;
            //
            // GroupFooter1
            //
            this.GroupFooter1.HeightF = 25F;
            this.GroupFooter1.Name    = "GroupFooter1";
            //
            // PageFooter
            //
            this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrPageInfo1
            });
            this.PageFooter.HeightF = 100F;
            this.PageFooter.Name    = "PageFooter";
            //
            // xrPageInfo1
            //
            this.xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrPageInfo1.Format                         = "Trang {0} của {1}";
            this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(961.9583F, 38.54167F);
            this.xrPageInfo1.Name                           = "xrPageInfo1";
            this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0417F, 23.00001F);
            this.xrPageInfo1.StylePriority.UseFont          = false;
            this.xrPageInfo1.StylePriority.UseTextAlignment = false;
            this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // rp_SocialInsurance
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.GroupHeader1,
                this.ReportHeader,
                this.ReportFooter,
                this.PageHeader,
                this.GroupFooter1,
                this.PageFooter
            });
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[]
            {
                this.formattingRule1
            });
            this.Landscape  = true;
            this.Margins    = new System.Drawing.Printing.Margins(6, 6, 49, 54);
            this.PageHeight = 850;
            this.PageWidth  = 1100;
            this.Version    = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptMultiInvoicesToPrint.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.header = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrOrderNum = new DevExpress.XtraReports.UI.XRTableCell();
     this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
     this.colDonVi = new DevExpress.XtraReports.UI.XRTableCell();
     this.colSoLuong = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPercent = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrDiscount = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPayment = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.dsMultiInvoicesToPrint1 = new dsMultiInvoicesToPrint();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.invoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.InvoicesSelectByWhereTableAdapter();
     this.productsInInvoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.ProductsInInvoicesSelectByWhereTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.header});
     this.Detail.HeightF = 106.2084F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoiceNo", "Số: {0}")});
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 27.50006F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 16F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.9580771F, 43.50004F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(746.9168F, 20F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable7
     //
     this.xrTable7.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(9.999903F, 70.20839F);
     this.xrTable7.Name = "xrTable7";
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
     this.xrTable7.SizeF = new System.Drawing.SizeF(731.7083F, 36F);
     this.xrTable7.StylePriority.UseFont = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell25,
         this.xrTableCell24,
         this.xrTableCell7,
         this.xrTableCell19});
     this.xrTableRow8.Name = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "Khách hàng: ";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight = 0.76041707714783124D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.Weight = 1.6354165423495146D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseFont = false;
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "Điện thoại:";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell25.Weight = 0.62583404093619488D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Phone")});
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.Text = "xrTableCell24";
     this.xrTableCell24.Weight = 1.1164577939005926D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text = "Địa chỉ: ";
     this.xrTableCell7.Weight = 0.51395781087784642D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CustomerAddress")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.Weight = 2.6649996045159052D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27,
         this.xrTableCell28,
         this.xrTableCell29});
     this.xrTableRow9.Name = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.StylePriority.UseFont = false;
     this.xrTableCell26.Text = "Địa chỉ: ";
     this.xrTableCell26.Weight = 0.76041707714783124D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.DeliveryAddress")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.Weight = 3.377708655696229D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.StylePriority.UsePadding = false;
     this.xrTableCell28.Text = "Ngày: ";
     this.xrTableCell28.Weight = 0.51395721385922755D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CurrentDate", "{0:dd/MM/yyyy}")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.Weight = 2.664999923024598D;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.Snow;
     this.xrTable1.BorderColor = System.Drawing.Color.Black;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.BorderWidth = 1;
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(749.5835F, 25F);
     this.xrTable1.StylePriority.UseBackColor = false;
     this.xrTable1.StylePriority.UseBorderColor = false;
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseBorderWidth = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell22,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell20,
         this.xrTableCell17,
         this.xrTableCell5});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "STT";
     this.xrTableCell1.Weight = 0.36560024648643036D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders = false;
     this.xrTableCell2.Text = "Tên Hàng Hoá";
     this.xrTableCell2.Weight = 2.3565548083905545D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.Text = "Trọng lượng";
     this.xrTableCell22.Weight = 0.78342919997407734D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders = false;
     this.xrTableCell3.Text = "ĐVT";
     this.xrTableCell3.Weight = 0.47005750662449247D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Text = "Đơn giá bán";
     this.xrTableCell4.Weight = 0.78969598039839828D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "Số lượng bán";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.85288598746242816D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.Text = "Tặng";
     this.xrTableCell20.Weight = 0.44682014695324773D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Text = "Thành tiền";
     this.xrTableCell5.Weight = 1.0048792922737211D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 0F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.HeightF = 5.625057F;
     this.PageHeader.Name = "PageHeader";
     //
     // header
     //
     this.header.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 0F);
     this.header.Name = "header";
     this.header.SizeF = new System.Drawing.SizeF(748.9584F, 27.50006F);
     //
     // xrTable2
     //
     this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth = 1;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(749.5835F, 20F);
     this.xrTable2.StylePriority.UseBorderDashStyle = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrOrderNum,
         this.colHangHoa,
         this.colDonVi,
         this.colSoLuong,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell12,
         this.xrTableCell35,
         this.xrTableCell31});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrOrderNum
     //
     this.xrOrderNum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrOrderNum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.RowIn" +
                 "dex")});
     this.xrOrderNum.Name = "xrOrderNum";
     this.xrOrderNum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrOrderNum.StylePriority.UseBorders = false;
     this.xrOrderNum.StylePriority.UsePadding = false;
     this.xrOrderNum.StylePriority.UseTextAlignment = false;
     this.xrOrderNum.Text = "xrOrderNum";
     this.xrOrderNum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrOrderNum.Weight = 0.36458328247070315D;
     //
     // colHangHoa
     //
     this.colHangHoa.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.produ" +
                 "ctname")});
     this.colHangHoa.Name = "colHangHoa";
     this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colHangHoa.StylePriority.UseBorders = false;
     this.colHangHoa.StylePriority.UsePadding = false;
     this.colHangHoa.StylePriority.UseTextAlignment = false;
     this.colHangHoa.Text = "colHangHoa";
     this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.colHangHoa.Weight = 2.3499999233670534D;
     //
     // colDonVi
     //
     this.colDonVi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colDonVi.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Style" +
                 "")});
     this.colDonVi.Name = "colDonVi";
     this.colDonVi.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colDonVi.StylePriority.UseBorders = false;
     this.colDonVi.StylePriority.UsePadding = false;
     this.colDonVi.Text = "colDonVi";
     this.colDonVi.Weight = 0.78125038790315038D;
     //
     // colSoLuong
     //
     this.colSoLuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colSoLuong.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Unit")});
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colSoLuong.StylePriority.UseBorders = false;
     this.colSoLuong.StylePriority.UsePadding = false;
     this.colSoLuong.Text = "colSoLuong";
     this.colSoLuong.Weight = 0.46875033858450066D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Curre" +
                 "ntPrice", "{0:n0}")});
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UseBorders = false;
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:0.00 VND}";
     this.xrTableCell11.Summary = xrSummary1;
     this.xrTableCell11.Text = "xrTableCell11";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.Weight = 0.78749918670705688D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Quant" +
                 "ity", "{0:n0}")});
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell30.StylePriority.UsePadding = false;
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.Text = "xrTableCell30";
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell30.Weight = 0.85051490427718135D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Bonus" +
                 "", "{0:n0}")});
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight = 0.4455766067495005D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total" +
                 "", "{0:n0}")});
     this.xrTableCell31.Name = "xrTableCell31";
     this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell31.StylePriority.UsePadding = false;
     this.xrTableCell31.StylePriority.UseTextAlignment = false;
     this.xrTableCell31.Text = "[InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total]";
     this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell31.Weight = 1.0020843341075598D;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Notes")});
     this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(9.041818F, 111.7916F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(578.4171F, 16F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // xrTable3
     //
     this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth = 1;
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow4,
         this.xrTableRow5});
     this.xrTable3.SizeF = new System.Drawing.SizeF(749.5835F, 60F);
     this.xrTable3.StylePriority.UseBorderDashStyle = false;
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseBorderWidth = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell10,
         this.xrSum});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.Weight = 5.6337398317540881D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Weight = 0.89610777590259483D;
     //
     // xrSum
     //
     this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.FinalTotal", "{0:n0}")});
     this.xrSum.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrSum.Name = "xrSum";
     this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrSum.StylePriority.UseFont = false;
     this.xrSum.StylePriority.UsePadding = false;
     this.xrSum.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:n0}";
     this.xrSum.Summary = xrSummary2;
     this.xrSum.Text = "xrSum";
     this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrSum.Weight = 1.0076542233980046D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrPercent,
         this.xrTableCell13,
         this.xrDiscount});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseFont = false;
     this.xrTableCell18.Text = "Chiết khấu:";
     this.xrTableCell18.Weight = 4.7784974502941386D;
     //
     // xrPercent
     //
     this.xrPercent.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPercent.Name = "xrPercent";
     this.xrPercent.StylePriority.UseFont = false;
     this.xrPercent.StylePriority.UseTextAlignment = false;
     this.xrPercent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPercent.Weight = 0.855243157122188D;
     this.xrPercent.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrPercent_BeforePrint);
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 0.89610592194689409D;
     //
     // xrDiscount
     //
     this.xrDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Discount", "{0:n0}")});
     this.xrDiscount.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrDiscount.Name = "xrDiscount";
     this.xrDiscount.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrDiscount.StylePriority.UseFont = false;
     this.xrDiscount.StylePriority.UsePadding = false;
     this.xrDiscount.StylePriority.UseTextAlignment = false;
     this.xrDiscount.Text = "xrDiscount";
     this.xrDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrDiscount.Weight = 1.0076553016914669D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell36,
         this.xrTableCell34,
         this.xrPayment});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseFont = false;
     this.xrTableCell32.Text = "Số tiền phải thanh toán:";
     this.xrTableCell32.Weight = 4.7784974502941386D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.Weight = 0.85524315712218835D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.Weight = 0.89610592533963673D;
     //
     // xrPayment
     //
     this.xrPayment.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Payment", "{0:n0}")});
     this.xrPayment.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPayment.Name = "xrPayment";
     this.xrPayment.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrPayment.StylePriority.UseFont = false;
     this.xrPayment.StylePriority.UsePadding = false;
     this.xrPayment.StylePriority.UseTextAlignment = false;
     this.xrPayment.Text = "[InvoicesSelectByWhere.Payment]";
     this.xrPayment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPayment.Weight = 1.0076552982987241D;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 132.7916F);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text = "Nhân viên bán hàng";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(8.208816F, 91.79157F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(64.58333F, 16.00001F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.Text = "Ghi chú: ";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Seller")});
     this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 192.5001F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(130F, 16.00002F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.SellerPhone")});
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(593.0836F, 208.5001F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(129.0001F, 16F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable6
     //
     this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 60.00001F);
     this.xrTable6.Name = "xrTable6";
     this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
     this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
     this.xrTable6.StylePriority.UseBorders = false;
     this.xrTable6.StylePriority.UseFont = false;
     this.xrTable6.StylePriority.UseTextAlignment = false;
     this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight = 1.0847216847737626D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
     this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:0.00 VND}";
     this.xrTableCell9.Summary = xrSummary3;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight = 5.4152783152262369D;
     //
     // lbchu
     //
     this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.lbchu.Name = "lbchu";
     this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbchu.SizeF = new System.Drawing.SizeF(623.7981F, 20F);
     this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
     //
     // GroupFooter2
     //
     this.GroupFooter2.HeightF = 20.45835F;
     this.GroupFooter2.Name = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 132.7916F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text = "Nhân viên giao hàng";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.DeliverPhone")});
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 208.5001F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Deliver")});
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 192.5001F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(72.79218F, 91.79156F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(514.6667F, 16F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "- Vui lòng kiểm tra kỹ hàng trước khi nhận. Nhân viên bán hàng không được nhận ti" +
         "ền và hàng hóa.";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238F);
     this.xrPageBreak1.Name = "xrPageBreak1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 132.7916F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "Khách hàng";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 208.5001F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // dsMultiInvoicesToPrint1
     //
     this.dsMultiInvoicesToPrint1.DataSetName = "dsMultiInvoicesToPrint";
     this.dsMultiInvoicesToPrint1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2,
         this.GroupFooter3});
     this.DetailReport.DataMember = "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere";
     this.DetailReport.DataSource = this.dsMultiInvoicesToPrint1;
     this.DetailReport.Level = 0;
     this.DetailReport.Name = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail1.HeightF = 20F;
     this.Detail1.Name = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel17,
         this.xrLabel4,
         this.xrTable3,
         this.xrLabel20,
         this.xrLabel3,
         this.xrLabel5,
         this.xrPageBreak1,
         this.xrLabel1,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel9,
         this.xrLabel11});
     this.GroupFooter3.HeightF = 250F;
     this.GroupFooter3.Name = "GroupFooter3";
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.Text = "CK(%)";
     this.xrTableCell17.Weight = 0.44682014695324773D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Disco" +
                 "unt", "{0:n2}")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell35.StylePriority.UsePadding = false;
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell35.Weight = 0.4455766067495005D;
     //
     // invoicesSelectByWhereTableAdapter1
     //
     this.invoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // productsInInvoicesSelectByWhereTableAdapter1
     //
     this.productsInInvoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // rptMultiInvoicesToPrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupFooter2,
         this.DetailReport});
     this.DataAdapter = this.productsInInvoicesSelectByWhereTableAdapter1;
     this.DataMember = "InvoicesSelectByWhere";
     this.DataSource = this.dsMultiInvoicesToPrint1;
     this.Margins = new System.Drawing.Printing.Margins(49, 50, 20, 0);
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table5            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ZaposleniSaoOsig2));
     this.sqlDataSource1         = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption1          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupData1             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupFooterBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo               = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader           = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader2           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader3           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader4           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupFooter1           = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.pageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.table1                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table2                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table3                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table4                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.label2                 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "localhost_DesignSaoOsig1_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "DesignSaoOsig1";
     msSqlConnectionParameters1.ServerName        = "(LocalDb)\\MSSQLLocalDB";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "PrezimeIme";
     table5.Name                  = "tblZaposleni_AD";
     columnExpression1.Table      = table5;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "NetworkLogin";
     columnExpression2.Table      = table5;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "OrgUnitID";
     columnExpression3.Table      = table5;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Status";
     columnExpression4.Table      = table5;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Name = "tblZaposleni_AD";
     selectQuery1.Tables.Add(table5);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // GroupCaption1
     //
     this.GroupCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupCaption1.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption1.BorderWidth   = 2F;
     this.GroupCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupCaption1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupCaption1.Name          = "GroupCaption1";
     this.GroupCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupData1
     //
     this.GroupData1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupData1.BorderColor   = System.Drawing.Color.White;
     this.GroupData1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupData1.BorderWidth   = 2F;
     this.GroupData1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupData1.ForeColor     = System.Drawing.Color.White;
     this.GroupData1.Name          = "GroupData1";
     this.GroupData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooterBackground3
     //
     this.GroupFooterBackground3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(117)))), ((int)(((byte)(129)))));
     this.GroupFooterBackground3.BorderColor   = System.Drawing.Color.White;
     this.GroupFooterBackground3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupFooterBackground3.BorderWidth   = 2F;
     this.GroupFooterBackground3.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupFooterBackground3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupFooterBackground3.Name          = "GroupFooterBackground3";
     this.GroupFooterBackground3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupFooterBackground3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label1
     });
     this.ReportHeader.HeightF = 60F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Status", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 27F;
     this.GroupHeader1.Level      = 1;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrgUnitID", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader2.HeightF    = 27F;
     this.GroupHeader2.Level      = 2;
     this.GroupHeader2.Name       = "GroupHeader2";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table3
     });
     this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("NetworkLogin", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader3.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader3.HeightF    = 27F;
     this.GroupHeader3.Level      = 3;
     this.GroupHeader3.Name       = "GroupHeader3";
     //
     // GroupHeader4
     //
     this.GroupHeader4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table4
     });
     this.GroupHeader4.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("PrezimeIme", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader4.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader4.HeightF    = 27F;
     this.GroupHeader4.Level      = 4;
     this.GroupHeader4.Name       = "GroupHeader4";
     //
     // Detail
     //
     this.Detail.HeightF = 0F;
     this.Detail.Name    = "Detail";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label2
     });
     this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
     this.GroupFooter1.HeightF    = 6F;
     this.GroupFooter1.Name       = "GroupFooter1";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.Text          = "Izvjestaj o zaposlenicima SaoOsig";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "GroupCaption1";
     this.tableCell1.Text      = "STATUS";
     this.tableCell1.Weight    = 0.082820504995492789D;
     //
     // tableCell2
     //
     this.tableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Status]")
     });
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "GroupData1";
     this.tableCell2.Weight    = 0.91717951847956736D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table2.Name          = "table2";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell3,
         this.tableCell4
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 1D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "GroupCaption1";
     this.tableCell3.Text      = "ORG UNIT ID";
     this.tableCell3.Weight    = 0.12101206852839544D;
     //
     // tableCell4
     //
     this.tableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrgUnitID]")
     });
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "GroupData1";
     this.tableCell4.Weight    = 0.87898794320913465D;
     //
     // table3
     //
     this.table3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table3.Name          = "table3";
     this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow3
     });
     this.table3.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow3
     //
     this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow3.Name   = "tableRow3";
     this.tableRow3.Weight = 1D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "GroupCaption1";
     this.tableCell5.Text      = "NETWORK LOGIN";
     this.tableCell5.Weight    = 0.16409270066481371D;
     //
     // tableCell6
     //
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NetworkLogin]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "GroupData1";
     this.tableCell6.Weight    = 0.83590726412259619D;
     //
     // table4
     //
     this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table4.Name          = "table4";
     this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow4
     });
     this.table4.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow4
     //
     this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell7,
         this.tableCell8
     });
     this.tableRow4.Name   = "tableRow4";
     this.tableRow4.Weight = 1D;
     //
     // tableCell7
     //
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "GroupCaption1";
     this.tableCell7.Text      = "PREZIME IME";
     this.tableCell7.Weight    = 0.12689961360051083D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PrezimeIme]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "GroupData1";
     this.tableCell8.Weight    = 0.87310039813701923D;
     //
     // label2
     //
     this.label2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.label2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.label2.Name                     = "label2";
     this.label2.SizeF                    = new System.Drawing.SizeF(650F, 2.08F);
     this.label2.StyleName                = "GroupFooterBackground3";
     this.label2.StylePriority.UseBorders = false;
     //
     // ZaposleniSaoOsig2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupHeader3,
         this.GroupHeader4,
         this.Detail,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblZaposleni_AD";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.GroupCaption1,
         this.GroupData1,
         this.GroupFooterBackground3,
         this.PageInfo
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "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();
 }
 /// <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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1  = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = 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.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.QueryParameter       queryParameter8  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(GeneralIncomeStatementFromToDate));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.FromDate       = new DevExpress.XtraReports.Parameters.Parameter();
     this.ToDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.companyid      = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.financialyear  = new DevExpress.XtraReports.Parameters.Parameter();
     this.nullparam      = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     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.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.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();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     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.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel7
     });
     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;
     //
     // FromDate
     //
     this.FromDate.Description = "FromDate";
     this.FromDate.Name        = "FromDate";
     this.FromDate.Type        = typeof(System.DateTime);
     this.FromDate.ValueInfo   = "2001-01-01";
     //
     // ToDate
     //
     this.ToDate.Description = "ToDate";
     this.ToDate.Name        = "ToDate";
     this.ToDate.Type        = typeof(System.DateTime);
     this.ToDate.ValueInfo   = "2021-01-01";
     //
     // companyid
     //
     this.companyid.Description = "companyid";
     this.companyid.Name        = "companyid";
     this.companyid.Type        = typeof(long);
     this.companyid.ValueInfo   = "204";
     this.companyid.Visible     = false;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "companyid";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql   = "select * from Finance_Setup_FinancialYear where companyid = @companyid";
     storedProcQuery1.Name = "Finance_GeneralIncomeStatementFromToDate";
     queryParameter2.Name  = "@companyid";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     queryParameter3.Name  = "@financialyear";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?financialyear", typeof(long));
     queryParameter4.Name  = "@FromDate";
     queryParameter4.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value = new DevExpress.DataAccess.Expression("?FromDate", typeof(string));
     queryParameter5.Name  = "@ToDate";
     queryParameter5.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value = new DevExpress.DataAccess.Expression("?ToDate", typeof(string));
     queryParameter6.Name  = "@countryid";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("?nullparam", typeof(long));
     queryParameter7.Name  = "@cityid";
     queryParameter7.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value = new DevExpress.DataAccess.Expression("?nullparam", typeof(long));
     queryParameter8.Name  = "@branchid";
     queryParameter8.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter8.Value = new DevExpress.DataAccess.Expression("?nullparam", typeof(long));
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.Parameters.Add(queryParameter7);
     storedProcQuery1.Parameters.Add(queryParameter8);
     storedProcQuery1.StoredProcName = "Finance_GeneralIncomeStatementFromToDate";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // financialyear
     //
     this.financialyear.Description           = "financialyear";
     dynamicListLookUpSettings1.DataMember    = "Query";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "Name";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.SortOrder     = DevExpress.Data.ColumnSortOrder.Descending;
     dynamicListLookUpSettings1.ValueMember   = "FinancialYearId";
     this.financialyear.LookUpSettings        = dynamicListLookUpSettings1;
     this.financialyear.Name      = "financialyear";
     this.financialyear.Type      = typeof(long);
     this.financialyear.ValueInfo = "30";
     //
     // nullparam
     //
     this.nullparam.AllowNull   = true;
     this.nullparam.Description = "nullparam";
     this.nullparam.Name        = "nullparam";
     this.nullparam.Type        = typeof(long);
     this.nullparam.Visible     = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1,
         this.xrTable1
     });
     this.GroupHeader1.Name = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 75F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Text      = "Account Code";
     this.xrTableCell1.Weight    = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Text      = "Description";
     this.xrTableCell2.Weight    = 3.5D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.Text      = "Balance";
     this.xrTableCell3.Weight    = 2D;
     //
     // xrTable2
     //
     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(650F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_GeneralIncomeStatementFromToDate].[AccountCode]")
     });
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.Text      = "xrTableCell1";
     this.xrTableCell6.Weight    = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_GeneralIncomeStatementFromToDate].[Head]")
     });
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.Text      = "xrTableCell2";
     this.xrTableCell7.Weight    = 3.5D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_GeneralIncomeStatementFromToDate].[NetBalance]")
     });
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.Text      = "xrTableCell3";
     this.xrTableCell8.Weight    = 2D;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "From Date:";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?FromDate")
     });
     this.xrLabel2.LocationFloat    = new DevExpress.Utils.PointFloat(100F, 0F);
     this.xrLabel2.Multiline        = true;
     this.xrLabel2.Name             = "xrLabel2";
     this.xrLabel2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text             = "xrLabel2";
     this.xrLabel2.TextFormatString = "{0:dd-MMM-yy}";
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?ToDate")
     });
     this.xrLabel3.LocationFloat    = new DevExpress.Utils.PointFloat(550F, 0F);
     this.xrLabel3.Multiline        = true;
     this.xrLabel3.Name             = "xrLabel3";
     this.xrLabel3.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel3.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.Text             = "xrLabel3";
     this.xrLabel3.TextFormatString = "{0:dd-MMM-yy}";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(450F, 0F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.Text          = "To Date:";
     //
     // xrLabel5
     //
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(225F, 0F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.Text          = "Financial Year:";
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query].[Name]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(325F, 0F);
     this.xrLabel6.Multiline     = true;
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(273.9583F, 77F);
     this.xrLabel7.Multiline     = true;
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(105.2083F, 23F);
     this.xrLabel7.Text          = "Income Statement";
     //
     // GeneralIncomeStatementFromToDate
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Finance_GeneralIncomeStatementFromToDate";
     this.DataSource = this.sqlDataSource1;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.FromDate,
         this.ToDate,
         this.companyid,
         this.financialyear,
         this.nullparam
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #31
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeTaskList));

            this.topMarginBand1       = new DevExpress.XtraReports.UI.TopMarginBand();
            this.xrPictureBox1        = new DevExpress.XtraReports.UI.XRPictureBox();
            this.detailBand1          = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable4             = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow6          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell15        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell17        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell18        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell22        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell24        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow7          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell19        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell20        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell21        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell23        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell25        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow8          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell26        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable3             = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow4          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell14        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow5          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell16        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel1             = new DevExpress.XtraReports.UI.XRLabel();
            this.bottomMarginBand1    = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.xrPageInfo2          = new DevExpress.XtraReports.UI.XRPageInfo();
            this.xrPageInfo1          = new DevExpress.XtraReports.UI.XRPageInfo();
            this.bindingSource1       = new System.Windows.Forms.BindingSource(this.components);
            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.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.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow3          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell9         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell11        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell13        = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrLabel3             = new DevExpress.XtraReports.UI.XRLabel();
            this.statusCompleted      = new DevExpress.XtraReports.UI.CalculatedField();
            this.statusNotStarted     = new DevExpress.XtraReports.UI.CalculatedField();
            this.statusInProgress     = new DevExpress.XtraReports.UI.CalculatedField();
            this.statusNeedAssistance = new DevExpress.XtraReports.UI.CalculatedField();
            this.statusDeferred       = new DevExpress.XtraReports.UI.CalculatedField();
            this.parameter1           = new DevExpress.XtraReports.Parameters.Parameter();
            this.GroupFooter1         = new DevExpress.XtraReports.UI.GroupFooterBand();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrPictureBox1
            });
            this.topMarginBand1.HeightF      = 100F;
            this.topMarginBand1.Name         = "topMarginBand1";
            this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
            this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(473.9583F, 41.66024F);
            this.xrPictureBox1.Name          = "xrPictureBox1";
            this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(170.8333F, 56.41184F);
            this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
            this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable4,
                this.xrLabel2,
                this.xrTable3,
                this.xrLabel1
            });
            this.detailBand1.HeightF = 179.1667F;
            this.detailBand1.Name    = "detailBand1";
            this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
                new DevExpress.XtraReports.UI.GroupField("DueDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
            });
            this.xrTable4.KeepTogether  = true;
            this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 106.875F);
            this.xrTable4.Name          = "xrTable4";
            this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow6,
                this.xrTableRow7,
                this.xrTableRow8
            });
            this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 56.87504F);
            this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell15,
                this.xrTableCell17,
                this.xrTableCell18,
                this.xrTableCell22,
                this.xrTableCell24
            });
            this.xrTableRow6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
            this.xrTableRow6.Name      = "xrTableRow6";
            this.xrTableRow6.StylePriority.UseForeColor = false;
            this.xrTableRow6.Weight    = 0.45665942772890605D;
            this.xrTableCell15.Name    = "xrTableCell15";
            this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(17, 0, 0, 0, 100F);
            this.xrTableCell15.StylePriority.UseFont      = false;
            this.xrTableCell15.StylePriority.UseForeColor = false;
            this.xrTableCell15.StylePriority.UsePadding   = false;
            this.xrTableCell15.Text    = "DUE DATE";
            this.xrTableCell15.Weight  = 0.60771602766636823D;
            this.xrTableCell17.Name    = "xrTableCell17";
            this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell17.StylePriority.UseForeColor = false;
            this.xrTableCell17.StylePriority.UsePadding   = false;
            this.xrTableCell17.Text    = "ASSIGNED TO";
            this.xrTableCell17.Weight  = 0.62980608396886717D;
            this.xrTableCell18.Name    = "xrTableCell18";
            this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell18.StylePriority.UsePadding = false;
            this.xrTableCell18.Text    = "OWNER";
            this.xrTableCell18.Weight  = 0.58008992577285823D;
            this.xrTableCell22.Name    = "xrTableCell22";
            this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell22.StylePriority.UsePadding = false;
            this.xrTableCell22.Text    = "PERCENT COMPLETE";
            this.xrTableCell22.Weight  = 0.70420532486194742D;
            this.xrTableCell24.Name    = "xrTableCell24";
            this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 4, 0, 0, 100F);
            this.xrTableCell24.StylePriority.UsePadding       = false;
            this.xrTableCell24.StylePriority.UseTextAlignment = false;
            this.xrTableCell24.Text          = "PRIORITY";
            this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrTableCell24.Weight        = 0.47818263772995884D;
            this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell19,
                this.xrTableCell20,
                this.xrTableCell21,
                this.xrTableCell23,
                this.xrTableCell25
            });
            this.xrTableRow7.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTableRow7.Name = "xrTableRow7";
            this.xrTableRow7.StylePriority.UseFont = false;
            this.xrTableRow7.Weight = 0.45665943679824827D;
            this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "DueDate", "{0:d}")
            });
            this.xrTableCell19.Name    = "xrTableCell19";
            this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(17, 0, 0, 0, 100F);
            this.xrTableCell19.StylePriority.UseFont    = false;
            this.xrTableCell19.StylePriority.UsePadding = false;
            this.xrTableCell19.Text   = "12/17/2013";
            this.xrTableCell19.Weight = 0.60771602766636823D;
            this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "AssignedEmployee.FullName")
            });
            this.xrTableCell20.Name    = "xrTableCell20";
            this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell20.StylePriority.UsePadding = false;
            this.xrTableCell20.Text   = "John Hansen";
            this.xrTableCell20.Weight = 0.62980636210376506D;
            this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Owner.FullName")
            });
            this.xrTableCell21.Name    = "xrTableCell21";
            this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell21.StylePriority.UsePadding = false;
            this.xrTableCell21.Text   = "Jane Mitchell";
            this.xrTableCell21.Weight = 0.58008964763796045D;
            this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Completion")
            });
            this.xrTableCell23.Name    = "xrTableCell23";
            this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 0, 0, 100F);
            this.xrTableCell23.StylePriority.UsePadding = false;
            this.xrTableCell23.Text   = "xrTableCell23";
            this.xrTableCell23.Weight = 0.70420532486194742D;
            this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Priority")
            });
            this.xrTableCell25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(128)))), ((int)(((byte)(71)))));
            this.xrTableCell25.Name      = "xrTableCell25";
            this.xrTableCell25.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 4, 0, 0, 100F);
            this.xrTableCell25.StylePriority.UseForeColor     = false;
            this.xrTableCell25.StylePriority.UsePadding       = false;
            this.xrTableCell25.StylePriority.UseTextAlignment = false;
            this.xrTableCell25.Text          = "High";
            this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrTableCell25.Weight        = 0.47818263772995884D;
            this.xrTableRow8.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
            this.xrTableRow8.Borders         = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell26
            });
            this.xrTableRow8.Name = "xrTableRow8";
            this.xrTableRow8.StylePriority.UseBorderColor = false;
            this.xrTableRow8.StylePriority.UseBorders     = false;
            this.xrTableRow8.Weight   = 0.45665943679824827D;
            this.xrTableCell26.Name   = "xrTableCell26";
            this.xrTableCell26.Weight = 3D;
            this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Description")
            });
            this.xrLabel2.Font                     = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel2.KeepTogether             = true;
            this.xrLabel2.LocationFloat            = new DevExpress.Utils.PointFloat(128.125F, 53.66668F);
            this.xrLabel2.Name                     = "xrLabel2";
            this.xrLabel2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(7, 2, 0, 0, 100F);
            this.xrLabel2.SizeF                    = new System.Drawing.SizeF(342.7083F, 40.625F);
            this.xrLabel2.StylePriority.UseFont    = false;
            this.xrLabel2.StylePriority.UsePadding = false;
            this.xrLabel2.Text                     = "Artwork is ready. The printer’s address is 100 Main Rd. We need to see the proofs" +
                                                     " before we go to print.";
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 53.66668F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(17, 0, 0, 0, 100F);
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow4,
                this.xrTableRow5
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(109.6389F, 40.625F);
            this.xrTable3.StylePriority.UsePadding = false;
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell14
            });
            this.xrTableRow4.Name        = "xrTableRow4";
            this.xrTableRow4.Weight      = 0.79591859610841031D;
            this.xrTableCell14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
            this.xrTableCell14.Name      = "xrTableCell14";
            this.xrTableCell14.StylePriority.UseForeColor = false;
            this.xrTableCell14.Text   = "START DATE";
            this.xrTableCell14.Weight = 3D;
            this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell16
            });
            this.xrTableRow5.Name   = "xrTableRow5";
            this.xrTableRow5.Weight = 0.79591820772148691D;
            this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "StartDate", "{0:d}")
            });
            this.xrTableCell16.Name   = "xrTableCell16";
            this.xrTableCell16.Text   = "12/15/2013";
            this.xrTableCell16.Weight = 3D;
            this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Subject")
            });
            this.xrLabel1.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 16F);
            this.xrLabel1.Name                     = "xrLabel1";
            this.xrLabel1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(17, 2, 0, 0, 100F);
            this.xrLabel1.SizeF                    = new System.Drawing.SizeF(649.4167F, 22.91667F);
            this.xrLabel1.StylePriority.UseFont    = false;
            this.xrLabel1.StylePriority.UsePadding = false;
            this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrPageInfo2,
                this.xrPageInfo1
            });
            this.bottomMarginBand1.Font    = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bottomMarginBand1.HeightF = 100F;
            this.bottomMarginBand1.Name    = "bottomMarginBand1";
            this.bottomMarginBand1.StylePriority.UseFont = false;
            this.xrPageInfo2.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(166)))), ((int)(((byte)(166)))), ((int)(((byte)(166)))));
            this.xrPageInfo2.Format        = "{0:MMMM d, yyyy}";
            this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(485.4167F, 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(156.25F, 23F);
            this.xrPageInfo2.StylePriority.UseForeColor     = false;
            this.xrPageInfo2.StylePriority.UseTextAlignment = false;
            this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrPageInfo1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(166)))), ((int)(((byte)(166)))), ((int)(((byte)(166)))));
            this.xrPageInfo1.Format        = "Page {0} of {1}";
            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.SizeF         = new System.Drawing.SizeF(156.25F, 23F);
            this.xrPageInfo1.StylePriority.UseForeColor = false;
            this.bindingSource1.DataSource = typeof(DevExpress.DevAV.EmployeeTask);
            this.xrTable1.LocationFloat    = new DevExpress.Utils.PointFloat(0F, 22F);
            this.xrTable1.Name             = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 29.69642F);
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell1,
                this.xrTableCell2,
                this.xrTableCell3
            });
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.StylePriority.UseTextAlignment = false;
            this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            this.xrTableRow1.Weight        = 1D;
            this.xrTableCell1.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(128)))), ((int)(((byte)(71)))));
            this.xrTableCell1.Font         = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTableCell1.ForeColor    = System.Drawing.Color.White;
            this.xrTableCell1.Name         = "xrTableCell1";
            this.xrTableCell1.Padding      = new DevExpress.XtraPrinting.PaddingInfo(8, 0, 0, 0, 100F);
            this.xrTableCell1.StylePriority.UseBackColor     = false;
            this.xrTableCell1.StylePriority.UseFont          = false;
            this.xrTableCell1.StylePriority.UseForeColor     = false;
            this.xrTableCell1.StylePriority.UsePadding       = false;
            this.xrTableCell1.StylePriority.UseTextAlignment = false;
            this.xrTableCell1.Text          = "Tasks";
            this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell1.Weight        = 0.80032469757233127D;
            this.xrTableCell2.Name          = "xrTableCell2";
            this.xrTableCell2.Weight        = 0.024452088141954528D;
            this.xrTableCell3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(218)))), ((int)(((byte)(218)))));
            this.xrTableCell3.Font          = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTableCell3.Name          = "xrTableCell3";
            this.xrTableCell3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
            this.xrTableCell3.StylePriority.UseBackColor = false;
            this.xrTableCell3.StylePriority.UseFont      = false;
            this.xrTableCell3.StylePriority.UsePadding   = false;
            this.xrTableCell3.Text      = "Grouped by Status | Sorted by Due Date";
            this.xrTableCell3.Weight    = 2.2141840142121296D;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 73.70834F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2,
                this.xrTableRow3
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(648.9583F, 148.9583F);
            this.xrTable2.StylePriority.UseBorders       = false;
            this.xrTable2.StylePriority.UseTextAlignment = false;
            this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell4,
                this.xrTableCell5,
                this.xrTableCell7,
                this.xrTableCell8,
                this.xrTableCell6
            });
            this.xrTableRow2.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F);
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.StylePriority.UseFont          = false;
            this.xrTableRow2.StylePriority.UseTextAlignment = false;
            this.xrTableRow2.Weight = 1D;
            this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "statusNotStarted")
            });
            this.xrTableCell4.Name     = "xrTableCell4";
            this.xrTableCell4.Weight   = 1D;
            this.xrTableCell4.WordWrap = false;
            this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "statusInProgress")
            });
            this.xrTableCell5.Name     = "xrTableCell5";
            this.xrTableCell5.Weight   = 1D;
            this.xrTableCell5.WordWrap = false;
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "statusCompleted")
            });
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.StylePriority.UseTextAlignment = false;
            this.xrTableCell7.Weight   = 1D;
            this.xrTableCell7.WordWrap = false;
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "statusNeedAssistance")
            });
            this.xrTableCell8.Name     = "xrTableCell8";
            this.xrTableCell8.Weight   = 1D;
            this.xrTableCell8.WordWrap = false;
            this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "statusDeferred")
            });
            this.xrTableCell6.Name       = "xrTableCell6";
            this.xrTableCell6.Weight     = 1D;
            this.xrTableCell6.WordWrap   = false;
            this.xrTableRow3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
            this.xrTableRow3.Borders     = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell9,
                this.xrTableCell10,
                this.xrTableCell11,
                this.xrTableCell12,
                this.xrTableCell13
            });
            this.xrTableRow3.Font      = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTableRow3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
            this.xrTableRow3.Name      = "xrTableRow3";
            this.xrTableRow3.StylePriority.UseBorderColor   = false;
            this.xrTableRow3.StylePriority.UseBorders       = false;
            this.xrTableRow3.StylePriority.UseFont          = false;
            this.xrTableRow3.StylePriority.UseForeColor     = false;
            this.xrTableRow3.StylePriority.UseTextAlignment = false;
            this.xrTableRow3.Weight   = 0.5423728813559322D;
            this.xrTableCell9.Name    = "xrTableCell9";
            this.xrTableCell9.Text    = "NOT STARTED";
            this.xrTableCell9.Weight  = 1D;
            this.xrTableCell10.Name   = "xrTableCell10";
            this.xrTableCell10.Text   = "IN PROGRESS";
            this.xrTableCell10.Weight = 1D;
            this.xrTableCell11.Name   = "xrTableCell11";
            this.xrTableCell11.Text   = "COMPLETED";
            this.xrTableCell11.Weight = 1D;
            this.xrTableCell12.Name   = "xrTableCell12";
            this.xrTableCell12.Text   = "ASSISTANCE";
            this.xrTableCell12.Weight = 1D;
            this.xrTableCell13.Name   = "xrTableCell13";
            this.xrTableCell13.Text   = "DEFERRED";
            this.xrTableCell13.Weight = 1D;
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2,
                this.xrTable1
            });
            this.ReportHeader.HeightF = 246.8749F;
            this.ReportHeader.Name    = "ReportHeader";
            this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrLabel3
            });
            this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
                new DevExpress.XtraReports.UI.GroupField("Status", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
            });
            this.GroupHeader1.HeightF = 26.04167F;
            this.GroupHeader1.Name    = "GroupHeader1";
            this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
                new DevExpress.XtraReports.UI.XRBinding("Text", null, "Status")
            });
            this.xrLabel3.Font                           = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel3.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(178)))), ((int)(((byte)(144)))));
            this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel3.Name                           = "xrLabel3";
            this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF                          = new System.Drawing.SizeF(648.9583F, 26.04167F);
            this.xrLabel3.StylePriority.UseFont          = false;
            this.xrLabel3.StylePriority.UseForeColor     = false;
            this.xrLabel3.StylePriority.UseTextAlignment = false;
            this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
            this.statusCompleted.Expression              = "[][ToStr([Status]) = \'Completed\'].Count()";
            this.statusCompleted.FieldType               = DevExpress.XtraReports.UI.FieldType.Int32;
            this.statusCompleted.Name                    = "statusCompleted";
            this.statusNotStarted.Expression             = "[][ToStr([Status]) = \'NotStarted\'].Count()";
            this.statusNotStarted.FieldType              = DevExpress.XtraReports.UI.FieldType.Int32;
            this.statusNotStarted.Name                   = "statusNotStarted";
            this.statusInProgress.Expression             = "[][ToStr([Status]) = \'InProgress\'].Count()";
            this.statusInProgress.FieldType              = DevExpress.XtraReports.UI.FieldType.Int32;
            this.statusInProgress.Name                   = "statusInProgress";
            this.statusNeedAssistance.Expression         = "[][ToStr([Status]) = \'NeedAssistance\'].Count()";
            this.statusNeedAssistance.FieldType          = DevExpress.XtraReports.UI.FieldType.Int32;
            this.statusNeedAssistance.Name               = "statusNeedAssistance";
            this.statusDeferred.Expression               = "[][ToStr([Status]) = \'Deferred\'].Count()";
            this.statusDeferred.FieldType                = DevExpress.XtraReports.UI.FieldType.Int32;
            this.statusDeferred.Name                     = "statusDeferred";
            this.parameter1.Description                  = "Parameter1";
            this.parameter1.Name                         = "parameter1";
            this.parameter1.Type                         = typeof(bool);
            this.parameter1.ValueInfo                    = "True";
            this.parameter1.Visible                      = false;
            this.GroupFooter1.HeightF                    = 0F;
            this.GroupFooter1.Name                       = "GroupFooter1";
            this.GroupFooter1.PageBreak                  = DevExpress.XtraReports.UI.PageBreak.AfterBand;
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.topMarginBand1,
                this.detailBand1,
                this.bottomMarginBand1,
                this.ReportHeader,
                this.GroupHeader1,
                this.GroupFooter1
            });
            this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
                this.statusCompleted,
                this.statusNotStarted,
                this.statusInProgress,
                this.statusNeedAssistance,
                this.statusDeferred
            });
            this.DataSource = this.bindingSource1;
            this.DesignerOptions.ShowExportWarnings = false;
            this.DrawWatermark = true;
            this.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
                this.parameter1
            });
            this.SnappingMode        = DevExpress.XtraReports.UI.SnappingMode.SnapToGrid;
            this.SnapToGrid          = false;
            this.Version             = "14.1";
            this.DataSourceDemanded += new System.EventHandler <System.EventArgs>(this.EmployeeTaskList_DataSourceDemanded);
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            ((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()
    {
        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();
    }
Example #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_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();
    }
    /// <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();
    }