예제 #1
0
        private void rptWare_Congno_Chitiet_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
        {
            FormattingRule rule = new FormattingRule();

            this.FormattingRuleSheet.Add(rule);

            rule.DataSource = this.DataSource;
            rule.DataMember = this.DataMember;
            rule.Condition  = "[Sochungtu] is null";
            //rule.Formatting.BackColor = Color.WhiteSmoke;
            //rule.Formatting.ForeColor = Color.IndianRed;
            rule.Formatting.Font = new Font("Tahoma", 10, FontStyle.Bold);
            this.Detail.FormattingRules.Add(rule);

            //if (xrTable1.Rows.Count > 0 && "" + GetCurrentColumnValue("Diengiai") != "")
            //    this.Detail.Controls.RemoveAt(CurrentRowIndex);
        }
예제 #2
0
파일: XtraReport1.cs 프로젝트: koenh2/test
        private void XtraReport1_BeforePrint(object sender, PrintEventArgs e)
        {
            // Create a new rule and add it to a report.
            FormattingRule rule = new FormattingRule();

            this.FormattingRuleSheet.Add(rule);

            // Specify the rule's properties.
            rule.DataSource           = this.DataSource;
            rule.DataMember           = this.DataMember;
            rule.Condition            = "[UnitPrice] >= 30";
            rule.Formatting.BackColor = Color.WhiteSmoke;
            rule.Formatting.ForeColor = Color.IndianRed;
            rule.Formatting.Font      = new Font("Arial", 10, FontStyle.Bold);

            // Apply this rule to the detail band.
            this.Detail.FormattingRules.Add(rule);
        }
예제 #3
0
        private void ReloadFormattingRules(IResource exceptRule)
        {
            lock ( _formattingRules )
            {
                _formattingRules.Clear();
                foreach (IResource res in _formattingRuleList)
                {
                    if (res == exceptRule)
                    {
                        continue;
                    }

                    FormattingRule fmtRule = new FormattingRule();
                    fmtRule.ItemFormat   = GetRuleFormat(res);
                    fmtRule.ResourceType = res.GetStringProp(Core.Props.ContentType);
                    fmtRule.Resource     = res;

                    IResourceList conditions = res.GetLinksOfType(FilterManagerProps.ConditionResName, "LinkedCondition");
                    fmtRule.Conditions = new IResource[conditions.Count];
                    for (int i = 0; i < conditions.Count; i++)
                    {
                        fmtRule.Conditions[i] = conditions[i];
                    }

                    conditions            = res.GetLinksOfType(FilterManagerProps.ConditionResName, "LinkedNegativeCondition");
                    fmtRule.NegConditions = new IResource[conditions.Count];
                    for (int i = 0; i < conditions.Count; i++)
                    {
                        fmtRule.NegConditions[i] = conditions[i];
                    }

                    _formattingRules.Add(fmtRule);
                }
            }
            if (FormattingRulesChanged != null)
            {
                FormattingRulesChanged(this, EventArgs.Empty);
            }
        }
예제 #4
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();
 }
예제 #5
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_EmployeeReceiveGift8_3.resx";

            this.Detail                    = new DevExpress.XtraReports.UI.DetailBand();
            this.tblDetail                 = new DevExpress.XtraReports.UI.XRTable();
            this.xrDetailRow1              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCellOrder          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellEmployeeCode   = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellFullName       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellDateBirth      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellSex            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellIDNumber       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellDepartmentName = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellDescription    = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellSign           = 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.xrTenCoQuanCapTren        = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTableCell               = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6                  = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTitle                   = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader                = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.tblPageHeader             = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow11              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell241            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell11             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell242            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15             = new DevExpress.XtraReports.UI.XRTableCell();
            this.formattingRule1           = new DevExpress.XtraReports.UI.FormattingRule();
            this.ReportFooter              = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.lblReportDate             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2                  = new DevExpress.XtraReports.UI.XRLabel();
            this.lblLapBang                = new DevExpress.XtraReports.UI.XRLabel();
            this.lblThuTruong              = new DevExpress.XtraReports.UI.XRLabel();
            this.GroupHeader2              = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrTable1                  = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1               = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell4              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrGroupConstruction       = new DevExpress.XtraReports.UI.XRTableCell();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblDetail
            });
            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;
            //
            // tblDetail
            //
            this.tblDetail.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblDetail.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblDetail.Name          = "tblDetail";
            this.tblDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrDetailRow1
            });
            this.tblDetail.SizeF = new System.Drawing.SizeF(1140F, 25F);
            this.tblDetail.StylePriority.UseBorders = false;
            //
            // xrDetailRow1
            //
            this.xrDetailRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCellOrder,
                this.xrTableCellEmployeeCode,
                this.xrTableCellFullName,
                this.xrTableCellDateBirth,
                this.xrTableCellSex,
                this.xrTableCellIDNumber,
                this.xrTableCellDepartmentName,
                this.xrTableCellDescription,
                this.xrTableCellSign
            });
            this.xrDetailRow1.Name   = "xrDetailRow1";
            this.xrDetailRow1.Weight = 1D;
            //
            // xrTableCellOrder
            //
            this.xrTableCellOrder.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellOrder.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellOrder.Name    = "xrTableCellOrder";
            this.xrTableCellOrder.StylePriority.UseBorders       = false;
            this.xrTableCellOrder.StylePriority.UseFont          = false;
            this.xrTableCellOrder.StylePriority.UseTextAlignment = false;
            this.xrTableCellOrder.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellOrder.Weight        = 0.075189754881843152D;
            this.xrTableCellOrder.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrTableCellEmployeeCode
            //
            this.xrTableCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellEmployeeCode.Name    = "xrTableCellEmployeeCode";
            this.xrTableCellEmployeeCode.StylePriority.UseBorders       = false;
            this.xrTableCellEmployeeCode.StylePriority.UseFont          = false;
            this.xrTableCellEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrTableCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellEmployeeCode.Weight        = 0.2319139994319783D;
            //
            // xrTableCellFullName
            //
            this.xrTableCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellFullName.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellFullName.Name    = "xrTableCellFullName";
            this.xrTableCellFullName.StylePriority.UseBorders       = false;
            this.xrTableCellFullName.StylePriority.UseFont          = false;
            this.xrTableCellFullName.StylePriority.UseTextAlignment = false;
            this.xrTableCellFullName.Text          = " ";
            this.xrTableCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCellFullName.Weight        = 0.38721540483252925D;
            //
            // xrTableCellDateBirth
            //
            this.xrTableCellDateBirth.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellDateBirth.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellDateBirth.Name    = "xrTableCellDateBirth";
            this.xrTableCellDateBirth.StylePriority.UseBorders       = false;
            this.xrTableCellDateBirth.StylePriority.UseFont          = false;
            this.xrTableCellDateBirth.StylePriority.UseTextAlignment = false;
            this.xrTableCellDateBirth.Text          = " ";
            this.xrTableCellDateBirth.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellDateBirth.Weight        = 0.24967894983407379D;
            //
            // xrTableCellSex
            //
            this.xrTableCellSex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellSex.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellSex.Name    = "xrTableCellSex";
            this.xrTableCellSex.StylePriority.UseBorders       = false;
            this.xrTableCellSex.StylePriority.UseFont          = false;
            this.xrTableCellSex.StylePriority.UseTextAlignment = false;
            this.xrTableCellSex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellSex.Weight        = 0.24035537704228183D;
            //
            // xrTableCellIDNumber
            //
            this.xrTableCellIDNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellIDNumber.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellIDNumber.Name    = "xrTableCellIDNumber";
            this.xrTableCellIDNumber.StylePriority.UseBorders       = false;
            this.xrTableCellIDNumber.StylePriority.UseFont          = false;
            this.xrTableCellIDNumber.StylePriority.UseTextAlignment = false;
            this.xrTableCellIDNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellIDNumber.Weight        = 0.32601877767512472D;
            //
            // xrTableCellDepartmentName
            //
            this.xrTableCellDepartmentName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellDepartmentName.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellDepartmentName.Name    = "xrTableCellDepartmentName";
            this.xrTableCellDepartmentName.StylePriority.UseBorders       = false;
            this.xrTableCellDepartmentName.StylePriority.UseFont          = false;
            this.xrTableCellDepartmentName.StylePriority.UseTextAlignment = false;
            this.xrTableCellDepartmentName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellDepartmentName.Weight        = 0.36890223399403543D;
            //
            // xrTableCellDescription
            //
            this.xrTableCellDescription.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellDescription.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellDescription.Name    = "xrTableCellDescription";
            this.xrTableCellDescription.StylePriority.UseBorders       = false;
            this.xrTableCellDescription.StylePriority.UseFont          = false;
            this.xrTableCellDescription.StylePriority.UseTextAlignment = false;
            this.xrTableCellDescription.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellDescription.Weight        = 0.31369873536470971D;
            //
            // xrTableCellSign
            //
            this.xrTableCellSign.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellSign.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCellSign.Name = "xrTableCellSign";
            this.xrTableCellSign.StylePriority.UseBorders       = false;
            this.xrTableCellSign.StylePriority.UseFont          = false;
            this.xrTableCellSign.StylePriority.UseTextAlignment = false;
            this.xrTableCellSign.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellSign.Weight        = 0.43503379974969225D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 15F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 0F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTenCoQuanCapTren,
                this.xrTableCell,
                this.xrLabel6,
                this.xrTitle
            });
            this.ReportHeader.HeightF = 112.4948F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrTenCoQuanCapTren
            //
            this.xrTenCoQuanCapTren.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrTenCoQuanCapTren.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTenCoQuanCapTren.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTenCoQuanCapTren.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTenCoQuanCapTren.Name          = "xrTenCoQuanCapTren";
            this.xrTenCoQuanCapTren.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrTenCoQuanCapTren.SizeF         = new System.Drawing.SizeF(529.3843F, 24F);
            this.xrTenCoQuanCapTren.StylePriority.UseBorderColor   = false;
            this.xrTenCoQuanCapTren.StylePriority.UseBorders       = false;
            this.xrTenCoQuanCapTren.StylePriority.UseFont          = false;
            this.xrTenCoQuanCapTren.StylePriority.UseTextAlignment = false;
            this.xrTenCoQuanCapTren.Text          = "CÔNG TY TNHH THƯƠNG MẠI & XÂY DỰNG TRUNG CHÍNH";
            this.xrTenCoQuanCapTren.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrTableCell
            //
            this.xrTableCell.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrTableCell.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell.Font          = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrTableCell.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24F);
            this.xrTableCell.Name          = "xrTableCell";
            this.xrTableCell.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrTableCell.SizeF         = new System.Drawing.SizeF(204.3843F, 24F);
            this.xrTableCell.StylePriority.UseBorderColor   = false;
            this.xrTableCell.StylePriority.UseBorders       = false;
            this.xrTableCell.StylePriority.UseFont          = false;
            this.xrTableCell.StylePriority.UseTextAlignment = false;
            this.xrTableCell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel6
            //
            this.xrLabel6.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrLabel6.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel6.Font          = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(204.3843F, 24F);
            this.xrLabel6.Name          = "xrLabel6";
            this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF         = new System.Drawing.SizeF(935.6157F, 24F);
            this.xrLabel6.StylePriority.UseBorderColor   = false;
            this.xrLabel6.StylePriority.UseBorders       = false;
            this.xrLabel6.StylePriority.UseFont          = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTitle
            //
            this.xrTitle.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrTitle.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTitle.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTitle.LocationFloat = new DevExpress.Utils.PointFloat(4.999956F, 48F);
            this.xrTitle.Name          = "xrTitle";
            this.xrTitle.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrTitle.SizeF         = new System.Drawing.SizeF(1140F, 24F);
            this.xrTitle.StylePriority.UseBorderColor   = false;
            this.xrTitle.StylePriority.UseBorders       = false;
            this.xrTitle.StylePriority.UseFont          = false;
            this.xrTitle.StylePriority.UseTextAlignment = false;
            this.xrTitle.Text          = "BÁO CÁO DANH SÁCH NHÂN VIÊN ĐƯỢC TẶNG QUÀ MỒNG 8 THÁNG 3";
            this.xrTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblPageHeader
            });
            this.PageHeader.HeightF = 50.41315F;
            this.PageHeader.Name    = "PageHeader";
            //
            // tblPageHeader
            //
            this.tblPageHeader.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblPageHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
            this.tblPageHeader.Name          = "tblPageHeader";
            this.tblPageHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow11
            });
            this.tblPageHeader.SizeF = new System.Drawing.SizeF(1140F, 40.41314F);
            this.tblPageHeader.StylePriority.UseBorders = false;
            //
            // xrTableRow11
            //
            this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell241,
                this.xrTableCell11,
                this.xrTableCell242,
                this.xrTableCell1,
                this.xrTableCell6,
                this.xrTableCell8,
                this.xrTableCell5,
                this.xrTableCell2,
                this.xrTableCell15
            });
            this.xrTableRow11.Name   = "xrTableRow11";
            this.xrTableRow11.Weight = 9.2D;
            //
            // xrTableCell241
            //
            this.xrTableCell241.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell241.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell241.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell241.Name = "xrTableCell241";
            this.xrTableCell241.StylePriority.UseBorderColor = false;
            this.xrTableCell241.StylePriority.UseBorders     = false;
            this.xrTableCell241.StylePriority.UseFont        = false;
            this.xrTableCell241.Text   = "STT";
            this.xrTableCell241.Weight = 0.10177821312026929D;
            //
            // xrTableCell11
            //
            this.xrTableCell11.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell11.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.StylePriority.UseBorderColor = false;
            this.xrTableCell11.StylePriority.UseBorders     = false;
            this.xrTableCell11.StylePriority.UseFont        = false;
            this.xrTableCell11.Text   = "MÃ NV";
            this.xrTableCell11.Weight = 0.31392303945340733D;
            //
            // xrTableCell242
            //
            this.xrTableCell242.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell242.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell242.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell242.Name = "xrTableCell242";
            this.xrTableCell242.StylePriority.UseBorderColor = false;
            this.xrTableCell242.StylePriority.UseBorders     = false;
            this.xrTableCell242.StylePriority.UseFont        = false;
            this.xrTableCell242.Text   = "HỌ VÀ TÊN";
            this.xrTableCell242.Weight = 0.52414176631684906D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell1.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderColor = false;
            this.xrTableCell1.StylePriority.UseBorders     = false;
            this.xrTableCell1.StylePriority.UseFont        = false;
            this.xrTableCell1.Text   = "NGÀY SINH";
            this.xrTableCell1.Weight = 0.33796996254871D;
            //
            // xrTableCell6
            //
            this.xrTableCell6.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell6.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.StylePriority.UseBorderColor = false;
            this.xrTableCell6.StylePriority.UseBorders     = false;
            this.xrTableCell6.StylePriority.UseFont        = false;
            this.xrTableCell6.Text   = "GIỚI TÍNH";
            this.xrTableCell6.Weight = 0.32534929728519679D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell8.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseBorderColor = false;
            this.xrTableCell8.StylePriority.UseBorders     = false;
            this.xrTableCell8.StylePriority.UseFont        = false;
            this.xrTableCell8.Text   = "SỐ CMND";
            this.xrTableCell8.Weight = 0.4413047109158193D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell5.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseBorderColor = false;
            this.xrTableCell5.StylePriority.UseBorders     = false;
            this.xrTableCell5.StylePriority.UseFont        = false;
            this.xrTableCell5.Text   = "VỊ TRÍ CÔNG VIỆC";
            this.xrTableCell5.Weight = 0.49935294778371875D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell2.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseBorderColor = false;
            this.xrTableCell2.StylePriority.UseBorders     = false;
            this.xrTableCell2.StylePriority.UseFont        = false;
            this.xrTableCell2.Text   = "LOẠI HỢP ĐỒNG";
            this.xrTableCell2.Weight = 0.42462828585223078D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell15.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell15.Font = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell15.Name = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseBorderColor = false;
            this.xrTableCell15.StylePriority.UseBorders     = false;
            this.xrTableCell15.StylePriority.UseFont        = false;
            this.xrTableCell15.Text   = "KÝ NHẬN";
            this.xrTableCell15.Weight = 0.58887016190488883D;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.lblReportDate,
                this.xrLabel2,
                this.lblLapBang,
                this.lblThuTruong
            });
            this.ReportFooter.HeightF = 252.1667F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(834.9999F, 12.35601F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(300F, 15F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel2
            //
            this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
            this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(475.1825F, 32.356F);
            this.xrLabel2.Name                           = "xrLabel2";
            this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF                          = new System.Drawing.SizeF(180F, 25F);
            this.xrLabel2.StylePriority.UseFont          = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text                           = "PHÒNG HCNS";
            this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblLapBang
            //
            this.lblLapBang.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
            this.lblLapBang.LocationFloat                  = new DevExpress.Utils.PointFloat(77.05434F, 32.356F);
            this.lblLapBang.Name                           = "lblLapBang";
            this.lblLapBang.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblLapBang.SizeF                          = new System.Drawing.SizeF(180F, 25F);
            this.lblLapBang.StylePriority.UseFont          = false;
            this.lblLapBang.StylePriority.UseTextAlignment = false;
            this.lblLapBang.Text                           = "NGƯỜI LẬP";
            this.lblLapBang.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblThuTruong
            //
            this.lblThuTruong.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
            this.lblThuTruong.LocationFloat                  = new DevExpress.Utils.PointFloat(834.9999F, 32.356F);
            this.lblThuTruong.Name                           = "lblThuTruong";
            this.lblThuTruong.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblThuTruong.SizeF                          = new System.Drawing.SizeF(300F, 25F);
            this.lblThuTruong.StylePriority.UseFont          = false;
            this.lblThuTruong.StylePriority.UseTextAlignment = false;
            this.lblThuTruong.Text                           = "TỔNG GIÁM ĐỐC";
            this.lblThuTruong.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // GroupHeader2
            //
            this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable1
            });
            this.GroupHeader2.HeightF      = 28.95831F;
            this.GroupHeader2.Name         = "GroupHeader2";
            this.GroupHeader2.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
            //
            // xrTable1
            //
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1140F, 28.95831F);
            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.MiddleLeft;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell4,
                this.xrGroupConstruction
            });
            this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow1.Name    = "xrTableRow1";
            this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
            this.xrTableRow1.StylePriority.UseFont          = false;
            this.xrTableRow1.StylePriority.UsePadding       = false;
            this.xrTableRow1.StylePriority.UseTextAlignment = false;
            this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow1.Weight        = 1D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell4.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrTableCell4.Name    = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseBorders       = false;
            this.xrTableCell4.StylePriority.UseFont          = false;
            this.xrTableCell4.StylePriority.UseTextAlignment = false;
            this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell4.Weight        = 0.33347351475124437D;
            //
            // xrGroupConstruction
            //
            this.xrGroupConstruction.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrGroupConstruction.Font    = new System.Drawing.Font("Times New Roman", 8.5F, System.Drawing.FontStyle.Bold);
            this.xrGroupConstruction.Name    = "xrGroupConstruction";
            this.xrGroupConstruction.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrGroupConstruction.StylePriority.UseBorders       = false;
            this.xrGroupConstruction.StylePriority.UseFont          = false;
            this.xrGroupConstruction.StylePriority.UsePadding       = false;
            this.xrGroupConstruction.StylePriority.UseTextAlignment = false;
            this.xrGroupConstruction.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrGroupConstruction.Weight        = 11.186520728843194D;
            //
            // rp_EmployeeReceiveGift8_3
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter,
                this.GroupHeader2
            });
            this.BorderColor = System.Drawing.Color.DarkGray;
            this.Font        = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
                this.formattingRule1
            });
            this.Landscape     = true;
            this.Margins       = new System.Drawing.Printing.Margins(12, 12, 15, 0);
            this.PageHeight    = 827;
            this.PageWidth     = 1169;
            this.PaperKind     = System.Drawing.Printing.PaperKind.A4;
            this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.Version       = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
예제 #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHangHetHan));
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12    = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(825F, 48.95833F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell5,
         this.xrTableCell12
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell8.Summary       = xrSummary1;
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.75763685535931025D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TenMatHang")
     });
     this.xrTableCell6.Dpi  = 100F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "xrTableCell6";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 2.2934490375138443D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrTableCell9.Dpi  = 100F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.80335648845172447D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi  = 100F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "text";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.2194772748674545D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien", "{0:#,#}")
     });
     this.xrTableCell5.Dpi  = 100F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.4788878045182563D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().hsd")
     });
     this.xrTableCell12.Dpi  = 100F;
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 1.5562916415485952D;
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell2,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi  = 100F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "STT";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 0.94754186476410629D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 100F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Tên mặt hàng";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 2.8683133636581744D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 100F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "SL";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.0047211441528232D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi       = 100F;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Giá";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.5251447991699609D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Thành tiền ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.8495776226644305D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 100F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "HSD";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.9463830854592059D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 11.54162F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 48.95833F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.Expanded    = false;
     this.PageFooter.HeightF     = 100F;
     this.PageFooter.Name        = "PageFooter";
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 34.45834F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth   = 0F;
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.Font          = new System.Drawing.Font("Sitka Text", 34F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(160)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(804.9999F, 60.20834F);
     this.xrLabel1.StyleName     = "TableStyle";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Báo Cáo Hàng Hết Hạn Sử Dụng";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(825F, 55.62499F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 94.79166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF               = 55.62499F;
     this.GroupHeader1.Name                  = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage       = true;
     this.GroupHeader1.StylePriority.UseFont = false;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 115.0416F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(825F, 23F);
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien")
     });
     this.xrLabel3.Dpi                        = 100F;
     this.xrLabel3.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel3.LocationFloat              = new DevExpress.Utils.PointFloat(119.8967F, 58.49997F);
     this.xrLabel3.Name                       = "xrLabel3";
     this.xrLabel3.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                      = new System.Drawing.SizeF(546.77F, 30.29169F);
     this.xrLabel3.StylePriority.UseFont      = false;
     this.xrLabel3.StylePriority.UseForeColor = false;
     xrSummary2.FormatString                  = "{0:#,#} VNĐ";
     xrSummary2.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary                    = xrSummary2;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrLabel2.Dpi                        = 100F;
     this.xrLabel2.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel2.LocationFloat              = new DevExpress.Utils.PointFloat(160.5217F, 22.99999F);
     this.xrLabel2.Name                       = "xrLabel2";
     this.xrLabel2.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                      = new System.Drawing.SizeF(506.145F, 35.49998F);
     this.xrLabel2.StylePriority.UseFont      = false;
     this.xrLabel2.StylePriority.UseForeColor = false;
     xrSummary3.FormatString                  = "{0:#,#}";
     xrSummary3.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel2.Summary                    = xrSummary3;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHangHetHan()";
     storedProcQuery1.StoredProcName = "GetHangHetHan";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                        = 100F;
     this.xrLabel4.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel4.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 22.99999F);
     this.xrLabel4.Name                       = "xrLabel4";
     this.xrLabel4.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                      = new System.Drawing.SizeF(150.5217F, 35.49998F);
     this.xrLabel4.StylePriority.UseFont      = false;
     this.xrLabel4.StylePriority.UseForeColor = false;
     this.xrLabel4.Text                       = "Tổng số lượng:";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi                        = 100F;
     this.xrLabel5.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel5.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 58.49997F);
     this.xrLabel5.Name                       = "xrLabel5";
     this.xrLabel5.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                      = new System.Drawing.SizeF(109.8967F, 30.29168F);
     this.xrLabel5.StylePriority.UseFont      = false;
     this.xrLabel5.StylePriority.UseForeColor = false;
     this.xrLabel5.Text                       = "Tổng tiền:";
     //
     // BCHangHetHan
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter,
         this.GroupFooter1
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "GetHangHetHan()";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(10, 15, 34, 12);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        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 InitializeComponent()
 {
     this.Detail                  = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1                = new DevExpress.XtraReports.UI.XRTable();
     this.formattingRule1         = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRulesDataSet1 = new OrdersReportDataSet();
     this.xrTableRow3             = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell13           = 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.xrTableCell20           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22           = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader            = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1                = new DevExpress.XtraReports.UI.XRLabel();
     this.ordersTableAdapter      = new OrdersTableAdapter();
     this.GroupHeader1            = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2                = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2             = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15           = new DevExpress.XtraReports.UI.XRTableCell();
     this.oddStyle                = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style1                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style2                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style3                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style4                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style5                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style6                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.style7                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.topMarginBand1          = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1       = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ConditionIndexParameter = new DevExpress.XtraReports.Parameters.Parameter();
     this.StyleIndexParameter     = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.formattingRulesDataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF                 = 23F;
     this.Detail.KeepTogether            = true;
     this.Detail.Name                    = "Detail";
     this.ReportPrintOptions.DetailCount = 0;
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrderID", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     //
     // xrTable1
     //
     this.xrTable1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     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("Tahoma", 9.75F);
     this.xrTable1.FormattingRules.Add(this.formattingRule1);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "oddStyle";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 4, 1, 0, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(649F, 23F);
     this.xrTable1.StylePriority.UseBorderColor   = false;
     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.MiddleLeft;
     //
     // formattingRule1
     //
     this.formattingRule1.Condition  = "[Extended Price] > 1000";
     this.formattingRule1.DataMember = "OrdesTable";
     this.formattingRule1.DataSource = this.formattingRulesDataSet1;
     //
     //
     //
     this.formattingRule1.Formatting.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.formattingRule1.Name            = "formattingRule1";
     //
     // formattingRulesDataSet1
     //
     this.formattingRulesDataSet1.DataSetName             = "FormattingRulesDataSet";
     this.formattingRulesDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell13,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell20,
         this.xrTableCell21,
         this.xrTableCell22
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.OrderID")
     });
     this.xrTableCell13.Name    = "xrTableCell13";
     this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "xrTableCell13";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight        = 0.10323574730354392;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.OrderDate", "{0:d}")
     });
     this.xrTableCell16.Name    = "xrTableCell16";
     this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight        = 0.14329738058551617;
     //
     // xrTableCell17
     //
     this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.ProductName")
     });
     this.xrTableCell17.Name    = "xrTableCell17";
     this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = "xrTableCell17";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell17.Weight        = 0.30508474576271188;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.Quantity")
     });
     this.xrTableCell18.Name    = "xrTableCell18";
     this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text          = "xrTableCell18";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell18.Weight        = 0.089368258859784278;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.UnitPrice", "{0:c2}")
     });
     this.xrTableCell20.Name    = "xrTableCell20";
     this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text          = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell20.Weight        = 0.12942989214175654;
     //
     // xrTableCell21
     //
     this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.Discount", "{0:0%}")
     });
     this.xrTableCell21.Name    = "xrTableCell21";
     this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text          = "xrTableCell21";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell21.Weight        = 0.10939907550077041;
     //
     // xrTableCell22
     //
     this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrdesTable.Extended Price", "{0:c2}")
     });
     this.xrTableCell22.Name    = "xrTableCell22";
     this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell22.StylePriority.UseTextAlignment = false;
     this.xrTableCell22.Text          = "xrTableCell22";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell22.Weight        = 0.12018489984591681;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 50F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Tahoma", 27.75F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(650F, 50F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Orders Report";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ordersTableAdapter
     //
     this.ordersTableAdapter.ClearBeforeFill = true;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.GroupUnion      = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF         = 23F;
     this.GroupHeader1.KeepTogether    = true;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrTable2
     //
     this.xrTable2.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(234)))), ((int)(((byte)(233)))));
     this.xrTable2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.xrTable2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(649F, 23F);
     this.xrTable2.StylePriority.UseBackColor     = false;
     this.xrTable2.StylePriority.UseBorderColor   = false;
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell14,
         this.xrTableCell5,
         this.xrTableCell15
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell9.Name    = "xrTableCell9";
     this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 1, 0, 100F);
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UsePadding       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "Order ID";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.10323574730354392;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell10.Name    = "xrTableCell10";
     this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 1, 0, 100F);
     this.xrTableCell10.StylePriority.UseFont          = false;
     this.xrTableCell10.StylePriority.UsePadding       = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "Order Date";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 0.14329738058551617;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell11.Name    = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 2, 1, 0, 100F);
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UsePadding       = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Product Name";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.30508474576271188;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell12.Name    = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 4, 1, 0, 100F);
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UsePadding       = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "Quantity";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 0.089368258859784278;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell14.Name    = "xrTableCell14";
     this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 4, 1, 0, 100F);
     this.xrTableCell14.StylePriority.UseFont          = false;
     this.xrTableCell14.StylePriority.UsePadding       = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "Unit Price";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight        = 0.12942989214175654;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell5.Name    = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 4, 1, 0, 100F);
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UsePadding       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Discount";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 0.10939907550077041;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Font    = new System.Drawing.Font("Tahoma", 9.75F);
     this.xrTableCell15.Name    = "xrTableCell15";
     this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 4, 1, 0, 100F);
     this.xrTableCell15.StylePriority.UseFont          = false;
     this.xrTableCell15.StylePriority.UsePadding       = false;
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "Ext. Price";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell15.Weight        = 0.12018489984591681;
     //
     // oddStyle
     //
     this.oddStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(233)))));
     this.oddStyle.Name      = "oddStyle";
     //
     // style1
     //
     this.style1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.style1.Name = "style1";
     //
     // style2
     //
     this.style2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(177)))), ((int)(((byte)(38)))), ((int)(((byte)(64)))));
     this.style2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(222)))), ((int)(((byte)(226)))));
     this.style2.Name      = "style2";
     //
     // style3
     //
     this.style3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(180)))), ((int)(((byte)(188)))));
     this.style3.Name      = "style3";
     //
     // style4
     //
     this.style4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(130)))), ((int)(((byte)(90)))));
     this.style4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(222)))), ((int)(((byte)(226)))));
     this.style4.Name      = "style4";
     //
     // style5
     //
     this.style5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(112)))), ((int)(((byte)(159)))));
     this.style5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(222)))), ((int)(((byte)(226)))));
     this.style5.Name      = "style5";
     //
     // style6
     //
     this.style6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(204)))), ((int)(((byte)(187)))));
     this.style6.Name      = "style6";
     //
     // style7
     //
     this.style7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(197)))), ((int)(((byte)(221)))));
     this.style7.Name      = "style7";
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // ConditionIndexParameter
     //
     this.ConditionIndexParameter.Description = "Condition:";
     this.ConditionIndexParameter.Name        = "ConditionIndexParameter";
     this.ConditionIndexParameter.Type        = typeof(int);
     this.ConditionIndexParameter.Value       = 6;
     //
     // StyleIndexParameter
     //
     this.StyleIndexParameter.Description = "Style:";
     this.StyleIndexParameter.Name        = "StyleIndexParameter";
     this.StyleIndexParameter.Type        = typeof(int);
     this.StyleIndexParameter.Value       = 0;
     //
     // Report
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.ReportHeader,
         this.GroupHeader1,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     this.DataAdapter  = this.ordersTableAdapter;
     this.DataMember   = "OrdesTable";
     this.DataSource   = this.formattingRulesDataSet1;
     this.FilterString = "[OrderDate] Between(#1994-01-01#, #1995-01-01#)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.ConditionIndexParameter,
         this.StyleIndexParameter
     });
     this.RequestParameters = false;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.oddStyle,
         this.style1,
         this.style2,
         this.style3,
         this.style4,
         this.style5,
         this.style6,
         this.style7
     });
     this.Version = "10.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.formattingRulesDataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #9
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();
        }
예제 #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(Certification_Checklist_Summary));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.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.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel15                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter               = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel8                 = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule1          = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13                = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1             = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1             = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrPageBreak1             = new DevExpress.XtraReports.UI.XRPageBreak();
     this.GroupHeader2             = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Project                  = new DevExpress.XtraReports.Parameters.Parameter();
     this.z_odd_row                = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Z_even_style             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.calculatedField1         = new DevExpress.XtraReports.UI.CalculatedField();
     this.xrPivotGridField1        = new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "rc_zainandfe";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // 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.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("src_title", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BackColor = System.Drawing.Color.Transparent;
     this.xrTable2.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.EvenStyleName = "Z_even_style";
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0.9374164F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "z_odd_row";
     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(648.3126F, 25F);
     this.xrTable2.StyleName = "Z_even_style";
     this.xrTable2.StylePriority.UseBackColor = false;
     this.xrTable2.StylePriority.UseBorders   = false;
     this.xrTable2.StylePriority.UsePadding   = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[src_title]")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Criteria #";
     this.xrTableCell2.Weight = 0.46091648905287352D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[src_source]")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Criteria Source";
     this.xrTableCell3.Weight = 0.57643430031947929D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[src_critical]")
     });
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "SRC CSF";
     this.xrTableCell4.Weight = 0.62161465227305546D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[src_criteria]")
     });
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Criteria Definition";
     this.xrTableCell5.Weight = 2.3410345583545915D;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ch_title]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(0.375021F, 0F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(648.8751F, 46.06546F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Target                = "_self";
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 24F;
     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       = 24F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel4,
         this.xrLabel6,
         this.xrLabel2
     });
     this.reportHeaderBand1.HeightF = 271.5893F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel15
     //
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192.0417F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(566.7084F, 79.54761F);
     this.xrLabel15.Text          = resources.GetString("xrLabel15.Text");
     //
     // xrLabel14
     //
     this.xrLabel14.Bookmark                       = "Scope";
     this.xrLabel14.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel14.Font                           = new System.Drawing.Font("Segoe UI", 16F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 145.7083F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(566.7083F, 46.33334F);
     this.xrLabel14.StylePriority.UseBorders       = false;
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UsePadding       = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Scope of Report";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders                  = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel4.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 59.04765F);
     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.UseBorders = false;
     this.xrLabel4.Text                     = "Project Name:";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[pro_name]")
     });
     this.xrLabel6.LocationFloat            = new DevExpress.Utils.PointFloat(100F, 59.04765F);
     this.xrLabel6.Name                     = "xrLabel6";
     this.xrLabel6.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                    = new System.Drawing.SizeF(547.4166F, 23F);
     this.xrLabel6.StylePriority.UseBorders = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Bookmark                       = "Summary";
     this.xrLabel2.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 16F);
     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(566.7083F, 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                           = "Certification Checklist Summary";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrLabel7,
         this.xrPageInfo2,
         this.xrLabel8
     });
     this.PageFooter.HeightF = 48.17708F;
     this.PageFooter.Name    = "PageFooter";
     //
     // 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(591.1458F, 0F);
     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;
     //
     // 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(0.9374301F, 0F);
     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® on:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // 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(0.9374301F, 23.09373F);
     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, 25.08335F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // 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(462.5F, 0F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(128.6458F, 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;
     //
     // formattingRule1
     //
     this.formattingRule1.DataMember = "rc_rtm_checklists";
     this.formattingRule1.Name       = "formattingRule1";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(74.43752F, 23F);
     this.xrLabel9.Text          = "SRC #";
     //
     // xrLabel10
     //
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(75.6419F, 0F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(93.42738F, 23F);
     this.xrLabel10.Text          = "Source";
     //
     // xrLabel11
     //
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(169.0693F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(100.2016F, 23F);
     this.xrLabel11.Text          = "CSF (T/F)";
     //
     // xrLabel13
     //
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(269.8194F, 0F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(379.4306F, 23F);
     this.xrLabel13.Text          = "Criteria";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel13
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("pro_name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 23F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1
     });
     this.GroupFooter1.HeightF = 25.59525F;
     this.GroupFooter1.Level   = 1;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ch_title", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF         = 46.06546F;
     this.GroupHeader2.Level           = 1;
     this.GroupHeader2.Name            = "GroupHeader2";
     this.GroupHeader2.RepeatEveryPage = true;
     //
     // Project
     //
     this.Project.Description = "Select a Project";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "rc_zainandfe";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "pro_name";
     dynamicListLookUpSettings1.ValueMember   = "pro_name";
     this.Project.LookUpSettings = dynamicListLookUpSettings1;
     this.Project.MultiValue     = true;
     this.Project.Name           = "Project";
     //
     // z_odd_row
     //
     this.z_odd_row.BackColor   = System.Drawing.Color.LemonChiffon;
     this.z_odd_row.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.z_odd_row.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.z_odd_row.BorderWidth   = 1F;
     this.z_odd_row.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.z_odd_row.Name          = "z_odd_row";
     this.z_odd_row.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.z_odd_row.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Z_even_style
     //
     this.Z_even_style.BackColor       = System.Drawing.Color.LightBlue;
     this.Z_even_style.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.Z_even_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Z_even_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                 | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Z_even_style.BorderWidth   = 1F;
     this.Z_even_style.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Z_even_style.Name          = "Z_even_style";
     this.Z_even_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Z_even_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember = "rc_zainandfe";
     this.calculatedField1.Expression = "[src_title][].Count()";
     this.calculatedField1.FieldType  = DevExpress.XtraReports.UI.FieldType.String;
     this.calculatedField1.Name       = "calculatedField1";
     //
     // xrPivotGridField1
     //
     this.xrPivotGridField1.Name = "xrPivotGridField1";
     //
     // Certification_Checklist_Summary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupFooter1,
         this.GroupHeader2
     });
     this.Bookmark = "Certification Checklist Summary";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "rc_zainandfe";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[pro_name] In (?Project)";
     this.Font         = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins      = new System.Drawing.Printing.Margins(100, 100, 24, 24);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Project
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo,
         this.z_odd_row,
         this.Z_even_style
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(QuestionnaireResponse));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.HeaderLine       = new DevExpress.XtraReports.UI.XRLine();
     this.RiskCategory     = new DevExpress.XtraReports.UI.XRLabel();
     this.ModerateRule     = new DevExpress.XtraReports.UI.FormattingRule();
     this.HighRisk         = new DevExpress.XtraReports.UI.FormattingRule();
     this.LowRisk          = new DevExpress.XtraReports.UI.FormattingRule();
     this.valRiskCategory  = new DevExpress.XtraReports.UI.XRLabel();
     this.Score            = new DevExpress.XtraReports.UI.XRLabel();
     this.valScore         = new DevExpress.XtraReports.UI.XRLabel();
     this.TestDate         = new DevExpress.XtraReports.UI.XRLabel();
     this.valTestDate      = new DevExpress.XtraReports.UI.XRLabel();
     this.valDOB           = new DevExpress.XtraReports.UI.XRLabel();
     this.valLasttName     = new DevExpress.XtraReports.UI.XRLabel();
     this.DOB              = new DevExpress.XtraReports.UI.XRLabel();
     this.LastName         = new DevExpress.XtraReports.UI.XRLabel();
     this.PPGLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.FirstName        = new DevExpress.XtraReports.UI.XRLabel();
     this.valFirstName     = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.ReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ReportDateVal    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.PatientResponses = new DevExpress.XtraReports.UI.XRLabel();
     this.Testname         = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1          = new DevExpress.XtraReports.UI.DetailBand();
     this.AnswerVal        = new DevExpress.XtraReports.UI.XRLabel();
     this.QuestionVal      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.@PQID            = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 26F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 34F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.HeaderLine,
         this.RiskCategory,
         this.valRiskCategory,
         this.Score,
         this.valScore,
         this.TestDate,
         this.valTestDate,
         this.valDOB,
         this.valLasttName,
         this.DOB,
         this.LastName,
         this.PPGLogo,
         this.FirstName,
         this.valFirstName
     });
     this.PageHeader.HeightF = 103.5F;
     this.PageHeader.Name    = "PageHeader";
     //
     // HeaderLine
     //
     this.HeaderLine.BorderWidth   = 1F;
     this.HeaderLine.LineWidth     = 2;
     this.HeaderLine.LocationFloat = new DevExpress.Utils.PointFloat(0F, 90.33335F);
     this.HeaderLine.Name          = "HeaderLine";
     this.HeaderLine.SizeF         = new System.Drawing.SizeF(802F, 13.16666F);
     this.HeaderLine.StylePriority.UseBorderWidth = false;
     //
     // RiskCategory
     //
     this.RiskCategory.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RiskCategory.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.RiskCategory.FormattingRules.Add(this.ModerateRule);
     this.RiskCategory.FormattingRules.Add(this.HighRisk);
     this.RiskCategory.FormattingRules.Add(this.LowRisk);
     this.RiskCategory.LocationFloat                  = new DevExpress.Utils.PointFloat(560.7915F, 67.33335F);
     this.RiskCategory.Name                           = "RiskCategory";
     this.RiskCategory.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.RiskCategory.SizeF                          = new System.Drawing.SizeF(122.2917F, 23F);
     this.RiskCategory.StylePriority.UseFont          = false;
     this.RiskCategory.StylePriority.UseForeColor     = false;
     this.RiskCategory.StylePriority.UseTextAlignment = false;
     this.RiskCategory.Text                           = "Risk Category:";
     this.RiskCategory.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // ModerateRule
     //
     this.ModerateRule.Condition            = "[RiskCategory]=\'Medium\'";
     this.ModerateRule.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(196)))), ((int)(((byte)(15)))));
     this.ModerateRule.Name = "ModerateRule";
     //
     // HighRisk
     //
     this.HighRisk.Condition            = "[RiskCategory]=\'High\'";
     this.HighRisk.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(76)))), ((int)(((byte)(60)))));
     this.HighRisk.Name = "HighRisk";
     //
     // LowRisk
     //
     this.LowRisk.Condition            = "[RiskCategory]=\'Low\'";
     this.LowRisk.Formatting.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(204)))), ((int)(((byte)(113)))));
     this.LowRisk.Name = "LowRisk";
     //
     // valRiskCategory
     //
     this.valRiskCategory.AutoWidth = true;
     this.valRiskCategory.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.RiskCategory")
     });
     this.valRiskCategory.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valRiskCategory.ForeColor = System.Drawing.Color.Black;
     this.valRiskCategory.FormattingRules.Add(this.ModerateRule);
     this.valRiskCategory.FormattingRules.Add(this.HighRisk);
     this.valRiskCategory.FormattingRules.Add(this.LowRisk);
     this.valRiskCategory.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 67.33335F);
     this.valRiskCategory.Name                           = "valRiskCategory";
     this.valRiskCategory.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
     this.valRiskCategory.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valRiskCategory.StylePriority.UseFont          = false;
     this.valRiskCategory.StylePriority.UseForeColor     = false;
     this.valRiskCategory.StylePriority.UsePadding       = false;
     this.valRiskCategory.StylePriority.UseTextAlignment = false;
     this.valRiskCategory.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Score
     //
     this.Score.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Score.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Score.LocationFloat              = new DevExpress.Utils.PointFloat(560.7915F, 44.33333F);
     this.Score.Name                       = "Score";
     this.Score.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Score.SizeF                      = new System.Drawing.SizeF(122.2919F, 23F);
     this.Score.StylePriority.UseFont      = false;
     this.Score.StylePriority.UseForeColor = false;
     this.Score.Text                       = "Score:";
     //
     // valScore
     //
     this.valScore.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.Score")
     });
     this.valScore.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valScore.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valScore.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 44.33334F);
     this.valScore.Name                           = "valScore";
     this.valScore.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valScore.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valScore.StylePriority.UseFont          = false;
     this.valScore.StylePriority.UseForeColor     = false;
     this.valScore.StylePriority.UseTextAlignment = false;
     this.valScore.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TestDate
     //
     this.TestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.TestDate.LocationFloat              = new DevExpress.Utils.PointFloat(560.7914F, 21.33335F);
     this.TestDate.Name                       = "TestDate";
     this.TestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.TestDate.SizeF                      = new System.Drawing.SizeF(122.2918F, 23F);
     this.TestDate.StylePriority.UseFont      = false;
     this.TestDate.StylePriority.UseForeColor = false;
     this.TestDate.Text                       = "Test Date:";
     //
     // valTestDate
     //
     this.valTestDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.TestDate")
     });
     this.valTestDate.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valTestDate.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valTestDate.LocationFloat                  = new DevExpress.Utils.PointFloat(683.0833F, 21.33334F);
     this.valTestDate.Name                           = "valTestDate";
     this.valTestDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valTestDate.SizeF                          = new System.Drawing.SizeF(118.9167F, 23F);
     this.valTestDate.StylePriority.UseFont          = false;
     this.valTestDate.StylePriority.UseForeColor     = false;
     this.valTestDate.StylePriority.UseTextAlignment = false;
     this.valTestDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // valDOB
     //
     this.valDOB.AutoWidth = true;
     this.valDOB.CanShrink = true;
     this.valDOB.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientDOB")
     });
     this.valDOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valDOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valDOB.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 67.33335F);
     this.valDOB.Name                       = "valDOB";
     this.valDOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valDOB.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valDOB.StylePriority.UseFont      = false;
     this.valDOB.StylePriority.UseForeColor = false;
     //
     // valLasttName
     //
     this.valLasttName.AutoWidth = true;
     this.valLasttName.CanShrink = true;
     this.valLasttName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientLastName")
     });
     this.valLasttName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valLasttName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valLasttName.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 44.33333F);
     this.valLasttName.Name                       = "valLasttName";
     this.valLasttName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valLasttName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valLasttName.StylePriority.UseFont      = false;
     this.valLasttName.StylePriority.UseForeColor = false;
     //
     // DOB
     //
     this.DOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.DOB.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 67.33335F);
     this.DOB.Name                       = "DOB";
     this.DOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DOB.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.DOB.StylePriority.UseFont      = false;
     this.DOB.StylePriority.UseForeColor = false;
     this.DOB.Text                       = "Date of Birth:";
     //
     // LastName
     //
     this.LastName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.LastName.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 44.33333F);
     this.LastName.Name                       = "LastName";
     this.LastName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.LastName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.LastName.StylePriority.UseFont      = false;
     this.LastName.StylePriority.UseForeColor = false;
     this.LastName.Text                       = "Last Name:";
     //
     // PPGLogo
     //
     this.PPGLogo.Image         = ((System.Drawing.Image)(resources.GetObject("PPGLogo.Image")));
     this.PPGLogo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 21.33334F);
     this.PPGLogo.Name          = "PPGLogo";
     this.PPGLogo.SizeF         = new System.Drawing.SizeF(198.75F, 59.16667F);
     this.PPGLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // FirstName
     //
     this.FirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.FirstName.LocationFloat              = new DevExpress.Utils.PointFloat(215.5F, 21.33335F);
     this.FirstName.Name                       = "FirstName";
     this.FirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.FirstName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.FirstName.StylePriority.UseFont      = false;
     this.FirstName.StylePriority.UseForeColor = false;
     this.FirstName.Text                       = "First Name:";
     //
     // valFirstName
     //
     this.valFirstName.AutoWidth = true;
     this.valFirstName.CanShrink = true;
     this.valFirstName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.PatientFirstName")
     });
     this.valFirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valFirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valFirstName.LocationFloat              = new DevExpress.Utils.PointFloat(325.7083F, 21.33335F);
     this.valFirstName.Name                       = "valFirstName";
     this.valFirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valFirstName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valFirstName.StylePriority.UseFont      = false;
     this.valFirstName.StylePriority.UseForeColor = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.ReportDate,
         this.xrPageInfo1,
         this.ReportDateVal
     });
     this.PageFooter.HeightF = 36.66669F;
     this.PageFooter.Name    = "PageFooter";
     //
     // ReportDate
     //
     this.ReportDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.ReportDate.LocationFloat              = new DevExpress.Utils.PointFloat(10F, 10F);
     this.ReportDate.Name                       = "ReportDate";
     this.ReportDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDate.SizeF                      = new System.Drawing.SizeF(99.16666F, 23F);
     this.ReportDate.StylePriority.UseFont      = false;
     this.ReportDate.StylePriority.UseForeColor = false;
     this.ReportDate.Text                       = "Report Date";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrPageInfo1.Format                     = "Page {0}/{0}";
     this.xrPageInfo1.LocationFloat              = new DevExpress.Utils.PointFloat(692F, 10F);
     this.xrPageInfo1.Name                       = "xrPageInfo1";
     this.xrPageInfo1.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                      = new System.Drawing.SizeF(100F, 23F);
     this.xrPageInfo1.StylePriority.UseFont      = false;
     this.xrPageInfo1.StylePriority.UseForeColor = false;
     //
     // ReportDateVal
     //
     this.ReportDateVal.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDateVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.ReportDateVal.Format                     = "{0:MMMM d, yyyy h:mm tt}";
     this.ReportDateVal.LocationFloat              = new DevExpress.Utils.PointFloat(109.1667F, 10F);
     this.ReportDateVal.Name                       = "ReportDateVal";
     this.ReportDateVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDateVal.PageInfo                   = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.ReportDateVal.SizeF                      = new System.Drawing.SizeF(205.6667F, 23F);
     this.ReportDateVal.StylePriority.UseFont      = false;
     this.ReportDateVal.StylePriority.UseForeColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.PatientResponses,
         this.Testname
     });
     this.GroupHeader1.HeightF         = 75.83334F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // PatientResponses
     //
     this.PatientResponses.Font                           = new System.Drawing.Font("Times New Roman", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PatientResponses.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.PatientResponses.LocationFloat                  = new DevExpress.Utils.PointFloat(215.5F, 32.33335F);
     this.PatientResponses.Name                           = "PatientResponses";
     this.PatientResponses.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.PatientResponses.SizeF                          = new System.Drawing.SizeF(371F, 29.66667F);
     this.PatientResponses.StylePriority.UseFont          = false;
     this.PatientResponses.StylePriority.UseForeColor     = false;
     this.PatientResponses.StylePriority.UseTextAlignment = false;
     this.PatientResponses.Text                           = "Patient Response";
     this.PatientResponses.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // Testname
     //
     this.Testname.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetailsReport.QuestionnaireName")
     });
     this.Testname.Font                           = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Testname.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Testname.LocationFloat                  = new DevExpress.Utils.PointFloat(217.5F, 2.666677F);
     this.Testname.Name                           = "Testname";
     this.Testname.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Testname.SizeF                          = new System.Drawing.SizeF(371F, 29.66667F);
     this.Testname.StylePriority.UseFont          = false;
     this.Testname.StylePriority.UseForeColor     = false;
     this.Testname.StylePriority.UseTextAlignment = false;
     this.Testname.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1
     });
     this.DetailReport.DataMember = "spGetPatientQuestionnaireDetailsReport";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.AnswerVal,
         this.QuestionVal,
         this.xrLine1
     });
     this.Detail1.HeightF = 79.16666F;
     this.Detail1.Name    = "Detail1";
     //
     // AnswerVal
     //
     this.AnswerVal.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientQuestionnaireDetailsReport.AnswerText")
     });
     this.AnswerVal.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AnswerVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.AnswerVal.LocationFloat              = new DevExpress.Utils.PointFloat(0F, 22.99998F);
     this.AnswerVal.Name                       = "AnswerVal";
     this.AnswerVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(10, 2, 5, 0, 100F);
     this.AnswerVal.SizeF                      = new System.Drawing.SizeF(802F, 32.16665F);
     this.AnswerVal.StylePriority.UseFont      = false;
     this.AnswerVal.StylePriority.UseForeColor = false;
     this.AnswerVal.StylePriority.UsePadding   = false;
     //
     // QuestionVal
     //
     this.QuestionVal.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientQuestionnaireDetailsReport.QuestionText")
     });
     this.QuestionVal.Font                     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuestionVal.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.QuestionVal.Name                     = "QuestionVal";
     this.QuestionVal.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(10, 2, 0, 10, 100F);
     this.QuestionVal.SizeF                    = new System.Drawing.SizeF(802F, 23F);
     this.QuestionVal.StylePriority.UseFont    = false;
     this.QuestionVal.StylePriority.UsePadding = false;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 55.16663F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(802F, 23F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ClarityDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "spGetPatientQuestionnaireDetailsReport";
     queryParameter1.Name  = "@ParamPQID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.@PQID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "spGetPatientQuestionnaireDetailsReport";
     storedProcQuery2.Name           = "spGetPatientDetailsReport";
     queryParameter2.Name            = "@ParamPQID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.@PQID]", typeof(int));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.StoredProcName = "spGetPatientDetailsReport";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // @PQID
     //
     [email protected] = "PQID";
     [email protected]        = "@PQID";
     [email protected]        = typeof(int);
     [email protected]   = "0";
     [email protected]     = false;
     //
     // QuestionnaireResponse
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "spGetPatientDetailsReport";
     this.DataSource = this.sqlDataSource1;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.ModerateRule,
         this.HighRisk,
         this.LowRisk
     });
     this.Margins = new System.Drawing.Printing.Margins(25, 23, 26, 34);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.@PQID
     });
     this.RequestParameters = false;
     this.Version           = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #12
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.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHieuSuatSuDung));
     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.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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         = 46.875F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // 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(1.525879E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(822.9999F, 46.875F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     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.xrTableCell1,
         this.xrTableCell4,
         this.xrTableCell3
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Dpi    = 100F;
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "STT";
     this.xrTableCell1.Weight = 0.7459928681595458D;
     //
     // 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.4890569209196167D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 100F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Số đơn vị sử dụng";
     this.xrTableCell3.Weight = 2.1230782979990934D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // 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     = 23F;
     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;
     //
     // 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.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 113.5417F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Sitka Text", 16F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(6.357829E-05F, 70.20836F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(822.9998F, 31.24997F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "(Tính đến ngày [GetSystemdate().Column1])";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth                    = 0F;
     this.xrLabel1.Dpi                            = 100F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Sitka Text", 36F, 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(0F, 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(823F, 60.20834F);
     this.xrLabel1.StyleName                      = "TableStyle";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Báo Cáo Hiệu Suất Sử Dụng ";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // 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;
     //
     // 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(6.103516E-05F, 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(822.9998F, 47.29166F);
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell6,
         this.xrTableCell9
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell2.Summary       = xrSummary1;
     this.xrTableCell2.Text          = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.59648159136151668D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHieuSuatSuDung().TenMatHang")
     });
     this.xrTableCell6.Dpi    = 100F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 1.9902028058924659D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHieuSuatSuDung().SLDVTheoMH")
     });
     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        = 1.6975732827658032D;
     //
     // 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);
     //
     // 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);
     //
     // 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.HeightF     = 31.25F;
     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);
     //
     // 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);
     //
     // 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       = 39.66665F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHieuSuatSuDung()";
     storedProcQuery1.StoredProcName = "GetHieuSuatSuDung";
     storedProcQuery2.Name           = "GetSystemdate()";
     storedProcQuery2.StoredProcName = "GetSystemdate";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // BCHieuSuatSuDung
     //
     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.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 = "GetHieuSuatSuDung()";
     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(11, 16, 23, 40);
     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.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.UI.XRSummary            xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     System.ComponentModel.ComponentResourceManager resources  = new System.ComponentModel.ComponentResourceManager(typeof(rptDebitPayment));
     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.lbTDT           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13   = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbRMK           = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbTDR           = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbTCR           = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbBAL           = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader    = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPictureBox1   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel2        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1         = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3        = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader      = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
     this.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.xrTable3        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8    = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbSNM           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10   = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbADR           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable4        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell12   = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbPHN           = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow6     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell15   = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbEML           = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter    = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLine2         = new DevExpress.XtraReports.UI.XRLine();
     this.xrTable5        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow7     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9    = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblTDR          = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblTCR          = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblTBL          = new DevExpress.XtraReports.UI.XRTableCell();
     this.oddStyle        = new DevExpress.XtraReports.UI.FormattingRule();
     this.evenStyle       = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2 = new DevExpress.XtraReports.UI.XRControlStyle();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).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.xrTable2
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable2.Font          = new System.Drawing.Font("Tahoma", 9.75F);
     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.UseBorders       = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.lbTDT,
         this.xrTableCell13,
         this.lbRMK,
         this.lbTDR,
         this.lbTCR,
         this.lbBAL
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Left;
     this.xrTableCell7.Name    = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseBorders = false;
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell7.Summary = xrSummary1;
     this.xrTableCell7.Text    = "Sl.No";
     this.xrTableCell7.Weight  = 0.186115202910791D;
     //
     // lbTDT
     //
     this.lbTDT.Name   = "lbTDT";
     this.lbTDT.Text   = "Date";
     this.lbTDT.Weight = 0.36327332787213862D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Weight = 0.020589358080231289D;
     //
     // lbRMK
     //
     this.lbRMK.Name = "lbRMK";
     this.lbRMK.StylePriority.UseTextAlignment = false;
     this.lbRMK.Text          = "Description";
     this.lbRMK.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lbRMK.Weight        = 1.0234952946524416D;
     //
     // lbTDR
     //
     this.lbTDR.Name = "lbTDR";
     this.lbTDR.StylePriority.UseTextAlignment = false;
     this.lbTDR.Text          = "Debit";
     this.lbTDR.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbTDR.Weight        = 0.4688424944592372D;
     //
     // lbTCR
     //
     this.lbTCR.Name = "lbTCR";
     this.lbTCR.StylePriority.UseTextAlignment = false;
     this.lbTCR.Text          = "Credit";
     this.lbTCR.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbTCR.Weight        = 0.46884220892390038D;
     //
     // lbBAL
     //
     this.lbBAL.Borders = DevExpress.XtraPrinting.BorderSide.Right;
     this.lbBAL.Name    = "lbBAL";
     this.lbBAL.StylePriority.UseBorders       = false;
     this.lbBAL.StylePriority.UseTextAlignment = false;
     this.lbBAL.Text          = "Balance";
     this.lbBAL.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lbBAL.Weight        = 0.46884208170861458D;
     //
     // 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.xrPictureBox1,
         this.xrLabel2,
         this.xrLabel1,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLine1,
         this.xrLabel3
     });
     this.ReportHeader.HeightF = 134.0001F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // 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;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 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;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 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;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 56.00007F);
     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;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 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;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 132.0001F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(677F, 2F);
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 109.0001F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(677F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Supplier Debit Payment Details";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrTable3,
         this.xrTable4
     });
     this.PageHeader.HeightF = 83.16666F;
     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, 58.16666F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(677.0001F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell6,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Sl.No";
     this.xrTableCell4.Weight = 0.186115202910791D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "Date";
     this.xrTableCell1.Weight = 0.4120445251743341D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Reference";
     this.xrTableCell6.Weight = 1.1367719909115774D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Debit";
     this.xrTableCell2.Weight = 0.51046314742462262D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Credit";
     this.xrTableCell5.Weight = 0.51046314742462229D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Balance";
     this.xrTableCell3.Weight = 0.51046325363893652D;
     //
     // xrTable3
     //
     this.xrTable3.Font          = new System.Drawing.Font("Tahoma", 10.5F);
     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.xrTable3.SizeF = new System.Drawing.SizeF(400F, 50F);
     this.xrTable3.StylePriority.UseFont          = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.lbSNM
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Supplier Name:";
     this.xrTableCell8.Weight = 1.12D;
     //
     // lbSNM
     //
     this.lbSNM.Name   = "lbSNM";
     this.lbSNM.Text   = "lbSNM";
     this.lbSNM.Weight = 2.88D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.lbADR
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "Address:";
     this.xrTableCell10.Weight = 1.12D;
     //
     // lbADR
     //
     this.lbADR.Name   = "lbADR";
     this.lbADR.Text   = "lbADR";
     this.lbADR.Weight = 2.88D;
     //
     // xrTable4
     //
     this.xrTable4.Font          = new System.Drawing.Font("Tahoma", 10.5F);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5,
         this.xrTableRow6
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(276.9999F, 50F);
     this.xrTable4.StylePriority.UseFont = false;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.lbPHN
     });
     this.xrTableRow5.Name   = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Phone No:";
     this.xrTableCell12.Weight = 0.722592000403954D;
     //
     // lbPHN
     //
     this.lbPHN.Name   = "lbPHN";
     this.lbPHN.Text   = "lbPHN";
     this.lbPHN.Weight = 1.91199173983042D;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.lbEML
     });
     this.xrTableRow6.Name   = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "Email ID:";
     this.xrTableCell15.Weight = 0.722592290660751D;
     //
     // lbEML
     //
     this.lbEML.Name   = "lbEML";
     this.lbEML.Text   = "lbEML";
     this.lbEML.Weight = 1.91199144957362D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrTable5
     });
     this.ReportFooter.HeightF = 27.08333F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(676.9999F, 2.083333F);
     //
     // xrTable5
     //
     this.xrTable5.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2.083333F);
     this.xrTable5.Name          = "xrTable5";
     this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7
     });
     this.xrTable5.SizeF = new System.Drawing.SizeF(677F, 25F);
     this.xrTable5.StylePriority.UseFont = false;
     //
     // xrTableRow7
     //
     this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.lblTDR,
         this.lblTCR,
         this.lblTBL
     });
     this.xrTableRow7.Name   = "xrTableRow7";
     this.xrTableRow7.Weight = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "TOTAL:";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell9.Weight        = 1.5934733583796854D;
     //
     // lblTDR
     //
     this.lblTDR.Name = "lblTDR";
     this.lblTDR.StylePriority.UseTextAlignment = false;
     this.lblTDR.Text          = "lblTDR";
     this.lblTDR.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lblTDR.Weight        = 0.46884235286290032D;
     //
     // lblTCR
     //
     this.lblTCR.Name = "lblTCR";
     this.lblTCR.StylePriority.UseTextAlignment = false;
     this.lblTCR.Text          = "lblTCR";
     this.lblTCR.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lblTCR.Weight        = 0.46884248809589057D;
     //
     // lblTBL
     //
     this.lblTBL.Name = "lblTBL";
     this.lblTBL.StylePriority.UseTextAlignment = false;
     this.lblTBL.Text          = "lblTBL";
     this.lblTBL.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lblTBL.Weight        = 0.4688418006615237D;
     //
     // oddStyle
     //
     //
     //
     //
     this.oddStyle.Formatting.BackColor = System.Drawing.Color.LightGray;
     this.oddStyle.Name = "oddStyle";
     //
     // evenStyle
     //
     //
     //
     //
     this.evenStyle.Formatting.BackColor = System.Drawing.Color.RosyBrown;
     this.evenStyle.Name = "evenStyle";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.xrControlStyle1.Name      = "xrControlStyle1";
     this.xrControlStyle1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BackColor = System.Drawing.Color.NavajoWhite;
     this.xrControlStyle2.Name      = "xrControlStyle2";
     this.xrControlStyle2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // rptDebitPayment
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader,
         this.ReportFooter
     });
     this.DisplayName = "Debit Payment Details";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.oddStyle,
         this.evenStyle
     });
     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.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #14
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_SalaryByMonth.resx";

            this.Detail                       = new DevExpress.XtraReports.UI.DetailBand();
            this.TopMargin                    = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin                 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader                 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrTable2                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell12                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow3                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell13                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14                = new DevExpress.XtraReports.UI.XRTableCell();
            this.tblReportHeader              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow19                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrCellTenBieuMau             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow4                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell11                = new DevExpress.XtraReports.UI.XRTableCell();
            this.PageHeader                   = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.tblPageHeader                = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow11                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell241               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell242               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell16                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.formattingRule1              = new DevExpress.XtraReports.UI.FormattingRule();
            this.ReportFooter                 = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.xrTable5                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow7                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell18                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell19                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTable4                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow6                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell15                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotal             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTable3                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow5                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell8                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellText              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel2                     = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1                     = new DevExpress.XtraReports.UI.XRLabel();
            this.lblReportDate                = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable1                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTextTongSo                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotalWagesMonth   = new DevExpress.XtraReports.UI.XRTableCell();
            this.lblThuTruong                 = new DevExpress.XtraReports.UI.XRLabel();
            this.tblDetail                    = new DevExpress.XtraReports.UI.XRTable();
            this.xrDetailRow1                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCellTotalWages        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotalIncome       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellInsurrance        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellPersonalIncomeTax = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellOtherIncome       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTheWorkCost       = new DevExpress.XtraReports.UI.XRTableCell();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.HeightF = 25F;
            this.Detail.Name    = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StylePriority.UseBorders = false;
            this.Detail.TextAlignment            = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 15F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 0F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2,
                this.tblReportHeader
            });
            this.ReportHeader.HeightF = 86F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrTable2
            //
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 42.00001F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2,
                this.xrTableRow3
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell12
            });
            this.xrTableRow2.Name   = "xrTableRow2";
            this.xrTableRow2.Weight = 0.79999990231146945D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.StylePriority.UseFont = false;
            this.xrTableCell12.Text   = "BẢNG TỔNG HỢP  LƯƠNG THÁNG 9 / 2017";
            this.xrTableCell12.Weight = 3.9966622210905545D;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell13,
                this.xrTableCell14
            });
            this.xrTableRow3.Name   = "xrTableRow3";
            this.xrTableRow3.Weight = 0.33333324536656561D;
            //
            // xrTableCell13
            //
            this.xrTableCell13.Name    = "xrTableCell13";
            this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell13.StylePriority.UsePadding = false;
            this.xrTableCell13.Weight = 1.5748560433256003D;
            //
            // xrTableCell14
            //
            this.xrTableCell14.Name   = "xrTableCell14";
            this.xrTableCell14.Weight = 2.4218061963804294D;
            //
            // tblReportHeader
            //
            this.tblReportHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblReportHeader.Name          = "tblReportHeader";
            this.tblReportHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow19,
                this.xrTableRow4
            });
            this.tblReportHeader.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow19
            //
            this.xrTableRow19.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrCellTenBieuMau
            });
            this.xrTableRow19.Name   = "xrTableRow19";
            this.xrTableRow19.Weight = 0.41805549924192159D;
            //
            // xrCellTenBieuMau
            //
            this.xrCellTenBieuMau.Font = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrCellTenBieuMau.Name = "xrCellTenBieuMau";
            this.xrCellTenBieuMau.StylePriority.UseFont          = false;
            this.xrCellTenBieuMau.StylePriority.UseTextAlignment = false;
            this.xrCellTenBieuMau.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrCellTenBieuMau.Weight        = 3.9966622210905545D;
            //
            // xrTableRow4
            //
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell11
            });
            this.xrTableRow4.Name   = "xrTableRow4";
            this.xrTableRow4.Weight = 0.71527764843611341D;
            //
            // xrTableCell11
            //
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.StylePriority.UseTextAlignment = false;
            this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            this.xrTableCell11.Weight        = 3.99666223970603D;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblPageHeader
            });
            this.PageHeader.HeightF = 155.0595F;
            this.PageHeader.Name    = "PageHeader";
            //
            // tblPageHeader
            //
            this.tblPageHeader.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblPageHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 55.05952F);
            this.tblPageHeader.Name          = "tblPageHeader";
            this.tblPageHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow11
            });
            this.tblPageHeader.SizeF = new System.Drawing.SizeF(803.0001F, 100F);
            this.tblPageHeader.StylePriority.UseBorders = false;
            //
            // xrTableRow11
            //
            this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell241,
                this.xrTableCell10,
                this.xrTableCell242,
                this.xrTableCell16,
                this.xrTableCell1,
                this.xrTableCell2
            });
            this.xrTableRow11.Name   = "xrTableRow11";
            this.xrTableRow11.Weight = 9.2D;
            //
            // xrTableCell241
            //
            this.xrTableCell241.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell241.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell241.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell241.Name = "xrTableCell241";
            this.xrTableCell241.StylePriority.UseBorderColor = false;
            this.xrTableCell241.StylePriority.UseBorders     = false;
            this.xrTableCell241.StylePriority.UseFont        = false;
            this.xrTableCell241.Text   = "Tổng tiền lương";
            this.xrTableCell241.Weight = 0.47482605866316707D;
            //
            // xrTableCell10
            //
            this.xrTableCell10.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell10.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseBorderColor = false;
            this.xrTableCell10.StylePriority.UseBorders     = false;
            this.xrTableCell10.StylePriority.UseFont        = false;
            this.xrTableCell10.Text   = "Tổng thu nhập";
            this.xrTableCell10.Weight = 0.4635389334915101D;
            //
            // xrTableCell242
            //
            this.xrTableCell242.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell242.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell242.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell242.Name = "xrTableCell242";
            this.xrTableCell242.StylePriority.UseBorderColor = false;
            this.xrTableCell242.StylePriority.UseBorders     = false;
            this.xrTableCell242.StylePriority.UseFont        = false;
            this.xrTableCell242.Text   = "BHXH,BHYT,BHTN";
            this.xrTableCell242.Weight = 0.67302614653114712D;
            //
            // xrTableCell16
            //
            this.xrTableCell16.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell16.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell16.Name = "xrTableCell16";
            this.xrTableCell16.StylePriority.UseBorderColor = false;
            this.xrTableCell16.StylePriority.UseBorders     = false;
            this.xrTableCell16.StylePriority.UseFont        = false;
            this.xrTableCell16.Text   = "Thuế thu nhập cá nhân";
            this.xrTableCell16.Weight = 0.72445911061355661D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell1.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderColor = false;
            this.xrTableCell1.StylePriority.UseBorders     = false;
            this.xrTableCell1.StylePriority.UseFont        = false;
            this.xrTableCell1.Text   = "Thu khác";
            this.xrTableCell1.Weight = 0.54480146016993436D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseBorderColor = false;
            this.xrTableCell2.StylePriority.UseBorders     = false;
            this.xrTableCell2.StylePriority.UseFont        = false;
            this.xrTableCell2.Text   = "Công tác phí";
            this.xrTableCell2.Weight = 0.54114028991361063D;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable5,
                this.xrTable4,
                this.xrTable3,
                this.xrLabel2,
                this.xrLabel1,
                this.lblReportDate,
                this.xrTable1,
                this.lblThuTruong,
                this.tblDetail
            });
            this.ReportFooter.HeightF = 252.1667F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // xrTable5
            //
            this.xrTable5.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 93.15472F);
            this.xrTable5.Name          = "xrTable5";
            this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow7
            });
            this.xrTable5.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable5.StylePriority.UseBorders = false;
            //
            // xrTableRow7
            //
            this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell18,
                this.xrTableCell19
            });
            this.xrTableRow7.Name   = "xrTableRow7";
            this.xrTableRow7.Weight = 1D;
            //
            // xrTableCell18
            //
            this.xrTableCell18.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell18.Name    = "xrTableCell18";
            this.xrTableCell18.StylePriority.UseBorders       = false;
            this.xrTableCell18.StylePriority.UseTextAlignment = false;
            this.xrTableCell18.Text          = "Trong đó";
            this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell18.Weight        = 0.54932342646152388D;
            //
            // xrTableCell19
            //
            this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell19.Name    = "xrTableCell19";
            this.xrTableCell19.StylePriority.UseBorders       = false;
            this.xrTableCell19.StylePriority.UseTextAlignment = false;
            this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell19.Weight        = 1.3148848042021257D;
            //
            // xrTable4
            //
            this.xrTable4.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 118.1547F);
            this.xrTable4.Name          = "xrTable4";
            this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow6
            });
            this.xrTable4.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable4.StylePriority.UseBorders = false;
            //
            // xrTableRow6
            //
            this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell15,
                this.xrTableCellTotal
            });
            this.xrTableRow6.Name   = "xrTableRow6";
            this.xrTableRow6.Weight = 1D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell15.Name    = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseBorders       = false;
            this.xrTableCell15.StylePriority.UseTextAlignment = false;
            this.xrTableCell15.Text          = "TỔNG CỘNG";
            this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell15.Weight        = 0.54932342646152388D;
            //
            // xrTableCellTotal
            //
            this.xrTableCellTotal.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellTotal.Name    = "xrTableCellTotal";
            this.xrTableCellTotal.StylePriority.UseBorders       = false;
            this.xrTableCellTotal.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotal.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotal.Weight        = 1.3148848042021257D;
            //
            // xrTable3
            //
            this.xrTable3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.15474F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow5
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable3.StylePriority.UseBorders = false;
            //
            // xrTableRow5
            //
            this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell8,
                this.xrTableCellText
            });
            this.xrTableRow5.Name   = "xrTableRow5";
            this.xrTableRow5.Weight = 1D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell8.Name    = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseBorders       = false;
            this.xrTableCell8.StylePriority.UseTextAlignment = false;
            this.xrTableCell8.Text          = "Bằng chữ";
            this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell8.Weight        = 0.54932342646152388D;
            //
            // xrTableCellText
            //
            this.xrTableCellText.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellText.Name    = "xrTableCellText";
            this.xrTableCellText.StylePriority.UseBorders       = false;
            this.xrTableCellText.StylePriority.UseTextAlignment = false;
            this.xrTableCellText.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellText.Weight        = 1.3148848042021257D;
            //
            // xrLabel2
            //
            this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(83.53977F, 194.7619F);
            this.xrLabel2.Name                           = "xrLabel2";
            this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.xrLabel2.StylePriority.UseFont          = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text                           = "TỔNG GIÁM ĐỐC";
            this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel1
            //
            this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(322.6191F, 195.8333F);
            this.xrLabel1.Name                           = "xrLabel1";
            this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.xrLabel1.StylePriority.UseFont          = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text                           = "PHÒNG KẾ TOÁN";
            this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Italic);
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(599.8099F, 165.625F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(175.3329F, 15F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTable1
            //
            this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 43.15476F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable1.StylePriority.UseBorders = false;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTextTongSo,
                this.xrTableCellTotalWagesMonth
            });
            this.xrTableRow1.Name   = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            //
            // xrTextTongSo
            //
            this.xrTextTongSo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTextTongSo.Name    = "xrTextTongSo";
            this.xrTextTongSo.StylePriority.UseBorders       = false;
            this.xrTextTongSo.StylePriority.UseTextAlignment = false;
            this.xrTextTongSo.Text          = "TỔNG TIỀN LƯƠNG THÁNG 9/2017";
            this.xrTextTongSo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTextTongSo.Weight        = 1.0855889282205971D;
            //
            // xrTableCellTotalWagesMonth
            //
            this.xrTableCellTotalWagesMonth.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellTotalWagesMonth.Name    = "xrTableCellTotalWagesMonth";
            this.xrTableCellTotalWagesMonth.StylePriority.UseBorders       = false;
            this.xrTableCellTotalWagesMonth.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalWagesMonth.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalWagesMonth.Weight        = 0.77861930244305255D;
            //
            // lblThuTruong
            //
            this.lblThuTruong.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.lblThuTruong.LocationFloat                  = new DevExpress.Utils.PointFloat(624.6703F, 194.7619F);
            this.lblThuTruong.Name                           = "lblThuTruong";
            this.lblThuTruong.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblThuTruong.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.lblThuTruong.StylePriority.UseFont          = false;
            this.lblThuTruong.StylePriority.UseTextAlignment = false;
            this.lblThuTruong.Text                           = "CHỦ TÀI KHOẢN";
            this.lblThuTruong.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // tblDetail
            //
            this.tblDetail.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblDetail.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblDetail.Name          = "tblDetail";
            this.tblDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrDetailRow1
            });
            this.tblDetail.SizeF = new System.Drawing.SizeF(803F, 25F);
            this.tblDetail.StylePriority.UseBorders = false;
            //
            // xrDetailRow1
            //
            this.xrDetailRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCellTotalWages,
                this.xrTableCellTotalIncome,
                this.xrTableCellInsurrance,
                this.xrTableCellPersonalIncomeTax,
                this.xrTableCellOtherIncome,
                this.xrTableCellTheWorkCost
            });
            this.xrDetailRow1.Name   = "xrDetailRow1";
            this.xrDetailRow1.Weight = 1D;
            //
            // xrTableCellTotalWages
            //
            this.xrTableCellTotalWages.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTotalWages.Name    = "xrTableCellTotalWages";
            this.xrTableCellTotalWages.StylePriority.UseBorders       = false;
            this.xrTableCellTotalWages.StylePriority.UseFont          = false;
            this.xrTableCellTotalWages.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalWages.Text          = " ";
            this.xrTableCellTotalWages.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalWages.Weight        = 0.39584745643453212D;
            //
            // xrTableCellTotalIncome
            //
            this.xrTableCellTotalIncome.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTotalIncome.Name    = "xrTableCellTotalIncome";
            this.xrTableCellTotalIncome.StylePriority.UseBorders       = false;
            this.xrTableCellTotalIncome.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalIncome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalIncome.Weight        = 0.38643787207413272D;
            //
            // xrTableCellInsurrance
            //
            this.xrTableCellInsurrance.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellInsurrance.Name    = "xrTableCellInsurrance";
            this.xrTableCellInsurrance.StylePriority.UseBorders       = false;
            this.xrTableCellInsurrance.StylePriority.UseTextAlignment = false;
            this.xrTableCellInsurrance.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellInsurrance.Weight        = 0.56108069673743777D;
            //
            // xrTableCellPersonalIncomeTax
            //
            this.xrTableCellPersonalIncomeTax.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellPersonalIncomeTax.Name    = "xrTableCellPersonalIncomeTax";
            this.xrTableCellPersonalIncomeTax.StylePriority.UseBorders       = false;
            this.xrTableCellPersonalIncomeTax.StylePriority.UseTextAlignment = false;
            this.xrTableCellPersonalIncomeTax.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellPersonalIncomeTax.Weight        = 0.60395891750561881D;
            //
            // xrTableCellOtherIncome
            //
            this.xrTableCellOtherIncome.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellOtherIncome.Name    = "xrTableCellOtherIncome";
            this.xrTableCellOtherIncome.StylePriority.UseBorders       = false;
            this.xrTableCellOtherIncome.StylePriority.UseTextAlignment = false;
            this.xrTableCellOtherIncome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellOtherIncome.Weight        = 0.45418327938471686D;
            //
            // xrTableCellTheWorkCost
            //
            this.xrTableCellTheWorkCost.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTheWorkCost.Name = "xrTableCellTheWorkCost";
            this.xrTableCellTheWorkCost.StylePriority.UseBorders       = false;
            this.xrTableCellTheWorkCost.StylePriority.UseTextAlignment = false;
            this.xrTableCellTheWorkCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTheWorkCost.Weight        = 0.45113177779529157D;
            //
            // rp_SalaryByMonth
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter
            });
            this.BorderColor = System.Drawing.Color.DarkGray;
            this.Font        = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
                this.formattingRule1
            });
            this.Margins       = new System.Drawing.Printing.Margins(12, 12, 15, 0);
            this.PageHeight    = 1169;
            this.PageWidth     = 827;
            this.PaperKind     = System.Drawing.Printing.PaperKind.A4;
            this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.Version       = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
예제 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(KKTheoLoaiMH));
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     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();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.subtotal         = new DevExpress.XtraReports.UI.CalculatedField();
     this.makho            = new DevExpress.XtraReports.Parameters.Parameter();
     this.maloaiMH         = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel7         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel8         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetKKbyLoaiMH()";
     storedProcQuery1.StoredProcName = "GetKKbyLoaiMH";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().SLHangTamN")
     });
     this.xrTableCell9.Dpi    = 100F;
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "xrTableCell9";
     this.xrTableCell9.Weight = 1.0298550902674009D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 100F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Số lượng";
     this.xrTableCell3.Weight = 1.479949875166795D;
     //
     // 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     = 47F;
     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;
     //
     // 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(788.9999F, 52.75109F);
     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.xrTableCell10,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi     = 100F;
     this.xrTableCell10.Name    = "xrTableCell10";
     xrSummary1.Func            = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell10.Summary = xrSummary1;
     this.xrTableCell10.Text    = "xrTableCell10";
     this.xrTableCell10.Weight  = 0.57564559008675775D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().TenMatHang")
     });
     this.xrTableCell6.Dpi    = 100F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 2.4295301845985255D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi    = 100F;
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "text";
     this.xrTableCell1.Weight = 1.4754742266516385D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().DonViTinh")
     });
     this.xrTableCell2.Dpi    = 100F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell8";
     this.xrTableCell2.Weight = 0.95732419891303189D;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell5,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 100F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "STT";
     this.xrTableCell5.Weight = 0.827229472096312D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi    = 100F;
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Tên mặt hàng";
     this.xrTableCell4.Weight = 3.491347523794337D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi                   = 100F;
     this.xrTableCell7.Font                  = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name                  = "xrTableCell7";
     this.xrTableCell7.StyleName             = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.Text                  = "Giá";
     this.xrTableCell7.Weight                = 2.12032501334546D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold);
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.Text   = "ĐVT";
     this.xrTableCell8.Weight = 1.3757190237016119D;
     //
     // 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);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // 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.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 107.2917F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Sitka Text", 14F, System.Drawing.FontStyle.Italic);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 71.58337F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(768.9998F, 19.45835F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "( Nhóm hàng [TenLoaiMH] và [TenKho] )";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth                    = 0F;
     this.xrLabel1.Dpi                            = 100F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Sitka Text", 36F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(768.9999F, 60.75001F);
     this.xrLabel1.StyleName                      = "TableStyle";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "KIỂM KÊ THEO NHÓM HÀNG";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
     //
     // 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("", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 44.84599F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // 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(788.9999F, 44.84599F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // 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.HeightF     = 17.79169F;
     this.PageFooter.Name        = "PageFooter";
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // 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       = 38.5416F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // 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);
     //
     // 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       = 52.75109F;
     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;
     //
     // 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);
     //
     // 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);
     //
     // subtotal
     //
     this.subtotal.DataMember = "GetKKbyLoaiMH()";
     this.subtotal.Expression = "[][[MaLoaiMH]=[^.MaLoaiMH]].Sum([SLHangTamN]*[Gia])";
     this.subtotal.Name       = "subtotal";
     //
     // makho
     //
     this.makho.Description = "Tên kho:";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "GetKKbyLoaiMH()";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "TenKho";
     dynamicListLookUpSettings1.FilterString  = null;
     dynamicListLookUpSettings1.ValueMember   = "MaKho";
     this.makho.LookUpSettings = dynamicListLookUpSettings1;
     this.makho.Name           = "makho";
     this.makho.Type           = typeof(int);
     this.makho.ValueInfo      = "0";
     //
     // maloaiMH
     //
     this.maloaiMH.Description = "Tên loại mặt hàng";
     dynamicListLookUpSettings2.DataAdapter   = null;
     dynamicListLookUpSettings2.DataMember    = "GetKKbyLoaiMH()";
     dynamicListLookUpSettings2.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings2.DisplayMember = "TenLoaiMH";
     dynamicListLookUpSettings2.FilterString  = null;
     dynamicListLookUpSettings2.ValueMember   = "MaLoaiMH";
     this.maloaiMH.LookUpSettings             = dynamicListLookUpSettings2;
     this.maloaiMH.Name      = "maloaiMH";
     this.maloaiMH.Type      = typeof(int);
     this.maloaiMH.ValueInfo = "0";
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 125.0662F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(127.0833F, 33.68378F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Tổng giá trị: ";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().subtotal", "{0:#,#} VNĐ")
     });
     this.xrLabel3.Dpi                   = 100F;
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(127.0836F, 125.0662F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(190.6693F, 33.68378F);
     this.xrLabel3.StylePriority.UseFont = false;
     xrSummary2.FormatString             = "{0:#.00}";
     this.xrLabel3.Summary               = xrSummary2;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().MaMatHang")
     });
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.Font          = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(138.5419F, 22.99999F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Scripts.OnSummaryGetResult = "xrLabel6_SummaryGetResult";
     this.xrLabel6.SizeF = new System.Drawing.SizeF(424.0027F, 33.68378F);
     this.xrLabel6.StylePriority.UseFont = false;
     xrSummary3.FormatString             = "{0}";
     xrSummary3.Func       = DevExpress.XtraReports.UI.SummaryFunc.Count;
     xrSummary3.Running    = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel6.Summary = xrSummary3;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLine1,
         this.xrLabel6,
         this.xrLabel3,
         this.xrLabel4
     });
     this.GroupFooter2.Dpi     = 100F;
     this.GroupFooter2.HeightF = 168.75F;
     this.GroupFooter2.Level   = 1;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().SLHangTamN")
     });
     this.xrLabel7.Dpi           = 100F;
     this.xrLabel7.Font          = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(254.1667F, 73.95834F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Scripts.OnSummaryGetResult = "xrLabel6_SummaryGetResult";
     this.xrLabel7.SizeF = new System.Drawing.SizeF(238.0601F, 33.68378F);
     this.xrLabel7.StylePriority.UseFont = false;
     xrSummary4.FormatString             = "{0}";
     xrSummary4.Running    = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel7.Summary = xrSummary4;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(7.947286E-06F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(788.9998F, 23F);
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 22.99999F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(138.5417F, 33.68378F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Số mặt hàng: ";
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi                   = 100F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 73.95834F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(254.1664F, 33.68378F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "Tổng số lượng mặt hàng:";
     //
     // KKTheoLoaiMH
     //
     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.GroupFooter2
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.subtotal
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "GetKKbyLoaiMH()";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[MaKho] = ?makho And [MaLoaiMH] = ?maloaiMH";
     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, 51, 47, 39);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.makho,
         this.maloaiMH
     });
     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();
 }
예제 #16
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "RepAPagarCheques.resx";

        this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
        this.lemissaoextenso = new DevExpress.XtraReports.UI.XRLabel();
        this.lnominal        = new DevExpress.XtraReports.UI.XRLabel();
        this.lvalorextenso2  = new DevExpress.XtraReports.UI.XRLabel();
        this.lvalorextenso1  = new DevExpress.XtraReports.UI.XRLabel();
        this.lvalor          = new DevExpress.XtraReports.UI.XRLabel();
        this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.xrControlStyle2 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.BorderWidth = 1F;
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lemissaoextenso,
            this.lnominal,
            this.lvalorextenso2,
            this.lvalorextenso1,
            this.lvalor
        });
        this.Detail.EvenStyleName = "xrControlStyle1";
        this.Detail.ForeColor     = System.Drawing.Color.Black;
        this.Detail.HeightF       = 285.4166F;
        this.Detail.KeepTogether  = true;
        this.Detail.KeepTogetherWithDetailReports = true;
        this.Detail.Name         = "Detail";
        this.Detail.OddStyleName = "xrControlStyle2";
        this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.StylePriority.UseBorderWidth = false;
        this.Detail.StylePriority.UseForeColor   = false;
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // lemissaoextenso
        //
        this.lemissaoextenso.BackColor     = System.Drawing.Color.Transparent;
        this.lemissaoextenso.Font          = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lemissaoextenso.LocationFloat = new DevExpress.Utils.PointFloat(303.8331F, 121.7917F);
        this.lemissaoextenso.Name          = "lemissaoextenso";
        this.lemissaoextenso.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lemissaoextenso.SizeF         = new System.Drawing.SizeF(393.1669F, 20.00001F);
        this.lemissaoextenso.StylePriority.UseBackColor = false;
        this.lemissaoextenso.StylePriority.UseFont      = false;
        this.lemissaoextenso.Text = "lemissaoextenso";
        //
        // lnominal
        //
        this.lnominal.BackColor     = System.Drawing.Color.Transparent;
        this.lnominal.Font          = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lnominal.LocationFloat = new DevExpress.Utils.PointFloat(54.79167F, 93.58333F);
        this.lnominal.Name          = "lnominal";
        this.lnominal.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lnominal.SizeF         = new System.Drawing.SizeF(549.5F, 20F);
        this.lnominal.StylePriority.UseBackColor = false;
        this.lnominal.StylePriority.UseFont      = false;
        this.lnominal.Text = "lnominal";
        //
        // lvalorextenso2
        //
        this.lvalorextenso2.BackColor     = System.Drawing.Color.Transparent;
        this.lvalorextenso2.Font          = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lvalorextenso2.LocationFloat = new DevExpress.Utils.PointFloat(34.79167F, 69.20837F);
        this.lvalorextenso2.Name          = "lvalorextenso2";
        this.lvalorextenso2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lvalorextenso2.SizeF         = new System.Drawing.SizeF(612F, 20F);
        this.lvalorextenso2.StylePriority.UseBackColor = false;
        this.lvalorextenso2.StylePriority.UseFont      = false;
        this.lvalorextenso2.Text = "lvalorextenso2";
        //
        // lvalorextenso1
        //
        this.lvalorextenso1.BackColor     = System.Drawing.Color.Transparent;
        this.lvalorextenso1.Font          = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lvalorextenso1.LocationFloat = new DevExpress.Utils.PointFloat(127.7083F, 44.08331F);
        this.lvalorextenso1.Name          = "lvalorextenso1";
        this.lvalorextenso1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lvalorextenso1.SizeF         = new System.Drawing.SizeF(569.2916F, 20F);
        this.lvalorextenso1.StylePriority.UseBackColor = false;
        this.lvalorextenso1.StylePriority.UseFont      = false;
        this.lvalorextenso1.Text = "lvalorextenso1";
        //
        // lvalor
        //
        this.lvalor.Font                           = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lvalor.LocationFloat                  = new DevExpress.Utils.PointFloat(529.7916F, 10.00001F);
        this.lvalor.Name                           = "lvalor";
        this.lvalor.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lvalor.SizeF                          = new System.Drawing.SizeF(155.2083F, 20F);
        this.lvalor.StylePriority.UseFont          = false;
        this.lvalor.StylePriority.UseTextAlignment = false;
        this.lvalor.Text                           = "lvalor";
        this.lvalor.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        //
        // TopMargin
        //
        this.TopMargin.BackColor = System.Drawing.Color.Transparent;
        this.TopMargin.HeightF   = 0F;
        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       = 1.041667F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrControlStyle1
        //
        this.xrControlStyle1.Name    = "xrControlStyle1";
        this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        //
        // xrControlStyle2
        //
        this.xrControlStyle2.Name    = "xrControlStyle2";
        this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        //
        // formattingRule1
        //
        this.formattingRule1.Name = "formattingRule1";
        //
        // RepAPagarCheques
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin
        });
        this.Font = new System.Drawing.Font("Calibri", 9.75F);
        this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1
        });
        this.Margins    = new System.Drawing.Printing.Margins(50, 70, 0, 1);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.xrControlStyle1,
            this.xrControlStyle2
        });
        this.Version      = "13.2";
        this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepAPagarCheques_BeforePrint);
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
예제 #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepParcelas.resx";
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.lpagamento           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8             = new DevExpress.XtraReports.UI.XRLabel();
     this.lemitentecpf         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3             = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalorpagamento      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.lvaloracrescimos     = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalordesconto       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6             = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalorparcela        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9             = new DevExpress.XtraReports.UI.XRLabel();
     this.lnomeempresa         = new DevExpress.XtraReports.UI.XRLabel();
     this.lemitentenome        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
     this.lemissaoextenso      = new DevExpress.XtraReports.UI.XRLabel();
     this.lcidadeestadoextenso = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalorextenso1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalorextenso2       = new DevExpress.XtraReports.UI.XRLabel();
     this.lcnpjempresa         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2              = new DevExpress.XtraReports.UI.XRLine();
     this.lvinculo1            = new DevExpress.XtraReports.UI.XRLabel();
     this.lvinculo3            = new DevExpress.XtraReports.UI.XRLabel();
     this.lvinculo2            = new DevExpress.XtraReports.UI.XRLabel();
     this.lvencimento          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1             = new DevExpress.XtraReports.UI.XRLabel();
     this.lnumero              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5             = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ltusuario            = new DevExpress.XtraReports.UI.XRLabel();
     this.ltempresa            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1        = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPageInfo3          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ltitulorelatorio     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1      = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lcaminho             = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lpagamento,
         this.xrLabel8,
         this.lemitentecpf,
         this.xrLabel3,
         this.lvalorpagamento,
         this.xrLabel14,
         this.xrLabel11,
         this.lvaloracrescimos,
         this.lvalordesconto,
         this.xrLabel6,
         this.lvalorparcela,
         this.xrLabel9,
         this.lnomeempresa,
         this.lemitentenome,
         this.xrLabel4,
         this.lemissaoextenso,
         this.lcidadeestadoextenso,
         this.lvalorextenso1,
         this.xrLabel10,
         this.lvalorextenso2,
         this.lcnpjempresa,
         this.xrLine2,
         this.lvinculo1,
         this.lvinculo3,
         this.lvinculo2,
         this.lvencimento,
         this.xrLabel2,
         this.xrLabel1,
         this.lnumero,
         this.xrLabel7,
         this.xrLabel5
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 358.8169F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // lpagamento
     //
     this.lpagamento.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lpagamento.LocationFloat         = new DevExpress.Utils.PointFloat(153.7709F, 73.76264F);
     this.lpagamento.Name                  = "lpagamento";
     this.lpagamento.NullValueText         = " ";
     this.lpagamento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lpagamento.SizeF                 = new System.Drawing.SizeF(282.2917F, 14F);
     this.lpagamento.StylePriority.UseFont = false;
     this.lpagamento.Text                  = "lpagamento";
     //
     // xrLabel8
     //
     this.xrLabel8.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(61.77073F, 73.76257F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.NullValueText         = " ";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Pagamento:";
     //
     // lemitentecpf
     //
     this.lemitentecpf.BackColor     = System.Drawing.Color.SlateGray;
     this.lemitentecpf.Font          = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lemitentecpf.LocationFloat = new DevExpress.Utils.PointFloat(631.2289F, 123.0126F);
     this.lemitentecpf.Name          = "lemitentecpf";
     this.lemitentecpf.NullValueText = " ";
     this.lemitentecpf.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemitentecpf.SizeF         = new System.Drawing.SizeF(257.3335F, 14F);
     this.lemitentecpf.StylePriority.UseBackColor = false;
     this.lemitentecpf.StylePriority.UseFont      = false;
     this.lemitentecpf.Text = "lemitentecpf";
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(479.8539F, 123.0126F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.NullValueText         = " ";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(151.3751F, 14.00002F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = ", inscrito no CPF/CNPJ sob No. ";
     //
     // lvalorpagamento
     //
     this.lvalorpagamento.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorpagamento.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 259.6169F);
     this.lvalorpagamento.Name                  = "lvalorpagamento";
     this.lvalorpagamento.NullValueText         = " ";
     this.lvalorpagamento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorpagamento.SizeF                 = new System.Drawing.SizeF(100F, 14F);
     this.lvalorpagamento.StylePriority.UseFont = false;
     this.lvalorpagamento.Text                  = "lvalorpagamento";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(61.77073F, 259.6168F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.NullValueText         = " ";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Valor Pago";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(61.77071F, 227.6168F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.NullValueText         = " ";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Acréscimos";
     //
     // lvaloracrescimos
     //
     this.lvaloracrescimos.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvaloracrescimos.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 227.6168F);
     this.lvaloracrescimos.Name                  = "lvaloracrescimos";
     this.lvaloracrescimos.NullValueText         = " ";
     this.lvaloracrescimos.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvaloracrescimos.SizeF                 = new System.Drawing.SizeF(99.99998F, 14F);
     this.lvaloracrescimos.StylePriority.UseFont = false;
     this.lvaloracrescimos.Text                  = "lvaloracrescimos";
     //
     // lvalordesconto
     //
     this.lvalordesconto.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalordesconto.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 243.6168F);
     this.lvalordesconto.Name                  = "lvalordesconto";
     this.lvalordesconto.NullValueText         = " ";
     this.lvalordesconto.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalordesconto.SizeF                 = new System.Drawing.SizeF(100F, 14F);
     this.lvalordesconto.StylePriority.UseFont = false;
     this.lvalordesconto.Text                  = "lvalordesconto";
     //
     // xrLabel6
     //
     this.xrLabel6.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(61.77071F, 243.6167F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.NullValueText         = " ";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "Descontos";
     //
     // lvalorparcela
     //
     this.lvalorparcela.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorparcela.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 211.6168F);
     this.lvalorparcela.Name                  = "lvalorparcela";
     this.lvalorparcela.NullValueText         = " ";
     this.lvalorparcela.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorparcela.SizeF                 = new System.Drawing.SizeF(100F, 14F);
     this.lvalorparcela.StylePriority.UseFont = false;
     this.lvalorparcela.Text                  = "lvalorparcela";
     //
     // xrLabel9
     //
     this.xrLabel9.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(61.77071F, 211.6168F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.NullValueText         = " ";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "Valor Parcela";
     //
     // lnomeempresa
     //
     this.lnomeempresa.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lnomeempresa.LocationFloat         = new DevExpress.Utils.PointFloat(529.8539F, 291.9293F);
     this.lnomeempresa.Name                  = "lnomeempresa";
     this.lnomeempresa.NullValueText         = " ";
     this.lnomeempresa.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnomeempresa.SizeF                 = new System.Drawing.SizeF(345.8333F, 14F);
     this.lnomeempresa.StylePriority.UseFont = false;
     this.lnomeempresa.Text                  = "lnomeempresa";
     //
     // lemitentenome
     //
     this.lemitentenome.BackColor     = System.Drawing.Color.SlateGray;
     this.lemitentenome.Font          = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lemitentenome.LocationFloat = new DevExpress.Utils.PointFloat(119.2708F, 123.0126F);
     this.lemitentenome.Name          = "lemitentenome";
     this.lemitentenome.NullValueText = " ";
     this.lemitentenome.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemitentenome.SizeF         = new System.Drawing.SizeF(360.5831F, 14F);
     this.lemitentenome.StylePriority.UseBackColor = false;
     this.lemitentenome.StylePriority.UseFont      = false;
     this.lemitentenome.Text = "lemitentenome";
     //
     // xrLabel4
     //
     this.xrLabel4.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(61.77069F, 123.0126F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.NullValueText         = " ";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(57.50007F, 14F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Recebi de ";
     //
     // lemissaoextenso
     //
     this.lemissaoextenso.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lemissaoextenso.LocationFloat         = new DevExpress.Utils.PointFloat(529.8539F, 214.4293F);
     this.lemissaoextenso.Name                  = "lemissaoextenso";
     this.lemissaoextenso.NullValueText         = " ";
     this.lemissaoextenso.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemissaoextenso.SizeF                 = new System.Drawing.SizeF(457.3753F, 14.00002F);
     this.lemissaoextenso.StylePriority.UseFont = false;
     this.lemissaoextenso.Text                  = "lemissaoextenso";
     //
     // lcidadeestadoextenso
     //
     this.lcidadeestadoextenso.BackColor     = System.Drawing.Color.SlateGray;
     this.lcidadeestadoextenso.Font          = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcidadeestadoextenso.LocationFloat = new DevExpress.Utils.PointFloat(385.9793F, 171.0126F);
     this.lcidadeestadoextenso.Name          = "lcidadeestadoextenso";
     this.lcidadeestadoextenso.NullValueText = " ";
     this.lcidadeestadoextenso.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcidadeestadoextenso.SizeF         = new System.Drawing.SizeF(601.2499F, 14.00002F);
     this.lcidadeestadoextenso.StylePriority.UseBackColor = false;
     this.lcidadeestadoextenso.StylePriority.UseFont      = false;
     this.lcidadeestadoextenso.Text = "lcidadeestadoextenso";
     //
     // lvalorextenso1
     //
     this.lvalorextenso1.BackColor     = System.Drawing.Color.SlateGray;
     this.lvalorextenso1.Font          = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorextenso1.LocationFloat = new DevExpress.Utils.PointFloat(61.77067F, 139.0126F);
     this.lvalorextenso1.Name          = "lvalorextenso1";
     this.lvalorextenso1.NullValueText = " ";
     this.lvalorextenso1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso1.SizeF         = new System.Drawing.SizeF(925.4585F, 14F);
     this.lvalorextenso1.StylePriority.UseBackColor = false;
     this.lvalorextenso1.StylePriority.UseFont      = false;
     this.lvalorextenso1.Text = "lvalorextenso1";
     //
     // xrLabel10
     //
     this.xrLabel10.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(253.7708F, 171.0126F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.NullValueText         = " ";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(132.2085F, 14.00002F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = ", na Praça do Município de ";
     //
     // lvalorextenso2
     //
     this.lvalorextenso2.BackColor     = System.Drawing.Color.SlateGray;
     this.lvalorextenso2.Font          = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorextenso2.LocationFloat = new DevExpress.Utils.PointFloat(61.77065F, 155.0126F);
     this.lvalorextenso2.Name          = "lvalorextenso2";
     this.lvalorextenso2.NullValueText = " ";
     this.lvalorextenso2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso2.SizeF         = new System.Drawing.SizeF(925.4585F, 14F);
     this.lvalorextenso2.StylePriority.UseBackColor = false;
     this.lvalorextenso2.StylePriority.UseFont      = false;
     this.lvalorextenso2.Text = "lvalorextenso2";
     //
     // lcnpjempresa
     //
     this.lcnpjempresa.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcnpjempresa.LocationFloat         = new DevExpress.Utils.PointFloat(529.8539F, 306.9293F);
     this.lcnpjempresa.Name                  = "lcnpjempresa";
     this.lcnpjempresa.NullValueText         = " ";
     this.lcnpjempresa.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcnpjempresa.SizeF                 = new System.Drawing.SizeF(345.8333F, 14F);
     this.lcnpjempresa.StylePriority.UseFont = false;
     this.lcnpjempresa.Text                  = "lcnpjempresa";
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(529.8538F, 270.0543F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(345.8334F, 7.375F);
     //
     // lvinculo1
     //
     this.lvinculo1.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvinculo1.LocationFloat         = new DevExpress.Utils.PointFloat(625.7708F, 41.76262F);
     this.lvinculo1.Name                  = "lvinculo1";
     this.lvinculo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo1.SizeF                 = new System.Drawing.SizeF(340.4584F, 14F);
     this.lvinculo1.StylePriority.UseFont = false;
     this.lvinculo1.Text                  = "Vinculada ao Contrato de Compra e Venda do Empreendimento";
     //
     // lvinculo3
     //
     this.lvinculo3.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvinculo3.LocationFloat         = new DevExpress.Utils.PointFloat(625.7708F, 73.76259F);
     this.lvinculo3.Name                  = "lvinculo3";
     this.lvinculo3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo3.SizeF                 = new System.Drawing.SizeF(340.4584F, 14F);
     this.lvinculo3.StylePriority.UseFont = false;
     this.lvinculo3.Text                  = "lvinculo3";
     //
     // lvinculo2
     //
     this.lvinculo2.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvinculo2.LocationFloat         = new DevExpress.Utils.PointFloat(625.7708F, 57.7626F);
     this.lvinculo2.Name                  = "lvinculo2";
     this.lvinculo2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo2.SizeF                 = new System.Drawing.SizeF(340.4584F, 14F);
     this.lvinculo2.StylePriority.UseFont = false;
     this.lvinculo2.Text                  = "lvinculo2";
     //
     // lvencimento
     //
     this.lvencimento.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvencimento.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 57.76264F);
     this.lvencimento.Name                  = "lvencimento";
     this.lvencimento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvencimento.SizeF                 = new System.Drawing.SizeF(282.2917F, 14F);
     this.lvencimento.StylePriority.UseFont = false;
     this.lvencimento.Text                  = "lvencimento";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(61.77069F, 57.7626F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Vencimento:";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(61.77069F, 41.76262F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(92.00004F, 14F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Parcela No.:";
     //
     // lnumero
     //
     this.lnumero.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lnumero.LocationFloat         = new DevExpress.Utils.PointFloat(153.7708F, 41.76262F);
     this.lnumero.Name                  = "lnumero";
     this.lnumero.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnumero.SizeF                 = new System.Drawing.SizeF(100F, 14F);
     this.lnumero.StylePriority.UseFont = false;
     this.lnumero.Text                  = "lnumero";
     //
     // xrLabel7
     //
     this.xrLabel7.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(61.77071F, 171.0126F);
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(192.0001F, 14.00002F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = ", refente a parcela descriminada abaixo";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                  = new System.Drawing.Font("Calibri", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(888.5624F, 123.0126F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(98.66681F, 14F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "a  importancia  de";
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 48.81465F;
     this.TopMargin.Name      = "TopMargin";
     this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltusuario
     //
     this.ltusuario.BackColor     = System.Drawing.Color.White;
     this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
     this.ltusuario.StylePriority.UseBackColor     = false;
     this.ltusuario.StylePriority.UseFont          = false;
     this.ltusuario.StylePriority.UseTextAlignment = false;
     this.ltusuario.Text          = "ltusuario";
     this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltempresa
     //
     this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
     this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
     this.ltempresa.StylePriority.UseBackColor     = false;
     this.ltempresa.StylePriority.UseBorders       = false;
     this.ltempresa.StylePriority.UseFont          = false;
     this.ltempresa.StylePriority.UseForeColor     = false;
     this.ltempresa.StylePriority.UseTextAlignment = false;
     this.ltempresa.Text          = "ltempresa";
     this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
     this.xrPageInfo2.BorderWidth   = 0F;
     this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
     this.xrPageInfo2.StylePriority.UseBackColor     = false;
     this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 24.16428F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.BackColor = System.Drawing.Color.LightGray;
     this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrPageInfo3,
         this.ltitulorelatorio,
         this.xrPageInfo2,
         this.ltempresa,
         this.ltusuario
     });
     this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
     this.PageHeader.HeightF = 76.04166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor = false;
     this.PageHeader.StylePriority.UseBorders   = false;
     this.PageHeader.StylePriority.UseFont      = false;
     this.PageHeader.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.PageHeader_BeforePrint);
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
     this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPictureBox1.BorderWidth     = 0F;
     this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
     this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
     this.xrPictureBox1.Name            = "xrPictureBox1";
     this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
     this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorderColor     = false;
     this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
     this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
     this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrPageInfo3.Format        = "Pág: {0}/{1}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
     this.xrPageInfo3.StylePriority.UseBackColor     = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltitulorelatorio
     //
     this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
     this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
     this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
     this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
     this.ltitulorelatorio.StylePriority.UseBackColor     = false;
     this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
     this.ltitulorelatorio.StylePriority.UseBorders       = false;
     this.ltitulorelatorio.StylePriority.UseFont          = false;
     this.ltitulorelatorio.StylePriority.UseForeColor     = false;
     this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
     this.ltitulorelatorio.Text          = "RECIBO DE PAGAMENTO DE PARCELA No. ";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcaminho
     });
     this.PageFooter.HeightF = 22.91667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // lcaminho
     //
     this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 3.999964F);
     this.lcaminho.Name                  = "lcaminho";
     this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcaminho.SizeF                 = new System.Drawing.SizeF(418.7498F, 14F);
     this.lcaminho.StylePriority.UseFont = false;
     this.lcaminho.Text                  = "Gitano ->SGFin ->Pagamentos ->Recibo de Pagamento de Parcela";
     //
     // RepParcelas
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepParcelas_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
	/// <summary>
	/// Required method for Designer support - do not modify
	/// the contents of this method with the code editor.
	/// </summary>
	public void InitializeComponent() {
            string resourceFileName = "OgrenciSinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.OgrenciSinifListesi.ResourceManager;
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
            this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
            this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
            this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
            this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
            this.cat_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.dersid = new DevExpress.XtraReports.Parameters.Parameter();
            this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "CustomSqlQuery";
            relationColumnInfo1.NestedKeyColumn = "ogr_no";
            relationColumnInfo1.ParentKeyColumn = "ogr_no";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Ogrenci";
            relationInfo1.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo2.NestedKeyColumn = "Sinav_id";
            relationColumnInfo2.ParentKeyColumn = "Sinav_id";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Sinavlar";
            relationInfo2.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo3.NestedKeyColumn = "ders_id";
            relationColumnInfo3.ParentKeyColumn = "ders_id";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "Dersler";
            relationInfo3.ParentTable = "Sinavlar";
            relationColumnInfo4.NestedKeyColumn = "derslik_id";
            relationColumnInfo4.ParentKeyColumn = "derslik_id";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "Derslik";
            relationInfo4.ParentTable = "ogr_sinav_derslik";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4});
            tableInfo1.Name = "ogr_sinav_derslik";
            columnInfo1.Name = "ogr_no";
            columnInfo2.Name = "Sinav_id";
            columnInfo3.Name = "derslik_id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3});
            tableInfo2.Name = "Ogrenci";
            columnInfo4.Name = "ogr_adi";
            columnInfo5.Name = "ogr_soyadi";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo4,
            columnInfo5});
            tableInfo3.Name = "Sinavlar";
            columnInfo6.Name = "ders_id";
            columnInfo7.Name = "tarih";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6,
            columnInfo7});
            tableInfo4.Name = "Dersler";
            columnInfo8.Alias = "Dersler_ders_id";
            columnInfo8.Name = "ders_id";
            columnInfo9.Name = "ders_adi";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo8,
            columnInfo9});
            tableInfo5.Name = "Derslik";
            columnInfo10.Name = "derslik_adi";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo10});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4,
            tableInfo5});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 24.93844F;
            this.Detail.MultiColumn.ColumnSpacing = 10F;
            this.Detail.MultiColumn.ColumnWidth = 355F;
            this.Detail.MultiColumn.Layout = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
            this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StyleName = "DataField";
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrTable2
            // 
            this.xrTable2.BackColor = System.Drawing.Color.Transparent;
            this.xrTable2.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F);
            this.xrTable2.ForeColor = System.Drawing.Color.Black;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(737.5F, 24.39223F);
            this.xrTable2.StylePriority.UseBackColor = false;
            this.xrTable2.StylePriority.UseBorderColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseForeColor = false;
            this.xrTable2.StylePriority.UsePadding = false;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_no")});
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_adi")});
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_soyadi")});
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Text = "xrTableCell7";
            this.xrTableCell7.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.derslik_adi")});
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Weight = 1D;
            // 
            // Title
            // 
            this.Title.BackColor = System.Drawing.Color.Transparent;
            this.Title.BorderColor = System.Drawing.Color.Black;
            this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Title.BorderWidth = 1F;
            this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
            this.Title.ForeColor = System.Drawing.Color.Maroon;
            this.Title.Name = "Title";
            // 
            // FieldCaption
            // 
            this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
            this.FieldCaption.BorderColor = System.Drawing.Color.Black;
            this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.FieldCaption.BorderWidth = 1F;
            this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
            this.FieldCaption.Name = "FieldCaption";
            // 
            // PageInfo
            // 
            this.PageInfo.BackColor = System.Drawing.Color.Transparent;
            this.PageInfo.BorderColor = System.Drawing.Color.Black;
            this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.PageInfo.BorderWidth = 1F;
            this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.PageInfo.ForeColor = System.Drawing.Color.Black;
            this.PageInfo.Name = "PageInfo";
            // 
            // DataField
            // 
            this.DataField.BackColor = System.Drawing.Color.Transparent;
            this.DataField.BorderColor = System.Drawing.Color.Black;
            this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.DataField.BorderWidth = 1F;
            this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.DataField.ForeColor = System.Drawing.Color.Black;
            this.DataField.Name = "DataField";
            this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            // 
            // topMarginBand1
            // 
            this.topMarginBand1.HeightF = 0F;
            this.topMarginBand1.Name = "topMarginBand1";
            // 
            // bottomMarginBand1
            // 
            this.bottomMarginBand1.HeightF = 0F;
            this.bottomMarginBand1.Name = "bottomMarginBand1";
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.ReportHeader.HeightF = 27.41666F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.BorderWidth = 14F;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrLabel1.ForeColor = System.Drawing.Color.Black;
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(253.125F, 26.41666F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorderWidth = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseForeColor = false;
            this.xrLabel1.Text = "Öğrenci Sınıf Listesi";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.PageHeader.HeightF = 33.37498F;
            this.PageHeader.Name = "PageHeader";
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.SlateGray;
            this.xrTable1.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(737.5F, 32.29167F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseBorderColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UsePadding = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "Öğrenci Numarası";
            this.xrTableCell1.Weight = 1D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "Öğrenci Adi";
            this.xrTableCell2.Weight = 1D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "Öğrenci Soyadı";
            this.xrTableCell3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.Text = "Derslik";
            this.xrTableCell4.Weight = 1D;
            // 
            // sharedImageCollection1
            // 
            // 
            // 
            // 
            this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
            this.sharedImageCollection1.ParentControl = null;
            // 
            // cat_id
            // 
            this.cat_id.Description = "categoryid";
            this.cat_id.Name = "cat_id";
            this.cat_id.Type = typeof(int);
            this.cat_id.ValueInfo = "1";
            this.cat_id.Visible = false;
            // 
            // dersid
            // 
            this.dersid.Description = "dersid";
            this.dersid.Name = "dersid";
            this.dersid.Type = typeof(int);
            this.dersid.ValueInfo = "0";
            this.dersid.Visible = false;
            // 
            // formattingRule1
            // 
            this.formattingRule1.Name = "formattingRule1";
            // 
            // XtraReport1
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.topMarginBand1,
            this.bottomMarginBand1,
            this.ReportHeader,
            this.PageHeader});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "CustomSqlQuery";
            this.DataSource = this.sqlDataSource1;
            this.FilterString = "[Sinav_id] = ?dersid";
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1});
            this.Margins = new System.Drawing.Printing.Margins(65, 0, 0, 0);
            this.PageHeight = 1169;
            this.PageWidth = 827;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.cat_id,
            this.dersid});
            this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12;
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     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();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(en_DisposalEmployeesCustodies));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings3 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1            = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail                    = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPivotGrid1              = new DevExpress.XtraReports.UI.XRPivotGrid();
     this.fielddeptName             = new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField();
     this.fieldEmpName              = new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField();
     this.fieldCustodyName          = new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField();
     this.fieldEmployeeCustodyPrice = new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField();
     this.TopMargin                 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin              = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader              = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.companyLogo               = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel4                  = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                  = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName               = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter                = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2               = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo1               = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel10                 = new DevExpress.XtraReports.UI.XRLabel();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.PeriodYear       = new DevExpress.XtraReports.UI.CalculatedField();
     this.PeriodMonth      = new DevExpress.XtraReports.UI.CalculatedField();
     this.PeriodDay        = new DevExpress.XtraReports.UI.CalculatedField();
     this.InUse            = new DevExpress.XtraReports.Parameters.Parameter();
     this.categoryIds      = new DevExpress.XtraReports.Parameters.Parameter();
     this.DeptIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.EmpIds           = new DevExpress.XtraReports.Parameters.Parameter();
     this.from             = new DevExpress.XtraReports.Parameters.Parameter();
     this.to                 = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture            = new DevExpress.XtraReports.Parameters.Parameter();
     this.CompanyId          = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingEmpIds      = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDeptIds     = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName         = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingInUse       = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingCategoryIds = new DevExpress.XtraReports.Parameters.Parameter();
     this.Custodystatus      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name     = "SP_EmployeeCustody";
     queryParameter1.Name      = "@Culture";
     queryParameter1.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value     = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name      = "@LoginCompanyId";
     queryParameter2.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value     = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name      = "@deptName";
     queryParameter3.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingDeptIds]", typeof(string));
     queryParameter4.Name      = "@empIds";
     queryParameter4.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingEmpIds]", typeof(string));
     queryParameter5.Name      = "@inuse";
     queryParameter5.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingInUse]", typeof(string));
     queryParameter6.Name      = "@categoryIds";
     queryParameter6.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingCategoryIds]", typeof(string));
     queryParameter7.Name      = "@disposal";
     queryParameter7.Type      = typeof(string);
     queryParameter7.ValueInfo = "0";
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.Parameters.Add(queryParameter7);
     storedProcQuery1.StoredProcName = "SP_EmployeeCustody";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPivotGrid1
     });
     this.Detail.Dpi          = 254F;
     this.Detail.HeightF      = 394.3473F;
     this.Detail.KeepTogether = true;
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("custodyName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("custodyName", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("delvryDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("delvryDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("RecvDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("RecvDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("CustodyCat", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("CustodyCat", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)
     });
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPivotGrid1
     //
     this.xrPivotGrid1.Appearance.Cell.Font                 = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.CustomTotalCell.Font      = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.FieldHeader.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.FieldValue.Font           = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.FieldValueGrandTotal.Font = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.FieldValueTotal.Font      = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.GrandTotalCell.BackColor  = System.Drawing.Color.Blue;
     this.xrPivotGrid1.Appearance.GrandTotalCell.Font       = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.Lines.Font                = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.Appearance.TotalCell.Font            = new System.Drawing.Font("Tahoma", 8F);
     this.xrPivotGrid1.DataMember = "SP_EmployeeCustody";
     this.xrPivotGrid1.DataSource = this.sqlDataSource1;
     this.xrPivotGrid1.Dpi        = 254F;
     this.xrPivotGrid1.Fields.AddRange(new DevExpress.XtraReports.UI.PivotGrid.XRPivotGridField[] {
         this.fielddeptName,
         this.fieldEmpName,
         this.fieldCustodyName,
         this.fieldEmployeeCustodyPrice
     });
     this.xrPivotGrid1.LocationFloat = new DevExpress.Utils.PointFloat(10.58333F, 0F);
     this.xrPivotGrid1.Name          = "xrPivotGrid1";
     this.xrPivotGrid1.OptionsPrint.FilterSeparatorBarPadding = 3;
     this.xrPivotGrid1.OptionsPrint.PrintColumnHeaders        = DevExpress.Utils.DefaultBoolean.False;
     this.xrPivotGrid1.OptionsPrint.PrintDataHeaders          = DevExpress.Utils.DefaultBoolean.False;
     this.xrPivotGrid1.OptionsPrint.PrintFilterHeaders        = DevExpress.Utils.DefaultBoolean.False;
     this.xrPivotGrid1.SizeF = new System.Drawing.SizeF(2940.07F, 329.8472F);
     //
     // fielddeptName
     //
     this.fielddeptName.Appearance.FieldHeader.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(215)))), ((int)(((byte)(227)))));
     this.fielddeptName.Appearance.FieldHeader.Font               = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold);
     this.fielddeptName.Appearance.FieldValue.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.fielddeptName.Appearance.FieldValue.Font                = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F);
     this.fielddeptName.Appearance.FieldValueGrandTotal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.fielddeptName.Appearance.FieldValueTotal.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(215)))), ((int)(((byte)(227)))));
     this.fielddeptName.Appearance.FieldValueTotal.Font           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold);
     this.fielddeptName.Appearance.GrandTotalCell.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.fielddeptName.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fielddeptName.AreaIndex = 0;
     this.fielddeptName.Caption   = "Department";
     this.fielddeptName.FieldName = "deptName";
     this.fielddeptName.Name      = "fielddeptName";
     this.fielddeptName.Width     = 120;
     //
     // fieldEmpName
     //
     this.fieldEmpName.Appearance.FieldHeader.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(215)))), ((int)(((byte)(227)))));
     this.fieldEmpName.Appearance.FieldHeader.Font               = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold);
     this.fieldEmpName.Appearance.FieldValue.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.fieldEmpName.Appearance.FieldValue.Font                = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F);
     this.fieldEmpName.Appearance.FieldValueGrandTotal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.fieldEmpName.Appearance.GrandTotalCell.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.fieldEmpName.Appearance.TotalCell.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.fieldEmpName.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fieldEmpName.AreaIndex = 1;
     this.fieldEmpName.Caption   = "Employee Name";
     this.fieldEmpName.FieldName = "EmpName";
     this.fieldEmpName.Name      = "fieldEmpName";
     this.fieldEmpName.Width     = 120;
     //
     // fieldCustodyName
     //
     this.fieldCustodyName.Appearance.FieldValue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(215)))), ((int)(((byte)(227)))));
     this.fieldCustodyName.Appearance.FieldValue.Font      = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold);
     this.fieldCustodyName.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.fieldCustodyName.AreaIndex = 0;
     this.fieldCustodyName.Caption   = "Custody Name";
     this.fieldCustodyName.FieldName = "CustodyName";
     this.fieldCustodyName.Name      = "fieldCustodyName";
     this.fieldCustodyName.Width     = 120;
     //
     // fieldEmployeeCustodyPrice
     //
     this.fieldEmployeeCustodyPrice.Appearance.FieldHeader.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.fieldEmployeeCustodyPrice.Appearance.FieldHeader.Font               = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F);
     this.fieldEmployeeCustodyPrice.Appearance.FieldValueGrandTotal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.fieldEmployeeCustodyPrice.Appearance.FieldValueTotal.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.fieldEmployeeCustodyPrice.Appearance.GrandTotalCell.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.fieldEmployeeCustodyPrice.Appearance.GrandTotalCell.Font            = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F);
     this.fieldEmployeeCustodyPrice.Appearance.TotalCell.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(215)))), ((int)(((byte)(227)))));
     this.fieldEmployeeCustodyPrice.Appearance.TotalCell.Font = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold);
     this.fieldEmployeeCustodyPrice.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldEmployeeCustodyPrice.AreaIndex = 0;
     this.fieldEmployeeCustodyPrice.Caption   = "Purchase of received Custodies";
     this.fieldEmployeeCustodyPrice.FieldName = "EmployeeCustodyPrice";
     this.fieldEmployeeCustodyPrice.Name      = "fieldEmployeeCustodyPrice";
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.companyLogo,
         this.xrLabel4,
         this.xrLabel1
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 219.9306F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // companyLogo
     //
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(10.58333F, 0F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(825.6727F, 38.99773F);
     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.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel1.Dpi                            = 254F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(2192.181F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(758.4722F, 139.5589F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrPageInfo1,
         this.xrLabel10,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 77.61111F;
     this.PageFooter.Name    = "PageFooter";
     //
     // 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(10.58333F, 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.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2696.653F, 8.308817F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(974.0002F, 5.364372F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(1228F, 5.364372F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // formattingRule1
     //
     this.formattingRule1.Condition              = "[EmpStatus] == 0";
     this.formattingRule1.DataMember             = "EmployeeDetailsReport";
     this.formattingRule1.Formatting.BackColor   = System.Drawing.Color.White;
     this.formattingRule1.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule1.Formatting.BorderWidth = 10F;
     this.formattingRule1.Name = "formattingRule1";
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // PeriodYear
     //
     this.PeriodYear.DataMember = "SP_TerminatedEmp";
     this.PeriodYear.Expression = "Abs(ToInt([ServYear]))";
     this.PeriodYear.Name       = "PeriodYear";
     //
     // PeriodMonth
     //
     this.PeriodMonth.DataMember = "SP_TerminatedEmp";
     this.PeriodMonth.Expression = "(DateDiffMonth([ServStartDate],[ActualDate])%12)";
     this.PeriodMonth.Name       = "PeriodMonth";
     //
     // PeriodDay
     //
     this.PeriodDay.DataMember = "SP_TerminatedEmp";
     this.PeriodDay.Expression = "(DateDiffDay([ServStartDate],[ActualDate])%365)%30";
     this.PeriodDay.FieldType  = DevExpress.XtraReports.UI.FieldType.Int32;
     this.PeriodDay.Name       = "PeriodDay";
     //
     // InUse
     //
     this.InUse.Description = "موقف العهدة بالمخزن - مع الموظف";
     this.InUse.MultiValue  = true;
     this.InUse.Name        = "InUse";
     this.InUse.Type        = typeof(int);
     this.InUse.Visible     = false;
     //
     // categoryIds
     //
     this.categoryIds.Description             = "Custody Category";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_EmployeeCustody";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "CategoryName";
     dynamicListLookUpSettings1.ValueMember   = "CategoryId";
     this.categoryIds.LookUpSettings          = dynamicListLookUpSettings1;
     this.categoryIds.MultiValue = true;
     this.categoryIds.Name       = "categoryIds";
     this.categoryIds.Type       = typeof(int);
     //
     // DeptIds
     //
     this.DeptIds.Description = "Department";
     dynamicListLookUpSettings2.DataAdapter   = null;
     dynamicListLookUpSettings2.DataMember    = "SP_EmployeeCustody";
     dynamicListLookUpSettings2.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings2.DisplayMember = "deptName";
     dynamicListLookUpSettings2.ValueMember   = "deptId";
     this.DeptIds.LookUpSettings = dynamicListLookUpSettings2;
     this.DeptIds.MultiValue     = true;
     this.DeptIds.Name           = "DeptIds";
     this.DeptIds.Type           = typeof(int);
     //
     // EmpIds
     //
     this.EmpIds.Description = "Employee Name";
     dynamicListLookUpSettings3.DataAdapter   = null;
     dynamicListLookUpSettings3.DataMember    = "SP_EmployeeCustody";
     dynamicListLookUpSettings3.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings3.DisplayMember = "EmpName";
     dynamicListLookUpSettings3.ValueMember   = "EmpId";
     this.EmpIds.LookUpSettings = dynamicListLookUpSettings3;
     this.EmpIds.MultiValue     = true;
     this.EmpIds.Name           = "EmpIds";
     this.EmpIds.Type           = typeof(int);
     //
     // from
     //
     this.from.Description = "Receive Date from";
     this.from.Name        = "from";
     this.from.Type        = typeof(System.DateTime);
     this.from.ValueInfo   = "2000-01-01";
     //
     // to
     //
     this.to.Description = "To";
     this.to.Name        = "to";
     this.to.Type        = typeof(System.DateTime);
     this.to.ValueInfo   = "2030-01-01";
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "en-GB";
     this.Culture.Visible     = false;
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // MappingEmpIds
     //
     this.MappingEmpIds.Description = "MappingEmpIds";
     this.MappingEmpIds.Name        = "MappingEmpIds";
     this.MappingEmpIds.Visible     = false;
     //
     // MappingDeptIds
     //
     this.MappingDeptIds.Description = "MappingDeptIds";
     this.MappingDeptIds.Name        = "MappingDeptIds";
     this.MappingDeptIds.Visible     = false;
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "EmployeeCustodiesReport";
     this.ReportName.Visible     = false;
     //
     // MappingInUse
     //
     this.MappingInUse.Description = "MappingInUse";
     this.MappingInUse.Name        = "MappingInUse";
     this.MappingInUse.Visible     = false;
     //
     // MappingCategoryIds
     //
     this.MappingCategoryIds.Description = "MappingCategoryIds";
     this.MappingCategoryIds.Name        = "MappingCategoryIds";
     this.MappingCategoryIds.Visible     = false;
     //
     // Custodystatus
     //
     this.Custodystatus.Description = "DisposalOrNot";
     this.Custodystatus.Name        = "Custodystatus";
     this.Custodystatus.Type        = typeof(int);
     this.Custodystatus.ValueInfo   = "1";
     this.Custodystatus.Visible     = false;
     //
     // en_DisposalEmployeesCustodies
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.PeriodYear,
         this.PeriodMonth,
         this.PeriodDay
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.Dpi          = 254F;
     this.FilterString = "[ReceiveDate] Between(?from, ?to)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(0, 4, 0, 0);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.InUse,
         this.categoryIds,
         this.DeptIds,
         this.EmpIds,
         this.from,
         this.to,
         this.Culture,
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.MappingEmpIds,
         this.MappingDeptIds,
         this.ReportName,
         this.MappingInUse,
         this.MappingCategoryIds,
         this.Custodystatus
     });
     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)).EndInit();
 }
예제 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepAReceberDepositos.resx";
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.lvalorextenso2  = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalorextenso1  = new DevExpress.XtraReports.UI.XRLabel();
     this.lvalor          = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
     this.lnominal        = new DevExpress.XtraReports.UI.XRLabel();
     this.lemissaoextenso = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.BorderWidth = 1F;
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lemissaoextenso,
         this.lnominal,
         this.lvalorextenso2,
         this.lvalorextenso1,
         this.lvalor
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.ForeColor     = System.Drawing.Color.Black;
     this.Detail.HeightF       = 400F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.PageBreak     = DevExpress.XtraReports.UI.PageBreak.AfterBand;
     this.Detail.StylePriority.UseBorderWidth = false;
     this.Detail.StylePriority.UseForeColor   = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // lvalorextenso2
     //
     this.lvalorextenso2.BackColor     = System.Drawing.Color.Transparent;
     this.lvalorextenso2.Font          = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorextenso2.LocationFloat = new DevExpress.Utils.PointFloat(68.00008F, 103.1667F);
     this.lvalorextenso2.Name          = "lvalorextenso2";
     this.lvalorextenso2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso2.SizeF         = new System.Drawing.SizeF(790.0418F, 20F);
     this.lvalorextenso2.StylePriority.UseBackColor = false;
     this.lvalorextenso2.StylePriority.UseFont      = false;
     this.lvalorextenso2.Text = "lvalorextenso2";
     //
     // lvalorextenso1
     //
     this.lvalorextenso1.BackColor     = System.Drawing.Color.Transparent;
     this.lvalorextenso1.Font          = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalorextenso1.LocationFloat = new DevExpress.Utils.PointFloat(220.0834F, 74.16666F);
     this.lvalorextenso1.Name          = "lvalorextenso1";
     this.lvalorextenso1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso1.SizeF         = new System.Drawing.SizeF(773.3752F, 19.99999F);
     this.lvalorextenso1.StylePriority.UseBackColor = false;
     this.lvalorextenso1.StylePriority.UseFont      = false;
     this.lvalorextenso1.Text = "lvalorextenso1";
     //
     // lvalor
     //
     this.lvalor.Font                  = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvalor.LocationFloat         = new DevExpress.Utils.PointFloat(798.6668F, 30.95833F);
     this.lvalor.Name                  = "lvalor";
     this.lvalor.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalor.SizeF                 = new System.Drawing.SizeF(194.7917F, 20F);
     this.lvalor.StylePriority.UseFont = false;
     this.lvalor.Text                  = "lvalor";
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 0F;
     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       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // lnominal
     //
     this.lnominal.BackColor     = System.Drawing.Color.Transparent;
     this.lnominal.Font          = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lnominal.LocationFloat = new DevExpress.Utils.PointFloat(116.9584F, 131.1667F);
     this.lnominal.Name          = "lnominal";
     this.lnominal.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnominal.SizeF         = new System.Drawing.SizeF(876.5002F, 20F);
     this.lnominal.StylePriority.UseBackColor = false;
     this.lnominal.StylePriority.UseFont      = false;
     this.lnominal.Text = "lnominal";
     //
     // lemissaoextenso
     //
     this.lemissaoextenso.BackColor     = System.Drawing.Color.Transparent;
     this.lemissaoextenso.Font          = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lemissaoextenso.LocationFloat = new DevExpress.Utils.PointFloat(552.3749F, 234.375F);
     this.lemissaoextenso.Name          = "lemissaoextenso";
     this.lemissaoextenso.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemissaoextenso.SizeF         = new System.Drawing.SizeF(441.0836F, 20.00002F);
     this.lemissaoextenso.StylePriority.UseBackColor = false;
     this.lemissaoextenso.StylePriority.UseFont      = false;
     this.lemissaoextenso.Text = "lemissaoextenso";
     //
     // RepAReceberDepositos
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 0, 0);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepAReceberDepositos_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #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 = "RepProcesso.resx";
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.linscricao       = new DevExpress.XtraReports.UI.XRLabel();
     this.lparte           = new DevExpress.XtraReports.UI.XRLabel();
     this.lproprietario    = new DevExpress.XtraReports.UI.XRLabel();
     this.ldatavenda       = new DevExpress.XtraReports.UI.XRLabel();
     this.lsituacao        = new DevExpress.XtraReports.UI.XRLabel();
     this.lgrupo           = new DevExpress.XtraReports.UI.XRLabel();
     this.lrg              = new DevExpress.XtraReports.UI.XRLabel();
     this.lcnpj            = new DevExpress.XtraReports.UI.XRLabel();
     this.lunidade         = new DevExpress.XtraReports.UI.XRLabel();
     this.lid              = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ltusuario        = new DevExpress.XtraReports.UI.XRLabel();
     this.ltempresa        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ltitulorelatorio = new DevExpress.XtraReports.UI.XRLabel();
     this.grupocabecalho   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel8         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.grupofiltros     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.lfgrupo          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.lfproduto        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lcaminho         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.linscricao,
         this.lparte,
         this.lproprietario,
         this.ldatavenda,
         this.lsituacao,
         this.lgrupo,
         this.lrg,
         this.lcnpj,
         this.lunidade,
         this.lid
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 13.54167F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // linscricao
     //
     this.linscricao.Font          = new System.Drawing.Font("Calibri", 7F);
     this.linscricao.ForeColor     = System.Drawing.Color.Black;
     this.linscricao.LocationFloat = new DevExpress.Utils.PointFloat(200.0002F, 1.041667F);
     this.linscricao.Name          = "linscricao";
     this.linscricao.NullValueText = " ";
     this.linscricao.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.linscricao.SizeF         = new System.Drawing.SizeF(100F, 9.999999F);
     this.linscricao.StylePriority.UseBackColor = false;
     this.linscricao.StylePriority.UseFont      = false;
     this.linscricao.Text          = "linscricao";
     this.linscricao.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.linscricao.WordWrap      = false;
     //
     // lparte
     //
     this.lparte.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lparte.ForeColor     = System.Drawing.Color.Black;
     this.lparte.LocationFloat = new DevExpress.Utils.PointFloat(150.0002F, 1.041667F);
     this.lparte.Name          = "lparte";
     this.lparte.NullValueText = " ";
     this.lparte.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lparte.SizeF         = new System.Drawing.SizeF(50F, 10F);
     this.lparte.StylePriority.UseBackColor = false;
     this.lparte.StylePriority.UseFont      = false;
     this.lparte.Text          = "lparte";
     this.lparte.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lparte.WordWrap      = false;
     //
     // lproprietario
     //
     this.lproprietario.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lproprietario.ForeColor     = System.Drawing.Color.Black;
     this.lproprietario.LocationFloat = new DevExpress.Utils.PointFloat(402.4488F, 1.041667F);
     this.lproprietario.Name          = "lproprietario";
     this.lproprietario.NullValueText = " ";
     this.lproprietario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lproprietario.SizeF         = new System.Drawing.SizeF(243.5076F, 9.999999F);
     this.lproprietario.StylePriority.UseBackColor = false;
     this.lproprietario.StylePriority.UseFont      = false;
     this.lproprietario.Text          = "lproprietario";
     this.lproprietario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lproprietario.WordWrap      = false;
     //
     // ldatavenda
     //
     this.ldatavenda.Font          = new System.Drawing.Font("Calibri", 7F);
     this.ldatavenda.ForeColor     = System.Drawing.Color.Black;
     this.ldatavenda.LocationFloat = new DevExpress.Utils.PointFloat(300.0002F, 1.041667F);
     this.ldatavenda.Name          = "ldatavenda";
     this.ldatavenda.NullValueText = " ";
     this.ldatavenda.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ldatavenda.SizeF         = new System.Drawing.SizeF(102.4485F, 9.999999F);
     this.ldatavenda.StylePriority.UseBackColor = false;
     this.ldatavenda.StylePriority.UseFont      = false;
     this.ldatavenda.Text          = "ldatavenda";
     this.ldatavenda.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.ldatavenda.WordWrap      = false;
     //
     // lsituacao
     //
     this.lsituacao.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lsituacao.ForeColor     = System.Drawing.Color.Black;
     this.lsituacao.LocationFloat = new DevExpress.Utils.PointFloat(845.8036F, 1.041667F);
     this.lsituacao.Name          = "lsituacao";
     this.lsituacao.NullValueText = " ";
     this.lsituacao.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lsituacao.SizeF         = new System.Drawing.SizeF(203.1964F, 10F);
     this.lsituacao.StylePriority.UseBackColor = false;
     this.lsituacao.StylePriority.UseFont      = false;
     this.lsituacao.Text          = "lsituacao";
     this.lsituacao.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lsituacao.WordWrap      = false;
     //
     // lgrupo
     //
     this.lgrupo.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lgrupo.ForeColor     = System.Drawing.Color.Black;
     this.lgrupo.LocationFloat = new DevExpress.Utils.PointFloat(50.00016F, 1.041667F);
     this.lgrupo.Name          = "lgrupo";
     this.lgrupo.NullValueText = " ";
     this.lgrupo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lgrupo.SizeF         = new System.Drawing.SizeF(50.00002F, 10F);
     this.lgrupo.StylePriority.UseBackColor = false;
     this.lgrupo.StylePriority.UseFont      = false;
     this.lgrupo.Text          = "lgrupo";
     this.lgrupo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lgrupo.WordWrap      = false;
     //
     // lrg
     //
     this.lrg.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lrg.ForeColor     = System.Drawing.Color.Black;
     this.lrg.LocationFloat = new DevExpress.Utils.PointFloat(745.8798F, 1.041667F);
     this.lrg.Name          = "lrg";
     this.lrg.NullValueText = " ";
     this.lrg.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lrg.SizeF         = new System.Drawing.SizeF(99.92377F, 9.999999F);
     this.lrg.StylePriority.UseBackColor = false;
     this.lrg.StylePriority.UseFont      = false;
     this.lrg.Text          = "lrg";
     this.lrg.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lrg.WordWrap      = false;
     //
     // lcnpj
     //
     this.lcnpj.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lcnpj.ForeColor     = System.Drawing.Color.Black;
     this.lcnpj.LocationFloat = new DevExpress.Utils.PointFloat(645.9562F, 1.041667F);
     this.lcnpj.Name          = "lcnpj";
     this.lcnpj.NullValueText = " ";
     this.lcnpj.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcnpj.SizeF         = new System.Drawing.SizeF(99.92365F, 9.999999F);
     this.lcnpj.StylePriority.UseBackColor = false;
     this.lcnpj.StylePriority.UseFont      = false;
     this.lcnpj.Text          = "lcnpj";
     this.lcnpj.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lcnpj.WordWrap      = false;
     //
     // lunidade
     //
     this.lunidade.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lunidade.ForeColor     = System.Drawing.Color.Black;
     this.lunidade.LocationFloat = new DevExpress.Utils.PointFloat(100.0002F, 1.041667F);
     this.lunidade.Name          = "lunidade";
     this.lunidade.NullValueText = " ";
     this.lunidade.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lunidade.SizeF         = new System.Drawing.SizeF(50F, 10F);
     this.lunidade.StylePriority.UseBackColor = false;
     this.lunidade.StylePriority.UseFont      = false;
     this.lunidade.Text          = "lunidade";
     this.lunidade.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lunidade.WordWrap      = false;
     //
     // lid
     //
     this.lid.Font          = new System.Drawing.Font("Calibri", 6.5F);
     this.lid.ForeColor     = System.Drawing.Color.Black;
     this.lid.LocationFloat = new DevExpress.Utils.PointFloat(0.0001509984F, 1.041667F);
     this.lid.Name          = "lid";
     this.lid.NullValueText = " ";
     this.lid.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lid.SizeF         = new System.Drawing.SizeF(50.00001F, 10F);
     this.lid.StylePriority.UseBackColor = false;
     this.lid.StylePriority.UseFont      = false;
     this.lid.Text          = "lid";
     this.lid.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lid.WordWrap      = false;
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 48.81465F;
     this.TopMargin.Name      = "TopMargin";
     this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltusuario
     //
     this.ltusuario.BackColor     = System.Drawing.Color.White;
     this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
     this.ltusuario.StylePriority.UseBackColor     = false;
     this.ltusuario.StylePriority.UseFont          = false;
     this.ltusuario.StylePriority.UseTextAlignment = false;
     this.ltusuario.Text          = "ltusuario";
     this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltempresa
     //
     this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
     this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
     this.ltempresa.StylePriority.UseBackColor     = false;
     this.ltempresa.StylePriority.UseBorders       = false;
     this.ltempresa.StylePriority.UseFont          = false;
     this.ltempresa.StylePriority.UseForeColor     = false;
     this.ltempresa.StylePriority.UseTextAlignment = false;
     this.ltempresa.Text          = "ltempresa";
     this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
     this.xrPageInfo2.BorderWidth   = 0F;
     this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
     this.xrPageInfo2.StylePriority.UseBackColor     = false;
     this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 24.16428F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.BackColor = System.Drawing.Color.LightGray;
     this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrPageInfo3,
         this.ltitulorelatorio,
         this.xrPageInfo2,
         this.ltempresa,
         this.ltusuario
     });
     this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
     this.PageHeader.HeightF = 76.04166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor = false;
     this.PageHeader.StylePriority.UseBorders   = false;
     this.PageHeader.StylePriority.UseFont      = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
     this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPictureBox1.BorderWidth     = 0F;
     this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
     this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
     this.xrPictureBox1.Name            = "xrPictureBox1";
     this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
     this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorderColor     = false;
     this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
     this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
     this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrPageInfo3.Format        = "Pág: {0}/{1}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
     this.xrPageInfo3.StylePriority.UseBackColor     = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltitulorelatorio
     //
     this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
     this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
     this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
     this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
     this.ltitulorelatorio.StylePriority.UseBackColor     = false;
     this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
     this.ltitulorelatorio.StylePriority.UseBorders       = false;
     this.ltitulorelatorio.StylePriority.UseFont          = false;
     this.ltitulorelatorio.StylePriority.UseForeColor     = false;
     this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
     this.ltitulorelatorio.Text          = "RELATÓRIO VENDAS EM PROCESSO JUDICIAL";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // grupocabecalho
     //
     this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel17,
         this.xrLabel15,
         this.xrLabel3,
         this.xrLabel18,
         this.xrLabel26,
         this.xrLabel19
     });
     this.grupocabecalho.HeightF         = 15.08331F;
     this.grupocabecalho.Name            = "grupocabecalho";
     this.grupocabecalho.RepeatEveryPage = true;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel8.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel8.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel8.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(200.0002F, 0F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(100F, 13F);
     this.xrLabel8.StylePriority.UseBackColor     = false;
     this.xrLabel8.StylePriority.UseBorderColor   = false;
     this.xrLabel8.StylePriority.UseBorders       = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseForeColor     = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Inscr.Imobiliária";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel7.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel7.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel7.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(150.0002F, 0F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(50F, 13F);
     this.xrLabel7.StylePriority.UseBackColor     = false;
     this.xrLabel7.StylePriority.UseBorderColor   = false;
     this.xrLabel7.StylePriority.UseBorders       = false;
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseForeColor     = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "Parte";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel6.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel6.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel6.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(645.9561F, 0F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(99.92383F, 13F);
     this.xrLabel6.StylePriority.UseBackColor     = false;
     this.xrLabel6.StylePriority.UseBorderColor   = false;
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseForeColor     = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "CNPJ/CPF";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel5.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel5.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(402.4486F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(243.5076F, 13F);
     this.xrLabel5.StylePriority.UseBackColor     = false;
     this.xrLabel5.StylePriority.UseBorderColor   = false;
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "Proprietário";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel17.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel17.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel17.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(845.8036F, 0F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(203.1965F, 13F);
     this.xrLabel17.StylePriority.UseBackColor     = false;
     this.xrLabel17.StylePriority.UseBorderColor   = false;
     this.xrLabel17.StylePriority.UseBorders       = false;
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseForeColor     = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text          = "Escritura";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel15.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel15.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel15.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel15.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(300.0002F, 0F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(102.4485F, 13F);
     this.xrLabel15.StylePriority.UseBackColor     = false;
     this.xrLabel15.StylePriority.UseBorderColor   = false;
     this.xrLabel15.StylePriority.UseBorders       = false;
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseForeColor     = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text          = "Data Venda";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel3.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel3.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(745.8798F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(99.92383F, 13F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseBorderColor   = false;
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseForeColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "RG";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel18.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel18.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001589457F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(50F, 13F);
     this.xrLabel18.StylePriority.UseBackColor     = false;
     this.xrLabel18.StylePriority.UseBorderColor   = false;
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseForeColor     = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "ID";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel26.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel26.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel26.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel26.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(100.0002F, 0F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(50F, 13F);
     this.xrLabel26.StylePriority.UseBackColor     = false;
     this.xrLabel26.StylePriority.UseBorderColor   = false;
     this.xrLabel26.StylePriority.UseBorders       = false;
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseForeColor     = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text          = "Unidade";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel19.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel19.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel19.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(50.00016F, 0F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(50F, 13F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseBorderColor   = false;
     this.xrLabel19.StylePriority.UseBorders       = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseForeColor     = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Blc\\Qdr";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // grupofiltros
     //
     this.grupofiltros.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lfgrupo,
         this.xrLabel1,
         this.lfproduto,
         this.xrLabel4
     });
     this.grupofiltros.HeightF = 29.16667F;
     this.grupofiltros.Level   = 1;
     this.grupofiltros.Name    = "grupofiltros";
     //
     // lfgrupo
     //
     this.lfgrupo.LocationFloat = new DevExpress.Utils.PointFloat(661.7499F, 5.000019F);
     this.lfgrupo.Name          = "lfgrupo";
     this.lfgrupo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lfgrupo.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lfgrupo.StylePriority.UseTextAlignment = false;
     this.lfgrupo.Text          = "lfgrupo";
     this.lfgrupo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(584.5199F, 5.000051F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Grupo:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lfproduto
     //
     this.lfproduto.LocationFloat = new DevExpress.Utils.PointFloat(82.23017F, 5.000007F);
     this.lfproduto.Name          = "lfproduto";
     this.lfproduto.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lfproduto.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lfproduto.StylePriority.UseTextAlignment = false;
     this.lfproduto.Text          = "lfproduto";
     this.lfproduto.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999998F, 5.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Produto:";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcaminho
     });
     this.PageFooter.HeightF = 22.91667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // lcaminho
     //
     this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 4F);
     this.lcaminho.Name                  = "lcaminho";
     this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcaminho.SizeF                 = new System.Drawing.SizeF(322.9165F, 14F);
     this.lcaminho.StylePriority.UseFont = false;
     this.lcaminho.Text                  = "Gitano ->SGFin ->Empresa ->Relatório Vendas em Processo Judicial";
     //
     // RepProcesso
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.grupocabecalho,
         this.grupofiltros,
         this.PageFooter
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepProcesso_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #22
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_EmployeeHaveChildrenReceiveMidAutumnGift.resx";

            this.Detail                      = new DevExpress.XtraReports.UI.DetailBand();
            this.tblDetail                   = new DevExpress.XtraReports.UI.XRTable();
            this.xrDetailRow1                = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCellSoThuTu          = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellEmployeeCode     = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellFullName         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellBirthDate        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellSex              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellPosition         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellNumberOfChildren = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellGiftLevel        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTypeOfContract   = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellKyNhan           = 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.xrTenCoQuanCapTren          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4                    = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTenCoQuanDonVi            = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6                    = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel7                    = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel9                    = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader                  = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.tblPageHeader               = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow11                = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell241              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell11               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell242              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell22               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell13               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10               = new DevExpress.XtraReports.UI.XRTableCell();
            this.formattingRule1             = new DevExpress.XtraReports.UI.FormattingRule();
            this.ReportFooter                = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.lblReportDate               = new DevExpress.XtraReports.UI.XRLabel();
            this.lblPhongHCNS                = new DevExpress.XtraReports.UI.XRLabel();
            this.lblGiamDoc                  = new DevExpress.XtraReports.UI.XRLabel();
            this.GroupHeader1                = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrTable2                    = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell27               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellGroupHead        = new DevExpress.XtraReports.UI.XRTableCell();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblDetail
            });
            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;
            //
            // tblDetail
            //
            this.tblDetail.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblDetail.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblDetail.Name          = "tblDetail";
            this.tblDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrDetailRow1
            });
            this.tblDetail.SizeF = new System.Drawing.SizeF(1012.917F, 25F);
            this.tblDetail.StylePriority.UseBorders = false;
            //
            // xrDetailRow1
            //
            this.xrDetailRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCellSoThuTu,
                this.xrTableCellEmployeeCode,
                this.xrTableCellFullName,
                this.xrTableCellBirthDate,
                this.xrTableCellSex,
                this.xrTableCellPosition,
                this.xrTableCellNumberOfChildren,
                this.xrTableCellGiftLevel,
                this.xrTableCellTypeOfContract,
                this.xrTableCellKyNhan
            });
            this.xrDetailRow1.Name   = "xrDetailRow1";
            this.xrDetailRow1.Weight = 1D;
            //
            // xrTableCellSoThuTu
            //
            this.xrTableCellSoThuTu.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellSoThuTu.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellSoThuTu.Name    = "xrTableCellSoThuTu";
            this.xrTableCellSoThuTu.StylePriority.UseBorders       = false;
            this.xrTableCellSoThuTu.StylePriority.UseFont          = false;
            this.xrTableCellSoThuTu.StylePriority.UseTextAlignment = false;
            this.xrTableCellSoThuTu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellSoThuTu.Weight        = 0.15313684800805708D;
            this.xrTableCellSoThuTu.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrTableCellEmployeeCode
            //
            this.xrTableCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellEmployeeCode.Name    = "xrTableCellEmployeeCode";
            this.xrTableCellEmployeeCode.StylePriority.UseBorders       = false;
            this.xrTableCellEmployeeCode.StylePriority.UseFont          = false;
            this.xrTableCellEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrTableCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellEmployeeCode.Weight        = 0.27830080192818524D;
            //
            // xrTableCellFullName
            //
            this.xrTableCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellFullName.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellFullName.Name    = "xrTableCellFullName";
            this.xrTableCellFullName.StylePriority.UseBorders       = false;
            this.xrTableCellFullName.StylePriority.UseFont          = false;
            this.xrTableCellFullName.StylePriority.UseTextAlignment = false;
            this.xrTableCellFullName.Text          = " ";
            this.xrTableCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCellFullName.Weight        = 0.50296508712017785D;
            //
            // xrTableCellBirthDate
            //
            this.xrTableCellBirthDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellBirthDate.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellBirthDate.Name    = "xrTableCellBirthDate";
            this.xrTableCellBirthDate.StylePriority.UseBorders       = false;
            this.xrTableCellBirthDate.StylePriority.UseFont          = false;
            this.xrTableCellBirthDate.StylePriority.UseTextAlignment = false;
            this.xrTableCellBirthDate.Text          = " ";
            this.xrTableCellBirthDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellBirthDate.Weight        = 0.31373958120095835D;
            //
            // xrTableCellSex
            //
            this.xrTableCellSex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellSex.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellSex.Name    = "xrTableCellSex";
            this.xrTableCellSex.StylePriority.UseBorders       = false;
            this.xrTableCellSex.StylePriority.UseFont          = false;
            this.xrTableCellSex.StylePriority.UseTextAlignment = false;
            this.xrTableCellSex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellSex.Weight        = 0.21308193817340868D;
            //
            // xrTableCellPosition
            //
            this.xrTableCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellPosition.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellPosition.Name    = "xrTableCellPosition";
            this.xrTableCellPosition.StylePriority.UseBorders       = false;
            this.xrTableCellPosition.StylePriority.UseFont          = false;
            this.xrTableCellPosition.StylePriority.UseTextAlignment = false;
            this.xrTableCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellPosition.Weight        = 0.45995949239684558D;
            //
            // xrTableCellNumberOfChildren
            //
            this.xrTableCellNumberOfChildren.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellNumberOfChildren.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellNumberOfChildren.Name    = "xrTableCellNumberOfChildren";
            this.xrTableCellNumberOfChildren.StylePriority.UseBorders       = false;
            this.xrTableCellNumberOfChildren.StylePriority.UseFont          = false;
            this.xrTableCellNumberOfChildren.StylePriority.UseTextAlignment = false;
            this.xrTableCellNumberOfChildren.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellNumberOfChildren.Weight        = 0.31567734930473917D;
            //
            // xrTableCellGiftLevel
            //
            this.xrTableCellGiftLevel.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellGiftLevel.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellGiftLevel.Name    = "xrTableCellGiftLevel";
            this.xrTableCellGiftLevel.StylePriority.UseBorders       = false;
            this.xrTableCellGiftLevel.StylePriority.UseFont          = false;
            this.xrTableCellGiftLevel.StylePriority.UseTextAlignment = false;
            this.xrTableCellGiftLevel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellGiftLevel.Weight        = 0.34724469546519121D;
            //
            // xrTableCellTypeOfContract
            //
            this.xrTableCellTypeOfContract.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTypeOfContract.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellTypeOfContract.Name    = "xrTableCellTypeOfContract";
            this.xrTableCellTypeOfContract.StylePriority.UseBorders       = false;
            this.xrTableCellTypeOfContract.StylePriority.UseFont          = false;
            this.xrTableCellTypeOfContract.StylePriority.UseTextAlignment = false;
            this.xrTableCellTypeOfContract.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTypeOfContract.Weight        = 0.834671806363016D;
            //
            // xrTableCellKyNhan
            //
            this.xrTableCellKyNhan.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellKyNhan.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellKyNhan.Name = "xrTableCellKyNhan";
            this.xrTableCellKyNhan.StylePriority.UseBorders       = false;
            this.xrTableCellKyNhan.StylePriority.UseFont          = false;
            this.xrTableCellKyNhan.StylePriority.UseTextAlignment = false;
            this.xrTableCellKyNhan.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellKyNhan.Weight        = 0.41827184501877512D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 15F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 0F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTenCoQuanCapTren,
                this.xrLabel4,
                this.xrTenCoQuanDonVi,
                this.xrLabel6,
                this.xrLabel7,
                this.xrLabel9
            });
            this.ReportHeader.HeightF = 106F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrTenCoQuanCapTren
            //
            this.xrTenCoQuanCapTren.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrTenCoQuanCapTren.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTenCoQuanCapTren.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTenCoQuanCapTren.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTenCoQuanCapTren.Name          = "xrTenCoQuanCapTren";
            this.xrTenCoQuanCapTren.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrTenCoQuanCapTren.SizeF         = new System.Drawing.SizeF(400.322F, 24F);
            this.xrTenCoQuanCapTren.StylePriority.UseBorderColor   = false;
            this.xrTenCoQuanCapTren.StylePriority.UseBorders       = false;
            this.xrTenCoQuanCapTren.StylePriority.UseFont          = false;
            this.xrTenCoQuanCapTren.StylePriority.UseTextAlignment = false;
            this.xrTenCoQuanCapTren.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel4
            //
            this.xrLabel4.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrLabel4.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(400.322F, 0F);
            this.xrLabel4.Name          = "xrLabel4";
            this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF         = new System.Drawing.SizeF(739.678F, 24F);
            this.xrLabel4.StylePriority.UseBorderColor   = false;
            this.xrLabel4.StylePriority.UseBorders       = false;
            this.xrLabel4.StylePriority.UseFont          = false;
            this.xrLabel4.StylePriority.UseTextAlignment = false;
            this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTenCoQuanDonVi
            //
            this.xrTenCoQuanDonVi.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrTenCoQuanDonVi.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTenCoQuanDonVi.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTenCoQuanDonVi.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTenCoQuanDonVi.Name          = "xrTenCoQuanDonVi";
            this.xrTenCoQuanDonVi.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrTenCoQuanDonVi.SizeF         = new System.Drawing.SizeF(400.322F, 24F);
            this.xrTenCoQuanDonVi.StylePriority.UseBorderColor   = false;
            this.xrTenCoQuanDonVi.StylePriority.UseBorders       = false;
            this.xrTenCoQuanDonVi.StylePriority.UseFont          = false;
            this.xrTenCoQuanDonVi.StylePriority.UseTextAlignment = false;
            this.xrTenCoQuanDonVi.Text          = "TÊN CƠ QUAN ĐƠN VỊ";
            this.xrTenCoQuanDonVi.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel6
            //
            this.xrLabel6.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrLabel6.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel6.Font          = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(400.322F, 24.00001F);
            this.xrLabel6.Name          = "xrLabel6";
            this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF         = new System.Drawing.SizeF(739.678F, 24F);
            this.xrLabel6.StylePriority.UseBorderColor   = false;
            this.xrLabel6.StylePriority.UseBorders       = false;
            this.xrLabel6.StylePriority.UseFont          = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel7
            //
            this.xrLabel7.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrLabel7.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel7.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 48F);
            this.xrLabel7.Name          = "xrLabel7";
            this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF         = new System.Drawing.SizeF(1012.917F, 24F);
            this.xrLabel7.StylePriority.UseBorderColor   = false;
            this.xrLabel7.StylePriority.UseBorders       = false;
            this.xrLabel7.StylePriority.UseFont          = false;
            this.xrLabel7.StylePriority.UsePadding       = false;
            this.xrLabel7.StylePriority.UseTextAlignment = false;
            this.xrLabel7.Text          = "                   DANH SÁCH CÁN BỘ CÓ CON EM NHẬN QUÀ TRUNG THU";
            this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel9
            //
            this.xrLabel9.BorderColor   = System.Drawing.Color.DarkGray;
            this.xrLabel9.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel9.Font          = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 96F);
            this.xrLabel9.Name          = "xrLabel9";
            this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF         = new System.Drawing.SizeF(1140F, 10F);
            this.xrLabel9.StylePriority.UseBorderColor   = false;
            this.xrLabel9.StylePriority.UseBorders       = false;
            this.xrLabel9.StylePriority.UseFont          = false;
            this.xrLabel9.StylePriority.UseTextAlignment = false;
            this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblPageHeader
            });
            this.PageHeader.HeightF = 40.41314F;
            this.PageHeader.Name    = "PageHeader";
            //
            // tblPageHeader
            //
            this.tblPageHeader.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblPageHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblPageHeader.Name          = "tblPageHeader";
            this.tblPageHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow11
            });
            this.tblPageHeader.SizeF = new System.Drawing.SizeF(1012.917F, 40F);
            this.tblPageHeader.StylePriority.UseBorders = false;
            //
            // xrTableRow11
            //
            this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell241,
                this.xrTableCell11,
                this.xrTableCell242,
                this.xrTableCell1,
                this.xrTableCell12,
                this.xrTableCell22,
                this.xrTableCell15,
                this.xrTableCell13,
                this.xrTableCell2,
                this.xrTableCell10
            });
            this.xrTableRow11.Name   = "xrTableRow11";
            this.xrTableRow11.Weight = 9.2D;
            //
            // xrTableCell241
            //
            this.xrTableCell241.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell241.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell241.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell241.Name = "xrTableCell241";
            this.xrTableCell241.StylePriority.UseBorderColor = false;
            this.xrTableCell241.StylePriority.UseBorders     = false;
            this.xrTableCell241.StylePriority.UseFont        = false;
            this.xrTableCell241.Text   = "Stt";
            this.xrTableCell241.Weight = 0.22223739120910233D;
            //
            // xrTableCell11
            //
            this.xrTableCell11.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell11.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.StylePriority.UseBorderColor = false;
            this.xrTableCell11.StylePriority.UseBorders     = false;
            this.xrTableCell11.StylePriority.UseFont        = false;
            this.xrTableCell11.Text   = "Mã nhân viên";
            this.xrTableCell11.Weight = 0.40387967827481608D;
            //
            // xrTableCell242
            //
            this.xrTableCell242.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell242.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell242.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell242.Name = "xrTableCell242";
            this.xrTableCell242.StylePriority.UseBorderColor = false;
            this.xrTableCell242.StylePriority.UseBorders     = false;
            this.xrTableCell242.StylePriority.UseFont        = false;
            this.xrTableCell242.Text   = "Họ và tên";
            this.xrTableCell242.Weight = 0.729920121528115D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell1.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderColor = false;
            this.xrTableCell1.StylePriority.UseBorders     = false;
            this.xrTableCell1.StylePriority.UseFont        = false;
            this.xrTableCell1.Text   = "Ngày sinh";
            this.xrTableCell1.Weight = 0.45530958613421579D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell12.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.StylePriority.UseBorderColor = false;
            this.xrTableCell12.StylePriority.UseBorders     = false;
            this.xrTableCell12.StylePriority.UseFont        = false;
            this.xrTableCell12.Text   = "Giới tính";
            this.xrTableCell12.Weight = 0.30923179867784256D;
            //
            // xrTableCell22
            //
            this.xrTableCell22.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell22.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell22.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell22.Name = "xrTableCell22";
            this.xrTableCell22.StylePriority.UseBorderColor = false;
            this.xrTableCell22.StylePriority.UseBorders     = false;
            this.xrTableCell22.StylePriority.UseFont        = false;
            this.xrTableCell22.Text   = "Chức vụ";
            this.xrTableCell22.Weight = 0.66750877686143284D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell15.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell15.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell15.Multiline = true;
            this.xrTableCell15.Name      = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseBorderColor = false;
            this.xrTableCell15.StylePriority.UseBorders     = false;
            this.xrTableCell15.StylePriority.UseFont        = false;
            this.xrTableCell15.Text   = "Số người con\r\n";
            this.xrTableCell15.Weight = 0.4581220176916454D;
            //
            // xrTableCell13
            //
            this.xrTableCell13.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell13.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell13.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell13.Name = "xrTableCell13";
            this.xrTableCell13.StylePriority.UseBorderColor = false;
            this.xrTableCell13.StylePriority.UseBorders     = false;
            this.xrTableCell13.StylePriority.UseFont        = false;
            this.xrTableCell13.Text   = "Mức quà";
            this.xrTableCell13.Weight = 0.5039332051797033D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell2.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseBorderColor = false;
            this.xrTableCell2.StylePriority.UseBorders     = false;
            this.xrTableCell2.StylePriority.UseFont        = false;
            this.xrTableCell2.Text   = "Loại HĐLĐ";
            this.xrTableCell2.Weight = 1.2113044861219648D;
            //
            // xrTableCell10
            //
            this.xrTableCell10.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell10.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseBorderColor = false;
            this.xrTableCell10.StylePriority.UseBorders     = false;
            this.xrTableCell10.StylePriority.UseFont        = false;
            this.xrTableCell10.Text   = "Ký nhận";
            this.xrTableCell10.Weight = 0.60700980264723015D;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.lblReportDate,
                this.lblPhongHCNS,
                this.lblGiamDoc
            });
            this.ReportFooter.HeightF = 252.1667F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(539.098F, 31.87501F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(300F, 15F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblPhongHCNS
            //
            this.lblPhongHCNS.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.lblPhongHCNS.LocationFloat                  = new DevExpress.Utils.PointFloat(66.66665F, 46.875F);
            this.lblPhongHCNS.Name                           = "lblPhongHCNS";
            this.lblPhongHCNS.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblPhongHCNS.SizeF                          = new System.Drawing.SizeF(180F, 25F);
            this.lblPhongHCNS.StylePriority.UseFont          = false;
            this.lblPhongHCNS.StylePriority.UseTextAlignment = false;
            this.lblPhongHCNS.Text                           = "PHÒNG HCNS";
            this.lblPhongHCNS.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblGiamDoc
            //
            this.lblGiamDoc.Font                           = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.lblGiamDoc.LocationFloat                  = new DevExpress.Utils.PointFloat(539.098F, 46.875F);
            this.lblGiamDoc.Name                           = "lblGiamDoc";
            this.lblGiamDoc.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblGiamDoc.SizeF                          = new System.Drawing.SizeF(300F, 25F);
            this.lblGiamDoc.StylePriority.UseFont          = false;
            this.lblGiamDoc.StylePriority.UseTextAlignment = false;
            this.lblGiamDoc.Text                           = "GIÁM ĐỐC";
            this.lblGiamDoc.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // GroupHeader1
            //
            this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2
            });
            this.GroupHeader1.HeightF = 28.95831F;
            this.GroupHeader1.Name    = "GroupHeader1";
            //
            // 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", 9F, System.Drawing.FontStyle.Bold);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1012.917F, 28.95831F);
            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.xrTableCell27,
                this.xrTableCellGroupHead
            });
            this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow2.Name    = "xrTableRow2";
            this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
            this.xrTableRow2.StylePriority.UseFont          = false;
            this.xrTableRow2.StylePriority.UsePadding       = false;
            this.xrTableRow2.StylePriority.UseTextAlignment = false;
            this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow2.Weight        = 1D;
            //
            // xrTableCell27
            //
            this.xrTableCell27.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell27.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCell27.Name    = "xrTableCell27";
            this.xrTableCell27.StylePriority.UseBorders       = false;
            this.xrTableCell27.StylePriority.UseFont          = false;
            this.xrTableCell27.StylePriority.UseTextAlignment = false;
            this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell27.Weight        = 0.40851067708270339D;
            //
            // xrTableCellGroupHead
            //
            this.xrTableCellGroupHead.Font    = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.xrTableCellGroupHead.Name    = "xrTableCellGroupHead";
            this.xrTableCellGroupHead.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCellGroupHead.StylePriority.UseFont          = false;
            this.xrTableCellGroupHead.StylePriority.UsePadding       = false;
            this.xrTableCellGroupHead.StylePriority.UseTextAlignment = false;
            this.xrTableCellGroupHead.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCellGroupHead.Weight        = 9.827273887492515D;
            this.xrTableCellGroupHead.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
            //
            // rp_EmployeeHaveChildrenReceiveMidAutumnGift
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter,
                this.GroupHeader1
            });
            this.BorderColor = System.Drawing.Color.DarkGray;
            this.Font        = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
                this.formattingRule1
            });
            this.Landscape     = true;
            this.Margins       = new System.Drawing.Printing.Margins(12, 12, 15, 0);
            this.PageHeight    = 827;
            this.PageWidth     = 1169;
            this.PaperKind     = System.Drawing.Printing.PaperKind.A4;
            this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.Version       = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
예제 #23
0
파일: rp_SalaryATM.cs 프로젝트: war-man/HRM
        /// <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_SalaryATM.resx";

            this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
            this.tblDetail                = new DevExpress.XtraReports.UI.XRTable();
            this.xrDetailRow1             = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCellOrder         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellNumber        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellAccountNumber = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellIdNumber      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellAmount        = 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.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
            this.tblReportHeader          = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow19             = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrCellTenBieuMau         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell601           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell602           = new DevExpress.XtraReports.UI.XRTableCell();
            this.PageHeader               = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.tblPageHeader            = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow11             = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell241           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell242           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
            this.formattingRule1          = new DevExpress.XtraReports.UI.FormattingRule();
            this.ReportFooter             = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.lblReportDate            = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTextTongSo             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotalAmount   = new DevExpress.XtraReports.UI.XRTableCell();
            this.lblThuTruong             = new DevExpress.XtraReports.UI.XRLabel();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblDetail
            });
            this.Detail.HeightF = 25F;
            this.Detail.Name    = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StylePriority.UseBorders = false;
            this.Detail.TextAlignment            = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // tblDetail
            //
            this.tblDetail.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblDetail.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblDetail.Name          = "tblDetail";
            this.tblDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrDetailRow1
            });
            this.tblDetail.SizeF = new System.Drawing.SizeF(803F, 25F);
            this.tblDetail.StylePriority.UseBorders = false;
            //
            // xrDetailRow1
            //
            this.xrDetailRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCellOrder,
                this.xrTableCellNumber,
                this.xrTableCellFullName,
                this.xrTableCellAccountNumber,
                this.xrTableCellIdNumber,
                this.xrTableCellAmount
            });
            this.xrDetailRow1.Name   = "xrDetailRow1";
            this.xrDetailRow1.Weight = 1D;
            //
            // xrTableCellOrder
            //
            this.xrTableCellOrder.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellOrder.Name    = "xrTableCellOrder";
            this.xrTableCellOrder.StylePriority.UseBorders       = false;
            this.xrTableCellOrder.StylePriority.UseFont          = false;
            this.xrTableCellOrder.StylePriority.UseTextAlignment = false;
            this.xrTableCellOrder.Text          = " ";
            this.xrTableCellOrder.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellOrder.Weight        = 0.1420990595658482D;
            //
            // xrTableCellNumber
            //
            this.xrTableCellNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellNumber.Name    = "xrTableCellNumber";
            this.xrTableCellNumber.StylePriority.UseBorders       = false;
            this.xrTableCellNumber.StylePriority.UseTextAlignment = false;
            this.xrTableCellNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellNumber.Weight        = 0.44723178028066729D;
            //
            // xrTableCellFullName
            //
            this.xrTableCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellFullName.Name    = "xrTableCellFullName";
            this.xrTableCellFullName.StylePriority.UseBorders       = false;
            this.xrTableCellFullName.StylePriority.UseTextAlignment = false;
            this.xrTableCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellFullName.Weight        = 0.48692802641236188D;
            //
            // xrTableCellAccountNumber
            //
            this.xrTableCellAccountNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellAccountNumber.Name    = "xrTableCellAccountNumber";
            this.xrTableCellAccountNumber.StylePriority.UseBorders       = false;
            this.xrTableCellAccountNumber.StylePriority.UseTextAlignment = false;
            this.xrTableCellAccountNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellAccountNumber.Weight        = 0.588242171958293D;
            //
            // xrTableCellIdNumber
            //
            this.xrTableCellIdNumber.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellIdNumber.Name    = "xrTableCellIdNumber";
            this.xrTableCellIdNumber.StylePriority.UseBorders       = false;
            this.xrTableCellIdNumber.StylePriority.UseTextAlignment = false;
            this.xrTableCellIdNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellIdNumber.Weight        = 0.5466965638492D;
            //
            // xrTableCellAmount
            //
            this.xrTableCellAmount.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellAmount.Name = "xrTableCellAmount";
            this.xrTableCellAmount.StylePriority.UseBorders       = false;
            this.xrTableCellAmount.StylePriority.UseTextAlignment = false;
            this.xrTableCellAmount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellAmount.Weight        = 0.6414423978653595D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 15F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 0F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2,
                this.tblReportHeader
            });
            this.ReportHeader.HeightF = 86F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrTable2
            //
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 42.00001F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2,
                this.xrTableRow3
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell12
            });
            this.xrTableRow2.Name   = "xrTableRow2";
            this.xrTableRow2.Weight = 0.79999990231146945D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.StylePriority.UseFont = false;
            this.xrTableCell12.Text   = "DANH SÁCH CHI  LƯƠNG THÁNG 9 / 2017";
            this.xrTableCell12.Weight = 3.9966622210905545D;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell13,
                this.xrTableCell14
            });
            this.xrTableRow3.Name   = "xrTableRow3";
            this.xrTableRow3.Weight = 0.33333324536656561D;
            //
            // xrTableCell13
            //
            this.xrTableCell13.Name    = "xrTableCell13";
            this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell13.StylePriority.UsePadding = false;
            this.xrTableCell13.Weight = 1.5748560433256003D;
            //
            // xrTableCell14
            //
            this.xrTableCell14.Name   = "xrTableCell14";
            this.xrTableCell14.Weight = 2.4218061963804294D;
            //
            // tblReportHeader
            //
            this.tblReportHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblReportHeader.Name          = "tblReportHeader";
            this.tblReportHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow19,
                this.xrTableRow4
            });
            this.tblReportHeader.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow19
            //
            this.xrTableRow19.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrCellTenBieuMau
            });
            this.xrTableRow19.Name   = "xrTableRow19";
            this.xrTableRow19.Weight = 0.79999990231146945D;
            //
            // xrCellTenBieuMau
            //
            this.xrCellTenBieuMau.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrCellTenBieuMau.Name = "xrCellTenBieuMau";
            this.xrCellTenBieuMau.StylePriority.UseFont          = false;
            this.xrCellTenBieuMau.StylePriority.UseTextAlignment = false;
            this.xrCellTenBieuMau.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrCellTenBieuMau.Weight        = 3.9966622210905545D;
            //
            // xrTableRow4
            //
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell601,
                this.xrTableCell602
            });
            this.xrTableRow4.Name   = "xrTableRow4";
            this.xrTableRow4.Weight = 0.33333324536656561D;
            //
            // xrTableCell601
            //
            this.xrTableCell601.Name    = "xrTableCell601";
            this.xrTableCell601.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell601.StylePriority.UsePadding = false;
            this.xrTableCell601.Weight = 1.5748560433256003D;
            //
            // xrTableCell602
            //
            this.xrTableCell602.Name = "xrTableCell602";
            this.xrTableCell602.StylePriority.UseTextAlignment = false;
            this.xrTableCell602.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            this.xrTableCell602.Weight        = 2.4218061963804294D;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblPageHeader
            });
            this.PageHeader.HeightF = 100F;
            this.PageHeader.Name    = "PageHeader";
            //
            // tblPageHeader
            //
            this.tblPageHeader.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblPageHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblPageHeader.Name          = "tblPageHeader";
            this.tblPageHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow11
            });
            this.tblPageHeader.SizeF = new System.Drawing.SizeF(803.0001F, 100F);
            this.tblPageHeader.StylePriority.UseBorders = false;
            //
            // xrTableRow11
            //
            this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell241,
                this.xrTableCell10,
                this.xrTableCell242,
                this.xrTableCell16,
                this.xrTableCell1,
                this.xrTableCell2
            });
            this.xrTableRow11.Name   = "xrTableRow11";
            this.xrTableRow11.Weight = 9.2D;
            //
            // xrTableCell241
            //
            this.xrTableCell241.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell241.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell241.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell241.Name = "xrTableCell241";
            this.xrTableCell241.StylePriority.UseBorderColor = false;
            this.xrTableCell241.StylePriority.UseBorders     = false;
            this.xrTableCell241.StylePriority.UseFont        = false;
            this.xrTableCell241.Text   = "Stt";
            this.xrTableCell241.Weight = 0.17045038747557828D;
            //
            // xrTableCell10
            //
            this.xrTableCell10.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell10.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseBorderColor = false;
            this.xrTableCell10.StylePriority.UseBorders     = false;
            this.xrTableCell10.StylePriority.UseFont        = false;
            this.xrTableCell10.Text   = "Số hiệu cán bộ";
            this.xrTableCell10.Weight = 0.53646224445716939D;
            //
            // xrTableCell242
            //
            this.xrTableCell242.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell242.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell242.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell242.Name = "xrTableCell242";
            this.xrTableCell242.StylePriority.UseBorderColor = false;
            this.xrTableCell242.StylePriority.UseBorders     = false;
            this.xrTableCell242.StylePriority.UseFont        = false;
            this.xrTableCell242.Text   = "Họ và tên";
            this.xrTableCell242.Weight = 0.58424965917440241D;
            //
            // xrTableCell16
            //
            this.xrTableCell16.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell16.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell16.Name = "xrTableCell16";
            this.xrTableCell16.StylePriority.UseBorderColor = false;
            this.xrTableCell16.StylePriority.UseBorders     = false;
            this.xrTableCell16.StylePriority.UseFont        = false;
            this.xrTableCell16.Text   = "Số tài khoản";
            this.xrTableCell16.Weight = 0.70543581911758757D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell1.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderColor = false;
            this.xrTableCell1.StylePriority.UseBorders     = false;
            this.xrTableCell1.StylePriority.UseFont        = false;
            this.xrTableCell1.Text   = "Số CMND";
            this.xrTableCell1.Weight = 0.65577189055628193D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseBorderColor = false;
            this.xrTableCell2.StylePriority.UseBorders     = false;
            this.xrTableCell2.StylePriority.UseFont        = false;
            this.xrTableCell2.Text   = "Số tiền";
            this.xrTableCell2.Weight = 0.7694219986019063D;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.lblReportDate,
                this.xrTable1,
                this.lblThuTruong
            });
            this.ReportFooter.HeightF = 252.1667F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Italic);
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(617.667F, 48.8095F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(175.3329F, 15F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTable1
            //
            this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            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(803.0001F, 25F);
            this.xrTable1.StylePriority.UseBorders = false;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTextTongSo,
                this.xrTableCell7,
                this.xrTableCell8,
                this.xrTableCellTotalAmount
            });
            this.xrTableRow1.Name   = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            //
            // xrTextTongSo
            //
            this.xrTextTongSo.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTextTongSo.Name    = "xrTextTongSo";
            this.xrTextTongSo.StylePriority.UseBorders       = false;
            this.xrTextTongSo.StylePriority.UseTextAlignment = false;
            this.xrTextTongSo.Text          = "TỔNG CỘNG";
            this.xrTextTongSo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTextTongSo.Weight        = 1.4937374078733461D;
            //
            // xrTableCell7
            //
            this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell7.Name    = "xrTableCell7";
            this.xrTableCell7.StylePriority.UseBorders       = false;
            this.xrTableCell7.StylePriority.UseTextAlignment = false;
            this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell7.Weight        = 0.8161142544779818D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell8.Name    = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseBorders       = false;
            this.xrTableCell8.StylePriority.UseTextAlignment = false;
            this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell8.Weight        = 0.75865910386805246D;
            //
            // xrTableCellTotalAmount
            //
            this.xrTableCellTotalAmount.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTotalAmount.Name = "xrTableCellTotalAmount";
            this.xrTableCellTotalAmount.StylePriority.UseBorders       = false;
            this.xrTableCellTotalAmount.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalAmount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalAmount.Weight        = 0.89013926624558348D;
            //
            // lblThuTruong
            //
            this.lblThuTruong.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.lblThuTruong.LocationFloat                  = new DevExpress.Utils.PointFloat(639.5512F, 77.94639F);
            this.lblThuTruong.Name                           = "lblThuTruong";
            this.lblThuTruong.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblThuTruong.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.lblThuTruong.StylePriority.UseFont          = false;
            this.lblThuTruong.StylePriority.UseTextAlignment = false;
            this.lblThuTruong.Text                           = "CHỦ TÀI KHOẢN";
            this.lblThuTruong.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // rp_SalaryATM
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter
            });
            this.BorderColor = System.Drawing.Color.DarkGray;
            this.Font        = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
                this.formattingRule1
            });
            this.Margins       = new System.Drawing.Printing.Margins(12, 12, 15, 0);
            this.PageHeight    = 1169;
            this.PageWidth     = 827;
            this.PaperKind     = System.Drawing.Printing.PaperKind.A4;
            this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.Version       = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).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 = "RepClienteCadastroResumido.resx";

        this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
        this.lfone            = new DevExpress.XtraReports.UI.XRLabel();
        this.luf              = new DevExpress.XtraReports.UI.XRLabel();
        this.lcnpj            = new DevExpress.XtraReports.UI.XRLabel();
        this.lcep             = new DevExpress.XtraReports.UI.XRLabel();
        this.lnome            = new DevExpress.XtraReports.UI.XRLabel();
        this.lcidade          = new DevExpress.XtraReports.UI.XRLabel();
        this.lbairro          = new DevExpress.XtraReports.UI.XRLabel();
        this.lendereco        = new DevExpress.XtraReports.UI.XRLabel();
        this.lapelido         = new DevExpress.XtraReports.UI.XRLabel();
        this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
        this.ltusuario        = new DevExpress.XtraReports.UI.XRLabel();
        this.ltempresa        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
        this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
        this.ltitulorelatorio = new DevExpress.XtraReports.UI.XRLabel();
        this.grupocabecalho   = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel17        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel16        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel15        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel18        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
        this.grupofiltros     = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.lfcliente        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
        this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
        this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
        this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
        this.lcaminho         = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter     = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
        this.ltotquant        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLine2          = new DevExpress.XtraReports.UI.XRLine();
        this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
        this.lfdda            = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lfone,
            this.luf,
            this.lcnpj,
            this.lcep,
            this.lnome,
            this.lcidade,
            this.lbairro,
            this.lendereco,
            this.lapelido
        });
        this.Detail.EvenStyleName = "xrControlStyle1";
        this.Detail.HeightF       = 11.04167F;
        this.Detail.Name          = "Detail";
        this.Detail.OddStyleName  = "xrControlStyle2";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // lfone
        //
        this.lfone.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lfone.ForeColor     = System.Drawing.Color.Black;
        this.lfone.LocationFloat = new DevExpress.Utils.PointFloat(927.5928F, 0F);
        this.lfone.Name          = "lfone";
        this.lfone.NullValueText = " ";
        this.lfone.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lfone.SizeF         = new System.Drawing.SizeF(121.4073F, 10F);
        this.lfone.StylePriority.UseBackColor = false;
        this.lfone.StylePriority.UseFont      = false;
        this.lfone.Text          = "fone1res";
        this.lfone.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lfone.WordWrap      = false;
        //
        // luf
        //
        this.luf.Font          = new System.Drawing.Font("Calibri", 7F);
        this.luf.ForeColor     = System.Drawing.Color.Black;
        this.luf.LocationFloat = new DevExpress.Utils.PointFloat(726.8796F, 0F);
        this.luf.Name          = "luf";
        this.luf.NullValueText = " ";
        this.luf.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.luf.SizeF         = new System.Drawing.SizeF(19.00006F, 9.999999F);
        this.luf.StylePriority.UseBackColor = false;
        this.luf.StylePriority.UseFont      = false;
        this.luf.Text          = "uf";
        this.luf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.luf.WordWrap      = false;
        //
        // lcnpj
        //
        this.lcnpj.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lcnpj.ForeColor     = System.Drawing.Color.Black;
        this.lcnpj.LocationFloat = new DevExpress.Utils.PointFloat(796.1718F, 0F);
        this.lcnpj.Name          = "lcnpj";
        this.lcnpj.NullValueText = " ";
        this.lcnpj.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lcnpj.SizeF         = new System.Drawing.SizeF(131.421F, 9.999999F);
        this.lcnpj.StylePriority.UseBackColor = false;
        this.lcnpj.StylePriority.UseFont      = false;
        this.lcnpj.Text          = "cnpj";
        this.lcnpj.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lcnpj.WordWrap      = false;
        //
        // lcep
        //
        this.lcep.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lcep.ForeColor     = System.Drawing.Color.Black;
        this.lcep.LocationFloat = new DevExpress.Utils.PointFloat(745.8798F, 0F);
        this.lcep.Name          = "lcep";
        this.lcep.NullValueText = " ";
        this.lcep.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lcep.SizeF         = new System.Drawing.SizeF(50.29205F, 10F);
        this.lcep.StylePriority.UseBackColor = false;
        this.lcep.StylePriority.UseFont      = false;
        this.lcep.Text          = "cep";
        this.lcep.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lcep.WordWrap      = false;
        //
        // lnome
        //
        this.lnome.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lnome.ForeColor     = System.Drawing.Color.Black;
        this.lnome.LocationFloat = new DevExpress.Utils.PointFloat(84.63166F, 0F);
        this.lnome.Name          = "lnome";
        this.lnome.NullValueText = " ";
        this.lnome.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lnome.SizeF         = new System.Drawing.SizeF(202.5985F, 10F);
        this.lnome.StylePriority.UseBackColor = false;
        this.lnome.StylePriority.UseFont      = false;
        this.lnome.Text          = "nome";
        this.lnome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lnome.WordWrap      = false;
        //
        // lcidade
        //
        this.lcidade.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lcidade.ForeColor     = System.Drawing.Color.Black;
        this.lcidade.LocationFloat = new DevExpress.Utils.PointFloat(626.9558F, 0F);
        this.lcidade.Name          = "lcidade";
        this.lcidade.NullValueText = " ";
        this.lcidade.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lcidade.SizeF         = new System.Drawing.SizeF(99.92371F, 9.999999F);
        this.lcidade.StylePriority.UseBackColor = false;
        this.lcidade.StylePriority.UseFont      = false;
        this.lcidade.Text          = "cidade";
        this.lcidade.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lcidade.WordWrap      = false;
        //
        // lbairro
        //
        this.lbairro.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lbairro.ForeColor     = System.Drawing.Color.Black;
        this.lbairro.LocationFloat = new DevExpress.Utils.PointFloat(524.507F, 0F);
        this.lbairro.Name          = "lbairro";
        this.lbairro.NullValueText = " ";
        this.lbairro.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lbairro.SizeF         = new System.Drawing.SizeF(102.4488F, 9.999999F);
        this.lbairro.StylePriority.UseBackColor = false;
        this.lbairro.StylePriority.UseFont      = false;
        this.lbairro.Text          = "bairro";
        this.lbairro.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lbairro.WordWrap      = false;
        //
        // lendereco
        //
        this.lendereco.Font          = new System.Drawing.Font("Calibri", 7F);
        this.lendereco.ForeColor     = System.Drawing.Color.Black;
        this.lendereco.LocationFloat = new DevExpress.Utils.PointFloat(287.2302F, 0F);
        this.lendereco.Name          = "lendereco";
        this.lendereco.NullValueText = " ";
        this.lendereco.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lendereco.SizeF         = new System.Drawing.SizeF(237.2768F, 10F);
        this.lendereco.StylePriority.UseBackColor = false;
        this.lendereco.StylePriority.UseFont      = false;
        this.lendereco.Text          = "endereco";
        this.lendereco.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lendereco.WordWrap      = false;
        //
        // lapelido
        //
        this.lapelido.Font          = new System.Drawing.Font("Calibri", 6.5F);
        this.lapelido.ForeColor     = System.Drawing.Color.Black;
        this.lapelido.LocationFloat = new DevExpress.Utils.PointFloat(0.0001518815F, 0F);
        this.lapelido.Name          = "lapelido";
        this.lapelido.NullValueText = " ";
        this.lapelido.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lapelido.SizeF         = new System.Drawing.SizeF(84.63151F, 10F);
        this.lapelido.StylePriority.UseBackColor = false;
        this.lapelido.StylePriority.UseFont      = false;
        this.lapelido.Text          = "lapelido";
        this.lapelido.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.lapelido.WordWrap      = false;
        //
        // TopMargin
        //
        this.TopMargin.BackColor = System.Drawing.Color.Transparent;
        this.TopMargin.HeightF   = 48.81465F;
        this.TopMargin.Name      = "TopMargin";
        this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.StylePriority.UseBackColor = false;
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ltusuario
        //
        this.ltusuario.BackColor     = System.Drawing.Color.White;
        this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
        this.ltusuario.Name          = "ltusuario";
        this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
        this.ltusuario.StylePriority.UseBackColor     = false;
        this.ltusuario.StylePriority.UseFont          = false;
        this.ltusuario.StylePriority.UseTextAlignment = false;
        this.ltusuario.Text          = "ltusuario";
        this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // ltempresa
        //
        this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
        this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
        this.ltempresa.Name          = "ltempresa";
        this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
        this.ltempresa.StylePriority.UseBackColor     = false;
        this.ltempresa.StylePriority.UseBorders       = false;
        this.ltempresa.StylePriority.UseFont          = false;
        this.ltempresa.StylePriority.UseForeColor     = false;
        this.ltempresa.StylePriority.UseTextAlignment = false;
        this.ltempresa.Text          = "ltempresa";
        this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
        this.xrPageInfo2.BorderWidth   = 0F;
        this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
        this.xrPageInfo2.Name          = "xrPageInfo2";
        this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
        this.xrPageInfo2.StylePriority.UseBackColor     = false;
        this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
        this.xrPageInfo2.StylePriority.UseFont          = false;
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 24.16428F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // PageHeader
        //
        this.PageHeader.BackColor = System.Drawing.Color.LightGray;
        this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrPageInfo3,
            this.ltitulorelatorio,
            this.xrPageInfo2,
            this.ltempresa,
            this.ltusuario
        });
        this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
        this.PageHeader.HeightF = 76.04166F;
        this.PageHeader.Name    = "PageHeader";
        this.PageHeader.StylePriority.UseBackColor = false;
        this.PageHeader.StylePriority.UseBorders   = false;
        this.PageHeader.StylePriority.UseFont      = false;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
        this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
        this.xrPictureBox1.BorderWidth     = 0F;
        this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
        this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
        this.xrPictureBox1.Name            = "xrPictureBox1";
        this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
        this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
        this.xrPictureBox1.StylePriority.UseBorderColor     = false;
        this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
        this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
        //
        // xrPageInfo3
        //
        this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
        this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
        this.xrPageInfo3.Format        = "Pág: {0}/{1}";
        this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
        this.xrPageInfo3.Name          = "xrPageInfo3";
        this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
        this.xrPageInfo3.StylePriority.UseBackColor     = false;
        this.xrPageInfo3.StylePriority.UseFont          = false;
        this.xrPageInfo3.StylePriority.UseTextAlignment = false;
        this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // ltitulorelatorio
        //
        this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
        this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
        this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
        this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
        this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
        this.ltitulorelatorio.Name          = "ltitulorelatorio";
        this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
        this.ltitulorelatorio.StylePriority.UseBackColor     = false;
        this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
        this.ltitulorelatorio.StylePriority.UseBorders       = false;
        this.ltitulorelatorio.StylePriority.UseFont          = false;
        this.ltitulorelatorio.StylePriority.UseForeColor     = false;
        this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
        this.ltitulorelatorio.Text          = "RELATÓRIO CLIENTE CADASTRO RESUMIDO";
        this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // grupocabecalho
        //
        this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel5,
            this.xrLabel2,
            this.xrLabel17,
            this.xrLabel16,
            this.xrLabel15,
            this.xrLabel3,
            this.xrLabel18,
            this.xrLabel26,
            this.xrLabel19
        });
        this.grupocabecalho.HeightF         = 13F;
        this.grupocabecalho.Name            = "grupocabecalho";
        this.grupocabecalho.RepeatEveryPage = true;
        //
        // xrLabel5
        //
        this.xrLabel5.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel5.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel5.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel5.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(927.5928F, 0F);
        this.xrLabel5.Name          = "xrLabel5";
        this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF         = new System.Drawing.SizeF(121.4072F, 13F);
        this.xrLabel5.StylePriority.UseBackColor     = false;
        this.xrLabel5.StylePriority.UseBorderColor   = false;
        this.xrLabel5.StylePriority.UseBorders       = false;
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseForeColor     = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.Text          = "Telefone";
        this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel2
        //
        this.xrLabel2.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel2.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel2.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(796.1719F, 0F);
        this.xrLabel2.Name          = "xrLabel2";
        this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF         = new System.Drawing.SizeF(131.4209F, 13F);
        this.xrLabel2.StylePriority.UseBackColor     = false;
        this.xrLabel2.StylePriority.UseBorderColor   = false;
        this.xrLabel2.StylePriority.UseBorders       = false;
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseForeColor     = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text          = "CPF\\CNPJ";
        this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel17
        //
        this.xrLabel17.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel17.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel17.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel17.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel17.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(745.8797F, 0F);
        this.xrLabel17.Name          = "xrLabel17";
        this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel17.SizeF         = new System.Drawing.SizeF(50.29205F, 13F);
        this.xrLabel17.StylePriority.UseBackColor     = false;
        this.xrLabel17.StylePriority.UseBorderColor   = false;
        this.xrLabel17.StylePriority.UseBorders       = false;
        this.xrLabel17.StylePriority.UseFont          = false;
        this.xrLabel17.StylePriority.UseForeColor     = false;
        this.xrLabel17.StylePriority.UseTextAlignment = false;
        this.xrLabel17.Text          = "CEP";
        this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel16
        //
        this.xrLabel16.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel16.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel16.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel16.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel16.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(726.8796F, 0F);
        this.xrLabel16.Name          = "xrLabel16";
        this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel16.SizeF         = new System.Drawing.SizeF(19F, 13F);
        this.xrLabel16.StylePriority.UseBackColor     = false;
        this.xrLabel16.StylePriority.UseBorderColor   = false;
        this.xrLabel16.StylePriority.UseBorders       = false;
        this.xrLabel16.StylePriority.UseFont          = false;
        this.xrLabel16.StylePriority.UseForeColor     = false;
        this.xrLabel16.StylePriority.UseTextAlignment = false;
        this.xrLabel16.Text          = "UF";
        this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel15
        //
        this.xrLabel15.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel15.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel15.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel15.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel15.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(524.5073F, 0F);
        this.xrLabel15.Name          = "xrLabel15";
        this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel15.SizeF         = new System.Drawing.SizeF(102.4485F, 13F);
        this.xrLabel15.StylePriority.UseBackColor     = false;
        this.xrLabel15.StylePriority.UseBorderColor   = false;
        this.xrLabel15.StylePriority.UseBorders       = false;
        this.xrLabel15.StylePriority.UseFont          = false;
        this.xrLabel15.StylePriority.UseForeColor     = false;
        this.xrLabel15.StylePriority.UseTextAlignment = false;
        this.xrLabel15.Text          = "Bairro";
        this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel3
        //
        this.xrLabel3.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel3.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel3.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(626.9558F, 0F);
        this.xrLabel3.Name          = "xrLabel3";
        this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF         = new System.Drawing.SizeF(99.92383F, 13F);
        this.xrLabel3.StylePriority.UseBackColor     = false;
        this.xrLabel3.StylePriority.UseBorderColor   = false;
        this.xrLabel3.StylePriority.UseBorders       = false;
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseForeColor     = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text          = "Cidade";
        this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel18
        //
        this.xrLabel18.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel18.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel18.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel18.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel18.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001554136F, 0F);
        this.xrLabel18.Name          = "xrLabel18";
        this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel18.SizeF         = new System.Drawing.SizeF(87.23003F, 13F);
        this.xrLabel18.StylePriority.UseBackColor     = false;
        this.xrLabel18.StylePriority.UseBorderColor   = false;
        this.xrLabel18.StylePriority.UseBorders       = false;
        this.xrLabel18.StylePriority.UseFont          = false;
        this.xrLabel18.StylePriority.UseForeColor     = false;
        this.xrLabel18.StylePriority.UseTextAlignment = false;
        this.xrLabel18.Text          = "Apelido";
        this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel26
        //
        this.xrLabel26.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel26.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel26.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel26.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel26.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(287.2302F, 0F);
        this.xrLabel26.Name          = "xrLabel26";
        this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel26.SizeF         = new System.Drawing.SizeF(237.2771F, 13F);
        this.xrLabel26.StylePriority.UseBackColor     = false;
        this.xrLabel26.StylePriority.UseBorderColor   = false;
        this.xrLabel26.StylePriority.UseBorders       = false;
        this.xrLabel26.StylePriority.UseFont          = false;
        this.xrLabel26.StylePriority.UseForeColor     = false;
        this.xrLabel26.StylePriority.UseTextAlignment = false;
        this.xrLabel26.Text          = "Endereço";
        this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel19
        //
        this.xrLabel19.BackColor   = System.Drawing.Color.Silver;
        this.xrLabel19.BorderColor = System.Drawing.Color.LightSlateGray;
        this.xrLabel19.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel19.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
        this.xrLabel19.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
        this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(87.23018F, 0F);
        this.xrLabel19.Name          = "xrLabel19";
        this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel19.SizeF         = new System.Drawing.SizeF(200F, 13F);
        this.xrLabel19.StylePriority.UseBackColor     = false;
        this.xrLabel19.StylePriority.UseBorderColor   = false;
        this.xrLabel19.StylePriority.UseBorders       = false;
        this.xrLabel19.StylePriority.UseFont          = false;
        this.xrLabel19.StylePriority.UseForeColor     = false;
        this.xrLabel19.StylePriority.UseTextAlignment = false;
        this.xrLabel19.Text          = "Nome";
        this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // grupofiltros
        //
        this.grupofiltros.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel6,
            this.lfdda,
            this.lfcliente,
            this.xrLabel4
        });
        this.grupofiltros.HeightF = 29.16667F;
        this.grupofiltros.Level   = 1;
        this.grupofiltros.Name    = "grupofiltros";
        //
        // lfcliente
        //
        this.lfcliente.LocationFloat = new DevExpress.Utils.PointFloat(82.23017F, 5.000007F);
        this.lfcliente.Name          = "lfcliente";
        this.lfcliente.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lfcliente.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
        this.lfcliente.StylePriority.UseTextAlignment = false;
        this.lfcliente.Text          = "lfcliente";
        this.lfcliente.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999998F, 5.00001F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Cliente: ";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrControlStyle1
        //
        this.xrControlStyle1.Name    = "xrControlStyle1";
        this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        //
        // xrControlStyle2
        //
        this.xrControlStyle2.Name    = "xrControlStyle2";
        this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        //
        // formattingRule1
        //
        this.formattingRule1.Name = "formattingRule1";
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lcaminho
        });
        this.PageFooter.HeightF = 22.91667F;
        this.PageFooter.Name    = "PageFooter";
        //
        // lcaminho
        //
        this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 4F);
        this.lcaminho.Name                  = "lcaminho";
        this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lcaminho.SizeF                 = new System.Drawing.SizeF(322.9165F, 14F);
        this.lcaminho.StylePriority.UseFont = false;
        this.lcaminho.Text                  = "Gitano ->SGFin ->Empresa ->Relatório Clientes Cadastro Resumido";
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.ltotquant,
            this.xrLine2
        });
        this.ReportFooter.HeightF      = 29.16667F;
        this.ReportFooter.Name         = "ReportFooter";
        this.ReportFooter.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportFooter_BeforePrint);
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999995F, 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(254.2502F, 14F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "Total :";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        //
        // ltotquant
        //
        this.ltotquant.Font                           = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.ltotquant.LocationFloat                  = new DevExpress.Utils.PointFloat(287.2302F, 10.00001F);
        this.ltotquant.Name                           = "ltotquant";
        this.ltotquant.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.ltotquant.SizeF                          = new System.Drawing.SizeF(108.0415F, 14F);
        this.ltotquant.StylePriority.UseFont          = false;
        this.ltotquant.StylePriority.UseTextAlignment = false;
        this.ltotquant.Text                           = "ltotquant";
        this.ltotquant.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        //
        // xrLine2
        //
        this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0.999999F, 0F);
        this.xrLine2.Name          = "xrLine2";
        this.xrLine2.SizeF         = new System.Drawing.SizeF(1048F, 7.375F);
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(594.5198F, 5.000051F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "DDA:";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // lfdda
        //
        this.lfdda.LocationFloat = new DevExpress.Utils.PointFloat(671.7499F, 5.000019F);
        this.lfdda.Name          = "lfdda";
        this.lfdda.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lfdda.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
        this.lfdda.StylePriority.UseTextAlignment = false;
        this.lfdda.Text          = "lfdda";
        this.lfdda.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // RepClienteCadastroResumido
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.grupocabecalho,
            this.grupofiltros,
            this.PageFooter,
            this.ReportFooter
        });
        this.Font = new System.Drawing.Font("Calibri", 9.75F);
        this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.xrControlStyle1,
            this.xrControlStyle2
        });
        this.Version      = "13.2";
        this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepClienteCadastroResumido_BeforePrint);
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
예제 #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo objectConstructorInfo1 = new DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo();
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell23            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = 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.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel3                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.objectDataSource2        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.ReportFooter             = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel18                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24                = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule1          = new DevExpress.XtraReports.UI.FormattingRule();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1121F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell4,
         this.xrTableCell27,
         this.xrTableCell2,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FromTime]")
     });
     this.xrTableCell23.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell23.Name                           = "xrTableCell23";
     this.xrTableCell23.StyleName                      = "DetailData3";
     this.xrTableCell23.StylePriority.UseFont          = false;
     this.xrTableCell23.StylePriority.UseTextAlignment = false;
     this.xrTableCell23.Text                           = "xrTableCell23";
     this.xrTableCell23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell23.TextFormatString               = "{0:hh\\:mm}";
     this.xrTableCell23.Weight                         = 0.065965330855285609D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ToTime]")
     });
     this.xrTableCell24.Font                           = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell24.Name                           = "xrTableCell24";
     this.xrTableCell24.StyleName                      = "DetailData3";
     this.xrTableCell24.StylePriority.UseFont          = false;
     this.xrTableCell24.StylePriority.UseTextAlignment = false;
     this.xrTableCell24.Text                           = "xrTableCell24";
     this.xrTableCell24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell24.TextFormatString               = "{0:hh\\:mm}";
     this.xrTableCell24.Weight                         = 0.072561862579573963D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Content]")
     });
     this.xrTableCell4.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell4.Multiline                      = true;
     this.xrTableCell4.Name                           = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text                           = "xrTableCell4";
     this.xrTableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight                         = 0.19687954641380223D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Method]")
     });
     this.xrTableCell27.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell27.Multiline             = true;
     this.xrTableCell27.Name                  = "xrTableCell27";
     this.xrTableCell27.StyleName             = "DetailData3";
     this.xrTableCell27.StylePriority.UseFont = false;
     this.xrTableCell27.Text                  = "xrTableCell27";
     this.xrTableCell27.Weight                = 0.21229475376274704D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Result]")
     });
     this.xrTableCell2.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell2.Multiline                      = true;
     this.xrTableCell2.Name                           = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text                           = "xrTableCell2";
     this.xrTableCell2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight                         = 0.14409362049130065D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Total]")
     });
     this.xrTableCell28.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell28.Multiline             = true;
     this.xrTableCell28.Name                  = "xrTableCell28";
     this.xrTableCell28.StyleName             = "DetailData3";
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.Text                  = "xrTableCell28";
     this.xrTableCell28.Weight                = 0.23701193121192882D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Comment1]")
     });
     this.xrTableCell29.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell29.Multiline             = true;
     this.xrTableCell29.Name                  = "xrTableCell29";
     this.xrTableCell29.StyleName             = "DetailData3";
     this.xrTableCell29.StylePriority.UseFont = false;
     this.xrTableCell29.Text                  = "xrTableCell29";
     this.xrTableCell29.Weight                = 0.27972269792621529D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Comment2]")
     });
     this.xrTableCell30.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell30.Multiline             = true;
     this.xrTableCell30.Name                  = "xrTableCell30";
     this.xrTableCell30.StyleName             = "DetailData3";
     this.xrTableCell30.StylePriority.UseFont = false;
     this.xrTableCell30.Text                  = "xrTableCell30";
     this.xrTableCell30.Weight                = 0.27041293137870659D;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.TopMargin.HeightF       = 39F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 16.08334F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(963F, 15.58332F);
     this.xrLabel3.StyleName             = "Title";
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "PHÒNG HÀNH CHÍNH NHÂN SỰ";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(963F, 15.99998F);
     this.xrLabel2.StyleName             = "Title";
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "CÔNG TY CỔ PHẦN DỊCH VỤ DẦU KHÍ QUẢNG NGÃI PTSC";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF       = 30F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(3.973643E-05F, 0F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(1121F, 23F);
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrPageInfo1.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 135F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(5.999994F, 98.00002F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(73.95836F, 23F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "Tổ/ Nhóm:";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.AutoWidth = true;
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Ten_TO]")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 98.00002F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel5";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(5.999994F, 75F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(73.95836F, 23F);
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "Chức danh:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.AutoWidth = true;
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Ten_CV]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 75F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel5";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.AutoWidth = true;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 52F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "xrLabel5";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 52.00002F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(73.95834F, 23F);
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "Họ và tên:";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Date]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(6.000018F, 26.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(1115F, 17.79167F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel4";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrLabel4.TextFormatString               = "Ngày {0:dd/MM/yyyy}";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(6.00001F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(1115F, 26F);
     this.xrLabel1.StyleName                      = "Title";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "NHẬT KÝ CÔNG VIỆC";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion      = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF         = 48F;
     this.groupHeaderBand1.Name            = "groupHeaderBand1";
     this.groupHeaderBand1.RepeatEveryPage = true;
     //
     // xrPanel1
     //
     this.xrPanel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name                     = "xrPanel1";
     this.xrPanel1.SizeF                    = new System.Drawing.SizeF(1121F, 48F);
     this.xrPanel1.StyleName                = "DetailCaptionBackground3";
     this.xrPanel1.StylePriority.UseBorders = false;
     //
     // xrTable1
     //
     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   = 1F;
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1121F, 38.00001F);
     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.xrTableCell7,
         this.xrTableCell3,
         this.xrTableCell11,
         this.xrTableCell1,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell7.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseBorderColor   = false;
     this.xrTableCell7.StylePriority.UseBorders       = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Thời gian";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 0.16368739414336936D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Nội dung công việc";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 0.22743501390583934D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell11.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell11.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.StyleName = "DetailCaption3";
     this.xrTableCell11.StylePriority.UseBorderColor   = false;
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UseForeColor     = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Phương pháp, công việc thực hiện công việc";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.247559747926083D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Kết quả thực hiện công việc";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.16802968339552205D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell12.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell12.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailCaption3";
     this.xrTableCell12.StylePriority.UseBorderColor   = false;
     this.xrTableCell12.StylePriority.UseBorders       = false;
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UseForeColor     = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "Tổng kết các công việc chính";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 0.27638286060796713D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell13.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell13.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell13.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.StyleName = "DetailCaption3";
     this.xrTableCell13.StylePriority.UseBorderColor   = false;
     this.xrTableCell13.StylePriority.UseBorders       = false;
     this.xrTableCell13.StylePriority.UseFont          = false;
     this.xrTableCell13.StylePriority.UseForeColor     = false;
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "Đánh giá của tổ trưởng";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight        = 0.3261885487722827D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell14.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell14.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell14.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StyleName = "DetailCaption3";
     this.xrTableCell14.StylePriority.UseBorderColor   = false;
     this.xrTableCell14.StylePriority.UseBorders       = false;
     this.xrTableCell14.StylePriority.UseFont          = false;
     this.xrTableCell14.StylePriority.UseForeColor     = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "Đánh giá kết quả của Phụ trách trực tiếp";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight        = 0.31533206028236976D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // objectDataSource2
     //
     this.objectDataSource2.Constructor = objectConstructorInfo1;
     this.objectDataSource2.DataSource  = typeof(DataModel.Model.Reports.ExportDailyModel);
     this.objectDataSource2.Name        = "objectDataSource2";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel21,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel24
     });
     this.ReportFooter.HeightF      = 146.6667F;
     this.ReportFooter.KeepTogether = true;
     this.ReportFooter.Name         = "ReportFooter";
     //
     // xrLabel18
     //
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(781.985F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Quảng Ngãi, ngày      tháng     năm 2017";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(781.985F, 36.83331F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Ý kiến đánh giá của Trưởng Bộ Phận";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(401.4942F, 36.83331F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Tổ trưởng/ phụ trách tổ";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(87.97339F, 36.83331F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Người báo cáo";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel22
     //
     this.xrLabel22.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(87.97339F, 113.25F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Người báo cáo";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel23
     //
     this.xrLabel23.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName1]")
     });
     this.xrLabel23.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(401.4942F, 113.25F);
     this.xrLabel23.Name                           = "xrLabel23";
     this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text                           = "Người báo cáo";
     this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel24
     //
     this.xrLabel24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName2]")
     });
     this.xrLabel24.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(781.985F, 113.25F);
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text                           = "Người báo cáo";
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // XtraReportDaily
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1,
         this.ReportFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource2
     });
     this.DataSource = this.objectDataSource2;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(28, 20, 39, 30);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(en_UsersLoginHistory));
     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.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     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.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.companyLogo      = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = 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.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.DetailVision     = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReceivedPercent  = new DevExpress.XtraReports.UI.CalculatedField();
     this.UsersNames       = new DevExpress.XtraReports.Parameters.Parameter();
     this.CompanyId        = new DevExpress.XtraReports.Parameters.Parameter();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.CompanyName      = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName       = new DevExpress.XtraReports.Parameters.Parameter();
     this.from             = new DevExpress.XtraReports.Parameters.Parameter();
     this.to = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingUsersNames = new DevExpress.XtraReports.Parameters.Parameter();
     ((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.Dpi = 254F;
     this.Detail.FormattingRules.Add(this.DetailVision);
     this.Detail.HeightF      = 63.5F;
     this.Detail.KeepTogether = true;
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("EmpName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("EmpName", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("JobName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("JobName", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("deptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("deptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("ReceiveDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("ReceiveDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending),
         new DevExpress.XtraReports.UI.GroupField("DeliveryDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("DeliveryDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)
     });
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 2F;
     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.xrLabel4,
         this.companyLogo,
         this.xrLabel11
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 218.1666F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 93.48611F;
     this.PageFooter.Name    = "PageFooter";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.Dpi     = 254F;
     this.PageHeader.HeightF = 63.5F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable2
     //
     this.xrTable2.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.EvenStyleName = "tbl_odd_detail";
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(330.1447F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "tbl_even_detail";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2279.313F, 63.5F);
     this.xrTable2.StylePriority.UseBorderColor   = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_LoginHistory.Duration")
     });
     this.xrTableCell15.Dpi    = 254F;
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Weight = 0.36253863414101578D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_LoginHistory.EndTime")
     });
     this.xrTableCell16.Dpi    = 254F;
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Weight = 0.40562834251357238D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_LoginHistory.StartTime")
     });
     this.xrTableCell17.Dpi    = 254F;
     this.xrTableCell17.Name   = "xrTableCell17";
     this.xrTableCell17.Weight = 0.42742789499290013D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_LoginHistory.UserName")
     });
     this.xrTableCell18.Dpi    = 254F;
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Text   = "xrTableCell18";
     this.xrTableCell18.Weight = 0.56504086362771566D;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(883.6393F, 40.98377F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1117.212F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "User Logins Report";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // companyLogo
     //
     this.companyLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(3.000032F, 1.986098F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel11.Dpi                            = 254F;
     this.xrLabel11.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(2029.93F, 0F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(934.0693F, 105.7759F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(707.6166F, 13.53106F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2709F, 13.53104F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.999978F, 10.74665F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(961.6166F, 13.53106F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(330.1445F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF     = new System.Drawing.SizeF(2279.314F, 63.5F);
     this.xrTable1.StyleName = "tbl_header_style";
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 0.5679012345679012D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Dpi    = 254F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Duration";
     this.xrTableCell6.Weight = 0.53389661800853172D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi    = 254F;
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "End Time";
     this.xrTableCell7.Weight = 0.597353234196171D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi    = 254F;
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Start Time";
     this.xrTableCell8.Weight = 0.6294565466997778D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Dpi  = 254F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "User Name";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.83211390008055552D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.MetaSerializable  = null;
     storedProcQuery1.Name = "sp_LoginHistory";
     queryParameter1.Name  = "@culture";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name  = "@companyId";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name  = "@usersNames";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingUsersNames]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "sp_LoginHistory";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // formattingRule1
     //
     this.formattingRule1.Condition              = "[EmpStatus] == 0";
     this.formattingRule1.DataMember             = "EmployeeDetailsReport";
     this.formattingRule1.Formatting.BackColor   = System.Drawing.Color.White;
     this.formattingRule1.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule1.Formatting.BorderWidth = 10F;
     this.formattingRule1.Name = "formattingRule1";
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // DetailVision
     //
     this.DetailVision.Condition          = "[DataSource.RowCount]=0";
     this.DetailVision.DataMember         = "SP_CustodyTracking";
     this.DetailVision.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
     this.DetailVision.Name = "DetailVision";
     //
     // 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, 100F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     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, 100F);
     //
     // 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, 100F);
     //
     // 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, 100F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // ReceivedPercent
     //
     this.ReceivedPercent.DataMember = "SP_EmployeeDocumentsReport";
     this.ReceivedPercent.Expression = "(100*[ReceivedPaperCount])/([MissingPaperCount]+[ReceivedPaperCount])";
     this.ReceivedPercent.Name       = "ReceivedPercent";
     //
     // UsersNames
     //
     this.UsersNames.Description              = "اسم المستخدم";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "sp_LoginHistory";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "UserName";
     dynamicListLookUpSettings1.ValueMember   = "UserName";
     this.UsersNames.LookUpSettings           = dynamicListLookUpSettings1;
     this.UsersNames.MultiValue = true;
     this.UsersNames.Name       = "UsersNames";
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "ar-EG";
     this.Culture.Visible     = false;
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "UsersLoginHistory";
     this.ReportName.Visible     = false;
     //
     // from
     //
     this.from.Description = "تاريخ الدخول من";
     this.from.Name        = "from";
     this.from.Type        = typeof(System.DateTime);
     this.from.ValueInfo   = "1999-01-01";
     //
     // to
     //
     this.to.Description = "إلي";
     this.to.Name        = "to";
     this.to.Type        = typeof(System.DateTime);
     this.to.ValueInfo   = "2090-01-01";
     //
     // MappingUsersNames
     //
     this.MappingUsersNames.Description = "MappingUsersNames";
     this.MappingUsersNames.Name        = "MappingUsersNames";
     this.MappingUsersNames.Visible     = false;
     //
     // en_UsersLoginHistory
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.PageHeader
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.ReceivedPercent
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "sp_LoginHistory";
     this.DataSource   = this.sqlDataSource1;
     this.Dpi          = 254F;
     this.FilterString = "[StartTime] Between(?from, ?to)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7,
         this.DetailVision
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(3, 3, 0, 2);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.UsersNames,
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.Culture,
         this.ReportName,
         this.from,
         this.to,
         this.MappingUsersNames
     });
     this.ReportUnit        = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.RightToLeft       = DevExpress.XtraReports.UI.RightToLeft.Yes;
     this.RightToLeftLayout = DevExpress.XtraReports.UI.RightToLeftLayout.Yes;
     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();
 }
예제 #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BorrowedDocs));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
     this.DeliveryDateExceeded = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrTableCell8         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11        = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell15        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
     this.companyLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReceivedPercent  = new DevExpress.XtraReports.UI.CalculatedField();
     this.CompanyId        = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture          = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDocIds    = new DevExpress.XtraReports.Parameters.Parameter();
     this.DocsIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName       = new DevExpress.XtraReports.Parameters.Parameter();
     this.AssignEndDate    = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.ConEmpStartDate  = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "SP_BorrowedDocs";
     queryParameter1.Name  = "@Culture";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name  = "@LoginCompanyId";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name  = "@Doc";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingDocIds]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "SP_BorrowedDocs";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 63.5F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Silver;
     this.xrTable2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth   = 1F;
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.EvenStyleName = "tbl_odd_detail";
     this.xrTable2.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "tbl_even_detail";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders     = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont        = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Site")
     });
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell4.Weight        = 0.11056524965261336D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Purpose")
     });
     this.xrTableCell1.Dpi  = 254F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell1.Weight        = 0.14548798205074123D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.ExpdelvryDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi = 254F;
     this.xrTableCell7.FormattingRules.Add(this.DeliveryDateExceeded);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.10827628442976688D;
     //
     // DeliveryDateExceeded
     //
     this.DeliveryDateExceeded.Condition              = "[ExpdelvryDate]<LocalDateTimeToday()";
     this.DeliveryDateExceeded.DataMember             = "SP_BorrowedDocs";
     this.DeliveryDateExceeded.Formatting.BorderWidth = 1F;
     this.DeliveryDateExceeded.Formatting.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.DeliveryDateExceeded.Formatting.Visible     = DevExpress.Utils.DefaultBoolean.True;
     this.DeliveryDateExceeded.Name = "DeliveryDateExceeded";
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.RecvDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell8.Dpi  = 254F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.10964101182186527D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DocName")
     });
     this.xrTableCell9.Dpi  = 254F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.16753169367895224D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.JobName")
     });
     this.xrTableCell10.Dpi  = 254F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15556520642517518D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.EmpName")
     });
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.18201755971242239D;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.Dpi       = 254F;
     this.PageHeader.HeightF   = 63.5F;
     this.PageHeader.Name      = "PageHeader";
     this.PageHeader.StyleName = "tbl_header_style";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.xrTableCell14,
         this.xrTableCell13,
         this.xrTableCell6,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Dpi    = 254F;
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "الجهة";
     this.xrTableCell15.Weight = 1.2191038081965198D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Dpi    = 254F;
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "الغرض للإعارة";
     this.xrTableCell14.Weight = 1.6041660107525171D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Dpi    = 254F;
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "التاريخ المتوقع للارتجاع";
     this.xrTableCell13.Weight = 1.1938659267354235D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Dpi    = 254F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "تاريخ الاستلام";
     this.xrTableCell6.Weight = 1.2089125351471246D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 254F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "المستندات المعارة";
     this.xrTableCell5.Weight = 1.8472222615835232D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi    = 254F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "الوظيفة";
     this.xrTableCell2.Weight = 1.7152782049704727D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 254F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "اسم الموظف";
     this.xrTableCell3.Weight = 2.0069445512426181D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.companyLogo,
         this.xrLabel11
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 218.1666F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(883.6393F, 40.98377F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1117.212F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "تقرير المستندات المُعارة للموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // companyLogo
     //
     this.companyLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(3.000032F, 1.986098F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel11.Dpi                            = 254F;
     this.xrLabel11.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(2029.93F, 0F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(934.0693F, 105.7759F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 71.95106F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(707.6166F, 13.53106F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2709F, 13.53104F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.999978F, 10.74665F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(961.6166F, 13.53106F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // ReceivedPercent
     //
     this.ReceivedPercent.DataMember = "SP_EmployeeDocumentsReport";
     this.ReceivedPercent.Expression = "(100*[ReceivedPaperCount])/([MissingPaperCount]+[ReceivedPaperCount])";
     this.ReceivedPercent.Name       = "ReceivedPercent";
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "ar-EG";
     this.Culture.Visible     = false;
     //
     // MappingDocIds
     //
     this.MappingDocIds.Description = "MappingDocIds";
     this.MappingDocIds.Name        = "MappingDocIds";
     this.MappingDocIds.Visible     = false;
     //
     // DocsIds
     //
     this.DocsIds.Description = "اسم المستند";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_BorrowedDocs";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "DocName";
     dynamicListLookUpSettings1.ValueMember   = "DocID";
     this.DocsIds.LookUpSettings = dynamicListLookUpSettings1;
     this.DocsIds.MultiValue     = true;
     this.DocsIds.Name           = "DocsIds";
     this.DocsIds.Type           = typeof(int);
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "BorrowedDocs";
     this.ReportName.Visible     = false;
     //
     // AssignEndDate
     //
     this.AssignEndDate.Description = "إلي";
     this.AssignEndDate.Name        = "AssignEndDate";
     this.AssignEndDate.Type        = typeof(System.DateTime);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("DeptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 95.25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DeptName")
     });
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2341F, 24.99998F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(509.7639F, 63.19446F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // ConEmpStartDate
     //
     this.ConEmpStartDate.Description = "تاريخ الاستلام من";
     this.ConEmpStartDate.Name        = "ConEmpStartDate";
     this.ConEmpStartDate.Type        = typeof(System.DateTime);
     //
     // BorrowedDocs
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.ReceivedPercent
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "SP_BorrowedDocs";
     this.DataSource   = this.sqlDataSource1;
     this.Dpi          = 254F;
     this.FilterString = "[RecvDate] Between(?ConEmpStartDate, ?AssignEndDate)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.DeliveryDateExceeded,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(3, 3, 0, 0);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.Culture,
         this.DocsIds,
         this.ConEmpStartDate,
         this.MappingDocIds,
         this.ReportName,
         this.AssignEndDate
     });
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #28
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_BaoCaoNhanVienChuaCoSoBHXH.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.xrthoten         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_ngaysinh     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtgioitinh      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtdiachi        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtdienthoai     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtngayvaocongty = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_trinhdo      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtchucvu        = 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.xrttenphong      = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrChiNhanh       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NgayBaoCao   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenThanhPho  = 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.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.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.xrtmanhanvien,
            this.xrthoten,
            this.xrt_ngaysinh,
            this.xrtgioitinh,
            this.xrtdiachi,
            this.xrtdienthoai,
            this.xrtngayvaocongty,
            this.xrt_trinhdo,
            this.xrtchucvu
        });
        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.TopCenter;
        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;
        //
        // xrtmanhanvien
        //
        this.xrtmanhanvien.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtmanhanvien.Name = "xrtmanhanvien";
        this.xrtmanhanvien.StylePriority.UseFont          = false;
        this.xrtmanhanvien.StylePriority.UseTextAlignment = false;
        this.xrtmanhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtmanhanvien.Weight        = 0.86457550153778651D;
        //
        // xrthoten
        //
        this.xrthoten.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrthoten.Name = "xrthoten";
        this.xrthoten.StylePriority.UseFont          = false;
        this.xrthoten.StylePriority.UseTextAlignment = false;
        this.xrthoten.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrthoten.Weight        = 1.2500006236660197D;
        //
        // xrt_ngaysinh
        //
        this.xrt_ngaysinh.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrt_ngaysinh.Name = "xrt_ngaysinh";
        this.xrt_ngaysinh.StylePriority.UseFont          = false;
        this.xrt_ngaysinh.StylePriority.UseTextAlignment = false;
        this.xrt_ngaysinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_ngaysinh.Weight        = 0.80729853147345287D;
        //
        // xrtgioitinh
        //
        this.xrtgioitinh.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtgioitinh.Name = "xrtgioitinh";
        this.xrtgioitinh.StylePriority.UseFont          = false;
        this.xrtgioitinh.StylePriority.UseTextAlignment = false;
        this.xrtgioitinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtgioitinh.Weight        = 0.63802091000874361D;
        //
        // xrtdiachi
        //
        this.xrtdiachi.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtdiachi.Name = "xrtdiachi";
        this.xrtdiachi.StylePriority.UseFont          = false;
        this.xrtdiachi.StylePriority.UseTextAlignment = false;
        this.xrtdiachi.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtdiachi.Weight        = 2.4648422184067971D;
        //
        // xrtdienthoai
        //
        this.xrtdienthoai.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtdienthoai.Name = "xrtdienthoai";
        this.xrtdienthoai.StylePriority.UseFont          = false;
        this.xrtdienthoai.StylePriority.UseTextAlignment = false;
        this.xrtdienthoai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtdienthoai.Weight        = 0.90429476301779521D;
        //
        // xrtngayvaocongty
        //
        this.xrtngayvaocongty.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtngayvaocongty.Name = "xrtngayvaocongty";
        this.xrtngayvaocongty.StylePriority.UseFont          = false;
        this.xrtngayvaocongty.StylePriority.UseTextAlignment = false;
        this.xrtngayvaocongty.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrtngayvaocongty.Weight        = 1.0511087973976754D;
        //
        // xrt_trinhdo
        //
        this.xrt_trinhdo.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrt_trinhdo.Name = "xrt_trinhdo";
        this.xrt_trinhdo.StylePriority.UseFont          = false;
        this.xrt_trinhdo.StylePriority.UseTextAlignment = false;
        this.xrt_trinhdo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_trinhdo.Weight        = 1.0670792866941483D;
        //
        // xrtchucvu
        //
        this.xrtchucvu.Font = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtchucvu.Name = "xrtchucvu";
        this.xrtchucvu.StylePriority.UseFont          = false;
        this.xrtchucvu.StylePriority.UseTextAlignment = false;
        this.xrtchucvu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtchucvu.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.xrttenphong
        });
        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;
        //
        // xrttenphong
        //
        this.xrttenphong.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrttenphong.Name    = "xrttenphong";
        this.xrttenphong.Padding = new DevExpress.XtraPrinting.PaddingInfo(11, 0, 0, 0, 100F);
        this.xrttenphong.StylePriority.UseBorders       = false;
        this.xrttenphong.StylePriority.UsePadding       = false;
        this.xrttenphong.StylePriority.UseTextAlignment = false;
        this.xrttenphong.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrttenphong.Weight        = 10.809994580338495D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrChiNhanh,
            this.xrl_TitleBC,
            this.xrl_NgayBaoCao,
            this.xrl_TenThanhPho,
            this.xrl_TenCongTy
        });
        this.ReportHeader.HeightF = 145F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrChiNhanh
        //
        this.xrChiNhanh.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrChiNhanh.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 47.99998F);
        this.xrChiNhanh.Name                           = "xrChiNhanh";
        this.xrChiNhanh.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrChiNhanh.SizeF                          = new System.Drawing.SizeF(451.0416F, 23F);
        this.xrChiNhanh.StylePriority.UseFont          = false;
        this.xrChiNhanh.StylePriority.UseTextAlignment = false;
        this.xrChiNhanh.Text                           = "Chi nhánh :";
        this.xrChiNhanh.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // 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, 92.70834F);
        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Ộ CHƯA CÓ SỔ BHXH";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_NgayBaoCao
        //
        this.xrl_NgayBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrl_NgayBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 117.7083F);
        this.xrl_NgayBaoCao.Name                           = "xrl_NgayBaoCao";
        this.xrl_NgayBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NgayBaoCao.SizeF                          = new System.Drawing.SizeF(1083F, 23F);
        this.xrl_NgayBaoCao.StylePriority.UseFont          = false;
        this.xrl_NgayBaoCao.StylePriority.UseTextAlignment = false;
        this.xrl_NgayBaoCao.Text                           = "Tháng 3 năm 2013";
        this.xrl_NgayBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 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(451.0416F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // 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(451.0417F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // 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 = 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;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(745.2785F, 24.58331F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(339.7215F, 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.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   = "Ngày vào công ty";
        this.xrTableCell8.Weight = 1.0511072598253863D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name   = "xrTableCell12";
        this.xrTableCell12.Text   = "Trình độ";
        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.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_BaoCaoNhanVienChuaCoSoBHXH
        //
        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    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
예제 #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepVendasTaxasDiarias.resx";
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.ltaxa            = new DevExpress.XtraReports.UI.XRLabel();
     this.ldata            = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ltusuario        = new DevExpress.XtraReports.UI.XRLabel();
     this.ltempresa        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ltitulorelatorio = new DevExpress.XtraReports.UI.XRLabel();
     this.grupocabecalho   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel18        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.grupofiltros     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.lftaxa           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lcaminho         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.lfperiodo        = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.ltaxa,
         this.ldata
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 11.04167F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltaxa
     //
     this.ltaxa.Font          = new System.Drawing.Font("Calibri", 7F);
     this.ltaxa.ForeColor     = System.Drawing.Color.Black;
     this.ltaxa.LocationFloat = new DevExpress.Utils.PointFloat(84.63166F, 0F);
     this.ltaxa.Name          = "ltaxa";
     this.ltaxa.NullValueText = " ";
     this.ltaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltaxa.SizeF         = new System.Drawing.SizeF(202.5985F, 10F);
     this.ltaxa.StylePriority.UseBackColor     = false;
     this.ltaxa.StylePriority.UseFont          = false;
     this.ltaxa.StylePriority.UseTextAlignment = false;
     this.ltaxa.Text          = "ltaxa";
     this.ltaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.ltaxa.WordWrap      = false;
     //
     // ldata
     //
     this.ldata.Font          = new System.Drawing.Font("Calibri", 6.5F);
     this.ldata.ForeColor     = System.Drawing.Color.Black;
     this.ldata.LocationFloat = new DevExpress.Utils.PointFloat(0.0001518815F, 0F);
     this.ldata.Name          = "ldata";
     this.ldata.NullValueText = " ";
     this.ldata.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ldata.SizeF         = new System.Drawing.SizeF(84.63151F, 10F);
     this.ldata.StylePriority.UseBackColor = false;
     this.ldata.StylePriority.UseFont      = false;
     this.ldata.Text          = "ldata";
     this.ldata.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.ldata.WordWrap      = false;
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 48.81465F;
     this.TopMargin.Name      = "TopMargin";
     this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltusuario
     //
     this.ltusuario.BackColor     = System.Drawing.Color.White;
     this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
     this.ltusuario.StylePriority.UseBackColor     = false;
     this.ltusuario.StylePriority.UseFont          = false;
     this.ltusuario.StylePriority.UseTextAlignment = false;
     this.ltusuario.Text          = "ltusuario";
     this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltempresa
     //
     this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
     this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
     this.ltempresa.StylePriority.UseBackColor     = false;
     this.ltempresa.StylePriority.UseBorders       = false;
     this.ltempresa.StylePriority.UseFont          = false;
     this.ltempresa.StylePriority.UseForeColor     = false;
     this.ltempresa.StylePriority.UseTextAlignment = false;
     this.ltempresa.Text          = "ltempresa";
     this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
     this.xrPageInfo2.BorderWidth   = 0F;
     this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
     this.xrPageInfo2.StylePriority.UseBackColor     = false;
     this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 24.16428F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.BackColor = System.Drawing.Color.LightGray;
     this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrPageInfo3,
         this.ltitulorelatorio,
         this.xrPageInfo2,
         this.ltempresa,
         this.ltusuario
     });
     this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
     this.PageHeader.HeightF = 76.04166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor = false;
     this.PageHeader.StylePriority.UseBorders   = false;
     this.PageHeader.StylePriority.UseFont      = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
     this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPictureBox1.BorderWidth     = 0F;
     this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
     this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
     this.xrPictureBox1.Name            = "xrPictureBox1";
     this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
     this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorderColor     = false;
     this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
     this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
     this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrPageInfo3.Format        = "Pág: {0}/{1}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
     this.xrPageInfo3.StylePriority.UseBackColor     = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltitulorelatorio
     //
     this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
     this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
     this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
     this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
     this.ltitulorelatorio.StylePriority.UseBackColor     = false;
     this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
     this.ltitulorelatorio.StylePriority.UseBorders       = false;
     this.ltitulorelatorio.StylePriority.UseFont          = false;
     this.ltitulorelatorio.StylePriority.UseForeColor     = false;
     this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
     this.ltitulorelatorio.Text          = "RELATÓRIO TAXAS DIÁRIAS";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // grupocabecalho
     //
     this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel26,
         this.xrLabel19
     });
     this.grupocabecalho.HeightF         = 13F;
     this.grupocabecalho.Name            = "grupocabecalho";
     this.grupocabecalho.RepeatEveryPage = true;
     //
     // xrLabel18
     //
     this.xrLabel18.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel18.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel18.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001554136F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(87.23003F, 13F);
     this.xrLabel18.StylePriority.UseBackColor     = false;
     this.xrLabel18.StylePriority.UseBorderColor   = false;
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseForeColor     = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Data";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel26.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel26.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel26.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel26.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(287.2302F, 0F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(761.7698F, 13F);
     this.xrLabel26.StylePriority.UseBackColor     = false;
     this.xrLabel26.StylePriority.UseBorderColor   = false;
     this.xrLabel26.StylePriority.UseBorders       = false;
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseForeColor     = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text          = "|";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel19.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel19.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel19.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(87.23018F, 0F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(200F, 13F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseBorderColor   = false;
     this.xrLabel19.StylePriority.UseBorders       = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseForeColor     = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Taxa Dia";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // grupofiltros
     //
     this.grupofiltros.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lfperiodo,
         this.xrLabel1,
         this.lftaxa,
         this.xrLabel4
     });
     this.grupofiltros.HeightF = 29.16667F;
     this.grupofiltros.Level   = 1;
     this.grupofiltros.Name    = "grupofiltros";
     //
     // lftaxa
     //
     this.lftaxa.LocationFloat = new DevExpress.Utils.PointFloat(82.23017F, 5.000007F);
     this.lftaxa.Name          = "lftaxa";
     this.lftaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lftaxa.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lftaxa.StylePriority.UseTextAlignment = false;
     this.lftaxa.Text          = "lftaxa";
     this.lftaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999998F, 5.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Taxa:";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcaminho
     });
     this.PageFooter.HeightF = 22.91667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // lcaminho
     //
     this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 4F);
     this.lcaminho.Name                  = "lcaminho";
     this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcaminho.SizeF                 = new System.Drawing.SizeF(322.9165F, 14F);
     this.lcaminho.StylePriority.UseFont = false;
     this.lcaminho.Text                  = "Gitano ->SGFin ->Vendas ->Relatório Taxas Diárias";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(594.5196F, 5.000051F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Período:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lfperiodo
     //
     this.lfperiodo.LocationFloat = new DevExpress.Utils.PointFloat(671.7498F, 5.000019F);
     this.lfperiodo.Name          = "lfperiodo";
     this.lfperiodo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lfperiodo.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lfperiodo.StylePriority.UseTextAlignment = false;
     this.lfperiodo.Text          = "lfperiodo";
     this.lfperiodo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // RepVendasTaxasDiarias
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.grupocabecalho,
         this.grupofiltros,
         this.PageFooter
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepVendasTaxasDiarias_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column12            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column13            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression13  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column14            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression14  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column15            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression15  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column16            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression16  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column17            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression17  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column18            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression18  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column19            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression19  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column20            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression20  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column21            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression21  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column22            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression22  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column23            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression23  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column24            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression24  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column25            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression25  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column26            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression26  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column27            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression27  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column28            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression28  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column29            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression29  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column30            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression30  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column31            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression31  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column32            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression32  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column33            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression33  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column34            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression34  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column35            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression35  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column36            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression36  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column37            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression37  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column38            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression38  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column39            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression39  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column40            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression40  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column41            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression41  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column42            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression42  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column43            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression43  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column44            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression44  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column45            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression45  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column46            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression46  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column47            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression47  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column48            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression48  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column49            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression49  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column50            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression50  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column51            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression51  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(Test));
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.DetailReport    = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1         = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
     this.startdate       = new DevExpress.XtraReports.Parameters.Parameter();
     this.endDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.Null            = new DevExpress.XtraReports.Parameters.Parameter();
     this.formattingRule2 = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrLabel4        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.table1          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell32     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell37     = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell39     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7    = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.HeightF = 4.208342F;
     this.Detail.Name    = "Detail";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.HeightF = 28.08332F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2
     });
     this.DetailReport.DataMember = "Sys_User.Sys_Usersp_LeaveHistory";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.FormattingRules.Add(this.formattingRule2);
     this.DetailReport.Level = 0;
     this.DetailReport.Name  = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 35.29164F;
     this.Detail1.Name    = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel1
     });
     this.GroupHeader2.HeightF = 40.66668F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // formattingRule1
     //
     this.formattingRule1.DataMember         = "Sys_User.Sys_Usersp_leavedetail";
     this.formattingRule1.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
     this.formattingRule1.Name = "formattingRule1";
     //
     // startdate
     //
     this.startdate.Description = "startdate";
     this.startdate.Name        = "startdate";
     this.startdate.Type        = typeof(System.DateTime);
     this.startdate.ValueInfo   = "2018-01-01";
     //
     // endDate
     //
     this.endDate.Description = "endDate";
     this.endDate.Name        = "endDate";
     this.endDate.Type        = typeof(System.DateTime);
     this.endDate.ValueInfo   = "2018-12-01";
     //
     // Null
     //
     this.Null.AllowNull   = true;
     this.Null.Description = "Null";
     this.Null.Name        = "Null";
     this.Null.Type        = typeof(long);
     this.Null.Visible     = false;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition          = "[DataSource.RowCount] = 0";
     this.formattingRule2.DataMember         = "Sys_User.Sys_Usersp_leaveledger";
     this.formattingRule2.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
     this.formattingRule2.Name = "formattingRule2";
     //
     // xrLabel4
     //
     this.xrLabel4.Font                  = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(3.787879F, 9.999997F);
     this.xrLabel4.Multiline             = true;
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(135.2958F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Employee Name";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(139.0836F, 9.999997F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(198.5221F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // table1
     //
     this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.table1.Font          = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(797.9999F, 25.99999F);
     this.table1.StylePriority.UseBorders       = false;
     this.table1.StylePriority.UseFont          = false;
     this.table1.StylePriority.UseTextAlignment = false;
     this.table1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // tableRow1
     //
     this.tableRow1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell32,
         this.tableCell37,
         this.tableCell39
     });
     this.tableRow1.Font      = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Bold);
     this.tableRow1.ForeColor = System.Drawing.Color.Black;
     this.tableRow1.Name      = "tableRow1";
     this.tableRow1.StylePriority.UseBackColor     = false;
     this.tableRow1.StylePriority.UseFont          = false;
     this.tableRow1.StylePriority.UseForeColor     = false;
     this.tableRow1.StylePriority.UseTextAlignment = false;
     this.tableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableRow1.Weight        = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Font                  = new System.Drawing.Font("Calibri", 10.8F, System.Drawing.FontStyle.Bold);
     this.tableCell1.Multiline             = true;
     this.tableCell1.Name                  = "tableCell1";
     this.tableCell1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell1.StylePriority.UseFont = false;
     this.tableCell1.Text                  = "Employee";
     this.tableCell1.Weight                = 0.99983972568290391D;
     //
     // tableCell2
     //
     this.tableCell2.Multiline = true;
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(4, 2, 0, 0, 100F);
     this.tableCell2.StylePriority.UsePadding       = false;
     this.tableCell2.StylePriority.UseTextAlignment = false;
     this.tableCell2.Text          = "Type";
     this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell2.Weight        = 1.2885844209098571D;
     //
     // tableCell32
     //
     this.tableCell32.Multiline = true;
     this.tableCell32.Name      = "tableCell32";
     this.tableCell32.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell32.StylePriority.UsePadding       = false;
     this.tableCell32.StylePriority.UseTextAlignment = false;
     this.tableCell32.Text          = "Total";
     this.tableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell32.Weight        = 0.93463408399160786D;
     //
     // tableCell37
     //
     this.tableCell37.Multiline = true;
     this.tableCell37.Name      = "tableCell37";
     this.tableCell37.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell37.StylePriority.UsePadding       = false;
     this.tableCell37.StylePriority.UseTextAlignment = false;
     this.tableCell37.Text          = "Availed";
     this.tableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell37.Weight        = 0.77035953664128543D;
     //
     // tableCell39
     //
     this.tableCell39.Multiline = true;
     this.tableCell39.Name      = "tableCell39";
     this.tableCell39.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.tableCell39.StylePriority.UsePadding       = false;
     this.tableCell39.StylePriority.UseTextAlignment = false;
     this.tableCell39.Text          = "Balance";
     this.tableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.tableCell39.Weight        = 0.67164770597723078D;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(797.9999F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Weight    = 1.7103135246041881D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Title]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Weight    = 2.2042351969465597D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Entitled]")
     });
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Weight = 1.5987728487515451D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Availed]")
     });
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Weight = 1.3177674300063476D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Balance]")
     });
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Weight = 1.1489109872998291D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "UserId";
     table2.Name                   = "Sys_User";
     columnExpression1.Table       = table2;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "CNIC";
     columnExpression2.Table       = table2;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "CreatedAt";
     columnExpression3.Table       = table2;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "DOB";
     columnExpression4.Table       = table2;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "DateCreated";
     columnExpression5.Table       = table2;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "Deleted";
     columnExpression6.Table       = table2;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "EditedAt";
     columnExpression7.Table       = table2;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "EditedBy";
     columnExpression8.Table       = table2;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "Email";
     columnExpression9.Table       = table2;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "FirstName";
     columnExpression10.Table      = table2;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "Gender";
     columnExpression11.Table      = table2;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "IdentityId";
     columnExpression12.Table      = table2;
     column12.Expression           = columnExpression12;
     columnExpression13.ColumnName = "LastName";
     columnExpression13.Table      = table2;
     column13.Expression           = columnExpression13;
     columnExpression14.ColumnName = "Phone";
     columnExpression14.Table      = table2;
     column14.Expression           = columnExpression14;
     columnExpression15.ColumnName = "RoleID";
     columnExpression15.Table      = table2;
     column15.Expression           = columnExpression15;
     columnExpression16.ColumnName = "BranchId";
     columnExpression16.Table      = table2;
     column16.Expression           = columnExpression16;
     columnExpression17.ColumnName = "CityId";
     columnExpression17.Table      = table2;
     column17.Expression           = columnExpression17;
     columnExpression18.ColumnName = "CompanyId";
     columnExpression18.Table      = table2;
     column18.Expression           = columnExpression18;
     columnExpression19.ColumnName = "CountryId";
     columnExpression19.Table      = table2;
     column19.Expression           = columnExpression19;
     columnExpression20.ColumnName = "DepartmentId";
     columnExpression20.Table      = table2;
     column20.Expression           = columnExpression20;
     columnExpression21.ColumnName = "PayrollId";
     columnExpression21.Table      = table2;
     column21.Expression           = columnExpression21;
     columnExpression22.ColumnName = "Address";
     columnExpression22.Table      = table2;
     column22.Expression           = columnExpression22;
     columnExpression23.ColumnName = "GratuityId";
     columnExpression23.Table      = table2;
     column23.Expression           = columnExpression23;
     columnExpression24.ColumnName = "BankId";
     columnExpression24.Table      = table2;
     column24.Expression           = columnExpression24;
     columnExpression25.ColumnName = "BloodGroup";
     columnExpression25.Table      = table2;
     column25.Expression           = columnExpression25;
     columnExpression26.ColumnName = "CNICExpiry";
     columnExpression26.Table      = table2;
     column26.Expression           = columnExpression26;
     columnExpression27.ColumnName = "CostCenterId";
     columnExpression27.Table      = table2;
     column27.Expression           = columnExpression27;
     columnExpression28.ColumnName = "FatherName";
     columnExpression28.Table      = table2;
     column28.Expression           = columnExpression28;
     columnExpression29.ColumnName = "MasterPayrollId";
     columnExpression29.Table      = table2;
     column29.Expression           = columnExpression29;
     columnExpression30.ColumnName = "PfPaymentId";
     columnExpression30.Table      = table2;
     column30.Expression           = columnExpression30;
     columnExpression31.ColumnName = "GroupId";
     columnExpression31.Table      = table2;
     column31.Expression           = columnExpression31;
     columnExpression32.ColumnName = "HomePhone";
     columnExpression32.Table      = table2;
     column32.Expression           = columnExpression32;
     columnExpression33.ColumnName = "UserSalaryId";
     columnExpression33.Table      = table2;
     column33.Expression           = columnExpression33;
     columnExpression34.ColumnName = "MaritalStatus";
     columnExpression34.Table      = table2;
     column34.Expression           = columnExpression34;
     columnExpression35.ColumnName = "POB";
     columnExpression35.Table      = table2;
     column35.Expression           = columnExpression35;
     columnExpression36.ColumnName = "PermanentAddress";
     columnExpression36.Table      = table2;
     column36.Expression           = columnExpression36;
     columnExpression37.ColumnName = "ReligionId";
     columnExpression37.Table      = table2;
     column37.Expression           = columnExpression37;
     columnExpression38.ColumnName = "UserCompanyId";
     columnExpression38.Table      = table2;
     column38.Expression           = columnExpression38;
     columnExpression39.ColumnName = "PhotoFilePath";
     columnExpression39.Table      = table2;
     column39.Expression           = columnExpression39;
     columnExpression40.ColumnName = "UserPhotoId";
     columnExpression40.Table      = table2;
     column40.Expression           = columnExpression40;
     columnExpression41.ColumnName = "BloggerProfile";
     columnExpression41.Table      = table2;
     column41.Expression           = columnExpression41;
     columnExpression42.ColumnName = "FacebookUrl";
     columnExpression42.Table      = table2;
     column42.Expression           = columnExpression42;
     columnExpression43.ColumnName = "GooglePlusUrl";
     columnExpression43.Table      = table2;
     column43.Expression           = columnExpression43;
     columnExpression44.ColumnName = "InstagramUrl";
     columnExpression44.Table      = table2;
     column44.Expression           = columnExpression44;
     columnExpression45.ColumnName = "LinkedinUrl";
     columnExpression45.Table      = table2;
     column45.Expression           = columnExpression45;
     columnExpression46.ColumnName = "PinterestUrl";
     columnExpression46.Table      = table2;
     column46.Expression           = columnExpression46;
     columnExpression47.ColumnName = "TwitterUrl";
     columnExpression47.Table      = table2;
     column47.Expression           = columnExpression47;
     columnExpression48.ColumnName = "YoutubeUrl";
     columnExpression48.Table      = table2;
     column48.Expression           = columnExpression48;
     columnExpression49.ColumnName = "FullName";
     columnExpression49.Table      = table2;
     column49.Expression           = columnExpression49;
     columnExpression50.ColumnName = "SectionId";
     columnExpression50.Table      = table2;
     column50.Expression           = columnExpression50;
     columnExpression51.ColumnName = "UserLevel";
     columnExpression51.Table      = table2;
     column51.Expression           = columnExpression51;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Columns.Add(column12);
     selectQuery1.Columns.Add(column13);
     selectQuery1.Columns.Add(column14);
     selectQuery1.Columns.Add(column15);
     selectQuery1.Columns.Add(column16);
     selectQuery1.Columns.Add(column17);
     selectQuery1.Columns.Add(column18);
     selectQuery1.Columns.Add(column19);
     selectQuery1.Columns.Add(column20);
     selectQuery1.Columns.Add(column21);
     selectQuery1.Columns.Add(column22);
     selectQuery1.Columns.Add(column23);
     selectQuery1.Columns.Add(column24);
     selectQuery1.Columns.Add(column25);
     selectQuery1.Columns.Add(column26);
     selectQuery1.Columns.Add(column27);
     selectQuery1.Columns.Add(column28);
     selectQuery1.Columns.Add(column29);
     selectQuery1.Columns.Add(column30);
     selectQuery1.Columns.Add(column31);
     selectQuery1.Columns.Add(column32);
     selectQuery1.Columns.Add(column33);
     selectQuery1.Columns.Add(column34);
     selectQuery1.Columns.Add(column35);
     selectQuery1.Columns.Add(column36);
     selectQuery1.Columns.Add(column37);
     selectQuery1.Columns.Add(column38);
     selectQuery1.Columns.Add(column39);
     selectQuery1.Columns.Add(column40);
     selectQuery1.Columns.Add(column41);
     selectQuery1.Columns.Add(column42);
     selectQuery1.Columns.Add(column43);
     selectQuery1.Columns.Add(column44);
     selectQuery1.Columns.Add(column45);
     selectQuery1.Columns.Add(column46);
     selectQuery1.Columns.Add(column47);
     selectQuery1.Columns.Add(column48);
     selectQuery1.Columns.Add(column49);
     selectQuery1.Columns.Add(column50);
     selectQuery1.Columns.Add(column51);
     selectQuery1.MetaSerializable = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"904\" />";
     selectQuery1.Name             = "Sys_User";
     selectQuery1.Tables.Add(table2);
     storedProcQuery1.MetaSerializable = "<Meta X=\"140\" Y=\"20\" Width=\"100\" Height=\"173\" />";
     storedProcQuery1.Name             = "sp_LeaveHistory";
     queryParameter1.Name  = "@fromdate";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?startdate", typeof(System.DateTime));
     queryParameter2.Name  = "@todate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?endDate", typeof(System.DateTime));
     queryParameter3.Name  = "@companyid";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter4.Name  = "@countryid";
     queryParameter4.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter5.Name  = "@branchid";
     queryParameter5.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     queryParameter6.Name  = "@cityid";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("?Null", typeof(long));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.StoredProcName = "sp_LeaveHistory";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         storedProcQuery1
     });
     masterDetailInfo1.DetailQueryName   = "sp_LeaveHistory";
     relationColumnInfo1.NestedKeyColumn = "UserId";
     relationColumnInfo1.ParentKeyColumn = "UserId";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName = "Sys_User";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Test
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Sys_User";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(10, 26, 100, 100);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.startdate,
         this.endDate,
         this.Null
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 public void GetPriority(Type type, int?expectedPriority)
 {
     Assert.AreEqual(expectedPriority, FormattingRule.GetPriority(type));
 }
예제 #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5                 = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3                 = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel4                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.groupFooterBand1         = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupData3               = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1          = new DevExpress.XtraReports.UI.FormattingRule();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrTable5                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26            = new DevExpress.XtraReports.UI.XRTableCell();
     this.objectDataSource1        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5
     });
     this.Detail.HeightF       = 24.99999F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "RentalPrice")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(531.6667F, 0F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(118.3333F, 23F);
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AgeRestriction")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(422.5F, 1.999995F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(109.1667F, 23F);
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateCreated")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(155.8333F, 0F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(174.1667F, 23F);
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Genre.Name")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(330F, 1.999995F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(92.5F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Title")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(155.8333F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3
     });
     this.TopMargin.HeightF       = 130F;
     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.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 104F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(650F, 26.00001F);
     this.xrLabel1.StyleName                      = "Title";
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Videos Added Report";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.xrLabel3.Font          = new System.Drawing.Font("Baskerville Old Face", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 12.5F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(650F, 80F);
     this.xrLabel3.StyleName     = "Title";
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "Mr E Online";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.BottomMargin.HeightF       = 69.16666F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.Font                           = new System.Drawing.Font("Tahoma", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(201.6667F, 43.16666F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(252.5F, 26F);
     this.xrLabel4.StyleName                      = "Title";
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     xrSummary1.Func             = DevExpress.XtraReports.UI.SummaryFunc.Custom;
     this.xrLabel4.Summary       = xrSummary1;
     this.xrLabel4.Text          = "© Mr. E Online Rental.";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
     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(315F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(330F, 5F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(315F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // groupFooterBand1
     //
     this.groupFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2
     });
     this.groupFooterBand1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
     this.groupFooterBand1.HeightF    = 6F;
     this.groupFooterBand1.Name       = "groupFooterBand1";
     //
     // xrLabel2
     //
     this.xrLabel2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                     = "xrLabel2";
     this.xrLabel2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                    = new System.Drawing.SizeF(650F, 2.08F);
     this.xrLabel2.StyleName                = "GroupCaption3";
     this.xrLabel2.StylePriority.UseBorders = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(137)))), ((int)(((byte)(137)))), ((int)(((byte)(137)))));
     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)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupData3
     //
     this.GroupData3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(137)))), ((int)(((byte)(137)))), ((int)(((byte)(137)))));
     this.GroupData3.BorderColor   = System.Drawing.Color.White;
     this.GroupData3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupData3.BorderWidth   = 2F;
     this.GroupData3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupData3.ForeColor     = System.Drawing.Color.White;
     this.GroupData3.Name          = "GroupData3";
     this.GroupData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name = "xrControlStyle1";
     //
     // formattingRule1
     //
     this.formattingRule1.DataMember = "Video";
     this.formattingRule1.Name       = "formattingRule1";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable5
     });
     this.reportHeaderBand1.HeightF = 25F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrTable5
     //
     this.xrTable5.Font          = new System.Drawing.Font("Times New Roman", 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.xrTableRow6
     });
     this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable5.StylePriority.UseFont = false;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell24,
         this.xrTableCell25,
         this.xrTableCell26
     });
     this.xrTableRow6.Name   = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Title";
     this.xrTableCell2.Weight = 1.558333282470703D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Date Created";
     this.xrTableCell3.Weight = 1.7416667175292968D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Name   = "xrTableCell24";
     this.xrTableCell24.Text   = "Genre";
     this.xrTableCell24.Weight = 0.92499999999999982D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name   = "xrTableCell25";
     this.xrTableCell25.Text   = "Age Restriction";
     this.xrTableCell25.Weight = 1.0916668701171874D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Name   = "xrTableCell26";
     this.xrTableCell26.Text   = "Rental Price(R)";
     this.xrTableCell26.Weight = 1.1833331298828123D;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(MrE.Models.Entities.Video);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // VideosAdded
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupFooterBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins   = new System.Drawing.Printing.Margins(100, 100, 130, 69);
     this.PageColor = System.Drawing.Color.Transparent;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.GroupCaption3,
         this.GroupData3,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo,
         this.xrControlStyle1
     });
     this.Version      = "17.1";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.VideosAdded_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }