public void WhenTheReportEngineRuns()
        {
            _newReport = _controller.Print(r => r.ExportToMemory());

            _newChangeMeLabel = (XRLabel)_newReport.Bands[0].Controls[_changeMeLabel.Name];
            _newDontChangeMeLabel = (XRLabel) _newReport.Bands[0].Controls[_dontChangeMeLabel.Name];
        }
 private static XRLabel CreateLabel(int fWidth, int incShift, int Y = 0)
 {
     XRLabel labeld = new XRLabel();
     labeld.Location = new Point(incShift, Y);
     labeld.Size = new Size(fWidth, 20);
     return labeld;
 }
        public void Should_cast_correctly_when_single_action_of_one_type()
        {
            var label = new XRLabel() {Text = "uncoverted"};
            var action = ReportControlAction<XRLabel>.WithNoPredicate(l => l.Text = "Converted");
            var facade = new ReportControlActionFacade(action);
            facade.AttemptActionsOnControl(label);

            label.Text.Should().Be("Converted");
        }
        public void Should_cast_correctly_when_multiple_actions_of_multiple_types()
        {
            var label = new XRLabel() { Text = "uncoverted" };
            var action = ReportControlAction<XRLabel>.WithNoPredicate(l => l.Text = "Converted");
            var action2 = ReportControlAction<XRLine>.WithNoPredicate(l => l.ForeColor = Color.Gold);
            var facade = new ReportControlActionFacade(action,action2);
            facade.AttemptActionsOnControl(label);

            label.Text.Should().Be("Converted");
        }
        public void Init()
        {
            beforeLabel = new XRLabel() { ForeColor = Color.Red, BackColor = Color.White, BorderColor = Color.Blue };
            afterLabel = new XRLabel() { ForeColor = Color.Green, BackColor = Color.Gold, BorderColor = Color.Yellow };

            config = new ColorReplaceActionConfiguration();
            config.ColorReplaceDefinitions.Add(new ColorReplaceDefinition(ColorLocation.ForeColor, beforeLabel.ForeColor, afterLabel.ForeColor));
            config.ColorReplaceDefinitions.Add(new ColorReplaceDefinition(ColorLocation.BackColor, beforeLabel.BackColor, afterLabel.BackColor));
            config.ColorReplaceDefinitions.Add(new ColorReplaceDefinition(ColorLocation.BorderColor, beforeLabel.BorderColor, afterLabel.BorderColor));
        }
Example #6
0
 public static void ApplyCaptionCellFormat(XRLabel cell, DateTime time)
 {
     cell.Font = dayCellFont;
     cell.TextAlignment = TextAlignment.MiddleJustify;
     cell.BackColor = Color.Silver;
     cell.BorderWidth = 1;
     //cell.Borders = BorderSide.Bottom | BorderSide.Left   | BorderSide.Top;
     cell.WordWrap = true;
     cell.Multiline = true;
     cell.Text = string.Format("{0:HH:mm}\n{1:HH:mm}", time, time.AddHours(1d));
     cell.Angle = 90;
 }
Example #7
0
 public void AddLabel(List<string> bindingMember, Rectangle bounds)
 {
     foreach (var item in bindingMember)
     {
     XRLabel label = new XRLabel();
     Detail.Controls.Add(label);
     label.Location = bounds.Location;
     label.Size = bounds.Size;
     label.Borders = DevExpress.XtraPrinting.BorderSide.All;
     label.Text = item;
     bounds.Y += 23;
     }
 }
Example #8
0
        public XtraReport CreateDataGroupingReport()
        {
            // Create a report, and bind it to a data source.
            XtraReport report = new XtraReport();
            DataSet1 ds = new DataSet1();
            new DataSet1TableAdapters.OrdersTableAdapter().Fill(ds.Orders);
            report.DataSource = ds;
            report.DataMember = "Orders";

            // Create a detail band and add it to the report.
            DetailBand detailBand = new DetailBand();
            detailBand.Height = 20;
            report.Bands.Add(detailBand);

            // Create a group header band and add it to the report.
            GroupHeaderBand ghBand = new GroupHeaderBand();
            ghBand.Height = 20;
            report.Bands.Add(ghBand);

            // Create a calculated field, and add it to the report's collection
            CalculatedField calcField = new CalculatedField(report.DataSource, report.DataMember);
            report.CalculatedFields.Add(calcField);

            // Define its name, field type and expression.
            // Note that numerous built-in date-time functions are supported.
            calcField.Name = "dayOfWeek";
            calcField.FieldType = FieldType.None;
            calcField.Expression = "GetDayOfWeek([OrderDate])";

            // Define the calculated field as 
            // a grouping criteria for the group header band.
            GroupField groupField = new GroupField();
            groupField.FieldName = "dayOfWeek";
            ghBand.GroupFields.Add(groupField);

            // Create two data-bound labels, and add them to 
            // the corresponding bands.
            XRLabel ghLabel = new XRLabel();
            ghLabel.DataBindings.Add("Text", report.DataSource, "OrderDate", "{0:dddd}");
            ghLabel.BackColor = Color.Red;
            ghBand.Controls.Add(ghLabel);

            XRLabel detailLabel = new XRLabel();
            detailLabel.DataBindings.Add("Text", report.DataSource, "OrderDate", "{0:MM/dd/yyyy}");
            detailLabel.ProcessDuplicates = ValueSuppressType.Suppress;
            detailBand.Controls.Add(detailLabel);

            return report;
        }
        public void Should_only_apply_action_when_predicate_is_satisfied()
        {
            const string transformText = "Jeremiah";
            var action = new ReportControlAction<XRLabel>((l) => l.Text != string.Empty, (l) => l.Text = transformText);

            var facade = new ReportControlActionFacade(action);

            var label1 = new XRLabel { Text = string.Empty };
            var label2 = new XRLabel { Text = "ChangeMe" };

            facade.AttemptActionsOnControl(label1);
            facade.AttemptActionsOnControl(label2);

            Assert.AreNotEqual(transformText, label1.Text);
            Assert.AreEqual(transformText, label2.Text);
        }
Example #10
0
        public static XRLabel AddLabelLine(XRControl container, string text, Color color, int yPosition, bool canGrow)
        {
            XRLabel label = new XRLabel();
            container.Controls.Add(label);
            label.Size = new Size(container.Width, 16);
            label.BorderColor = Color.Transparent;
            label.Borders = BorderSide.None;
            label.Location = new Point(0, yPosition);
            label.CanGrow = false;
            label.Dock = XRDockStyle.Top;
            label.Font = container.Font;
            label.Text = text;
            label.ForeColor = color;

            return label;
        }
        public void predicate_prevents_applying_action()
        {
            const string transformText = "Jeremiah";
            var action = new ReportRuntimeAction<XRLabel>((l) => l.Text != string.Empty, (l) => l.Text = transformText);

            var label1 = new XRLabel { Text = string.Empty };
            var label2 = new XRLabel { Text = "ChangeMe" };

            var report = new ReportFactory().GetNewReport();
            report.Bands[0].Controls.Add(label1);
            report.Bands[0].Controls.Add(label2);

            new XRReportController(report, new XRRuntimeActionFacade(action)).Print(r => r.ExportToMemory());

            Assert.AreNotEqual(transformText, label1.Text);
            Assert.AreEqual(transformText, label2.Text);
        }
Example #12
0
 private void InitializeComponent()
 {
     this.dtl = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ph = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // dtl
     //
     this.dtl.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.dtl.Height = 744;
     this.dtl.Name = "dtl";
     this.dtl.ParentStyleUsing.UseFont = false;
     //
     // xrTable1
     //
     this.xrTable1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Location = new System.Drawing.Point(17, 17);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.ParentStyleUsing.UseBackColor = false;
     this.xrTable1.ParentStyleUsing.UseBorderColor = false;
     this.xrTable1.ParentStyleUsing.UseBorders = false;
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1,
     this.xrTableRow2,
     this.xrTableRow3,
     this.xrTableRow4,
     this.xrTableRow6,
     this.xrTableRow5});
     this.xrTable1.Size = new System.Drawing.Size(758, 727);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell1,
     this.xrTableCell2});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Size = new System.Drawing.Size(758, 30);
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell1.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.ParentStyleUsing.UseFont = false;
     this.xrTableCell1.Size = new System.Drawing.Size(379, 30);
     this.xrTableCell1.Text = "日期:";
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell2.Location = new System.Drawing.Point(379, 0);
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.ParentStyleUsing.UseFont = false;
     this.xrTableCell2.Size = new System.Drawing.Size(379, 30);
     this.xrTableCell2.Text = "時間:";
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell3});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Size = new System.Drawing.Size(758, 63);
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell3.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.ParentStyleUsing.UseFont = false;
     this.xrTableCell3.Size = new System.Drawing.Size(758, 63);
     this.xrTableCell3.Text = "播報內容:\r\n1.事故";
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell5});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Size = new System.Drawing.Size(758, 84);
     //
     // xrTableCell5
     //
     this.xrTableCell5.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell5.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.ParentStyleUsing.UseFont = false;
     this.xrTableCell5.Size = new System.Drawing.Size(758, 84);
     this.xrTableCell5.Text = "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell4});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Size = new System.Drawing.Size(758, 398);
     //
     // xrTableCell4
     //
     this.xrTableCell4.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell4.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.ParentStyleUsing.UseFont = false;
     this.xrTableCell4.Size = new System.Drawing.Size(758, 300);
     this.xrTableCell4.Text = "3.施工(國道1號 國道3號 國道4號 國道6號)";
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell7});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Size = new System.Drawing.Size(758, 76);
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell7.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.ParentStyleUsing.UseFont = false;
     this.xrTableCell7.Size = new System.Drawing.Size(758, 76);
     this.xrTableCell7.Text = "4.其他相關宣導\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell6});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Size = new System.Drawing.Size(758, 76);
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell6.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.ParentStyleUsing.UseFont = false;
     this.xrTableCell6.Size = new System.Drawing.Size(758, 76);
     this.xrTableCell6.Text = "以上路況 資訊,由高速公路局中區工程處交控中心提供,祝您行車平安。";
     //
     // ph
     //
     this.ph.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.ph.Height = 0;
     this.ph.Name = "ph";
     this.ph.ParentStyleUsing.UseFont = false;
     //
     // xlblReportHeader
     //
     this.xlblReportHeader.BackColor = System.Drawing.Color.Empty;
     this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control;
     this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblReportHeader.Location = new System.Drawing.Point(83, 42);
     this.xlblReportHeader.Name = "xlblReportHeader";
     this.xlblReportHeader.ParentStyleUsing.UseBackColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseFont = false;
     this.xlblReportHeader.ParentStyleUsing.UseForeColor = false;
     this.xlblReportHeader.Size = new System.Drawing.Size(659, 33);
     this.xlblReportHeader.Text = "交通部台灣區國道高速公路中區工程處交控中心";
     this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrLabel1.Location = new System.Drawing.Point(967, 108);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.ParentStyleUsing.UseFont = false;
     this.xrLabel1.ParentStyleUsing.UseForeColor = false;
     this.xrLabel1.Size = new System.Drawing.Size(108, 25);
     this.xrLabel1.Text = "頁次:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo
     //
     this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrPageInfo.Location = new System.Drawing.Point(1075, 108);
     this.xrPageInfo.Name = "xrPageInfo";
     this.xrPageInfo.ParentStyleUsing.UseFont = false;
     this.xrPageInfo.ParentStyleUsing.UseForeColor = false;
     this.xrPageInfo.Size = new System.Drawing.Size(50, 25);
     this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xlblTimeRange,
     this.xrPageInfo,
     this.xrLabel1,
     this.xlblMemo,
     this.xlblReportHeader});
     this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.TopMargin.Height = 142;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.ParentStyleUsing.UseFont = false;
     //
     // xlblTimeRange
     //
     this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 14F);
     this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTimeRange.Location = new System.Drawing.Point(175, 92);
     this.xlblTimeRange.Name = "xlblTimeRange";
     this.xlblTimeRange.ParentStyleUsing.UseFont = false;
     this.xlblTimeRange.ParentStyleUsing.UseForeColor = false;
     this.xlblTimeRange.Size = new System.Drawing.Size(408, 25);
     this.xlblTimeRange.Text = "         每日定時路況簡報新聞稿草稿";
     this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblMemo
     //
     this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblMemo.Location = new System.Drawing.Point(967, 83);
     this.xlblMemo.Name = "xlblMemo";
     this.xlblMemo.ParentStyleUsing.UseFont = false;
     this.xlblMemo.ParentStyleUsing.UseForeColor = false;
     this.xlblMemo.Size = new System.Drawing.Size(158, 25);
     this.xlblMemo.Text = "中區-RPT_DATA_06";
     this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // clsNewsPaper
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.dtl,
     this.ph,
     this.TopMargin});
     this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75);
     this.PageHeight = 1169;
     this.PageWidth = 827;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 public void GivenTheReportHasAnXRLabelNamedChangeMeInTheHeader()
 {
     _changeMeLabel = new XRLabel {Name = "ChangeMe"};
     _report.Bands[BandKind.ReportHeader].Controls.Add(_changeMeLabel);
 }
Example #14
0
        /// <summary>
        /// 增加一行数据
        /// </summary>
        /// <param name="rowDate"></param>
        private void addRow(List <string> rowData, CelType celType)
        {
            float newX = 12.5F;

            for (int i = 0; i < rowData.Count; i++)
            {
                string rowStr = rowData[i];
                if (i == 0)
                {
                    string[] btStrs = rowData[i].Split('_');
                    if (btStrs.Length > 1)
                    {
                        rowStr = btStrs[1];
                        if (!this.BigFz.Contains(btStrs[0]))
                        {
                            List <string> newRowData = new List <string>();
                            for (int j = 0; j < rowData.Count; j++)
                            {
                                if (j == 0)
                                {
                                    newRowData.Add(btStrs[0]);
                                }
                                else
                                {
                                    newRowData.Add("-");
                                }
                            }
                            this.addRow(newRowData, CelType.FZ);
                            this.BigFz.Add(btStrs[0]);
                        }
                    }
                }
                XRLabel label = new XRLabel();
                label           = new XRLabel();
                label.LocationF = new PointF(newX, newY);
                label.WidthF    = this.columnsWidth[i];
                label.HeightF   = this.labelHeight;
                label.Text      = rowStr;
                if (i == 0)
                {
                    label.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
                    label.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
                }
                else
                {
                    label.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                    label.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom | DevExpress.XtraPrinting.BorderSide.Left;
                }
                if (celType == CelType.FZ)
                {
                    label.Font = new System.Drawing.Font("微软雅黑", 10F, FontStyle.Bold);
                }
                else
                {
                    label.Font = new System.Drawing.Font("微软雅黑", 10F);
                }
                this.Detail.Controls.Add(label);

                newX = newX + this.columnsWidth[i];
            }
            this.newY = this.newY + this.labelHeight;
        }
Example #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();
     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.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblTitle          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.lblCompany        = 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.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 50F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF       = 50F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.PageHeader.HeightF = 25F;
     this.PageHeader.Name    = "PageHeader";
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 0F;
     this.PageFooter.Name    = "PageFooter";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblTitle,
         this.xrLine1,
         this.lblCompany
     });
     this.ReportHeader.HeightF = 75.69444F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblTitle
     //
     this.lblTitle.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.lblTitle.BorderWidth                    = 2F;
     this.lblTitle.Font                           = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 37.5F);
     this.lblTitle.Name                           = "lblTitle";
     this.lblTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblTitle.SizeF                          = new System.Drawing.SizeF(750F, 25F);
     this.lblTitle.StylePriority.UseBorders       = false;
     this.lblTitle.StylePriority.UseBorderWidth   = false;
     this.lblTitle.StylePriority.UseFont          = false;
     this.lblTitle.StylePriority.UseTextAlignment = false;
     this.lblTitle.Text                           = "Titulo";
     this.lblTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLine1
     //
     this.xrLine1.LineWidth     = 2;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 25F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(750F, 12.5F);
     //
     // lblCompany
     //
     this.lblCompany.Borders                        = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.lblCompany.BorderWidth                    = 2F;
     this.lblCompany.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCompany.LocationFloat                  = new DevExpress.Utils.PointFloat(12.5F, 0F);
     this.lblCompany.Name                           = "lblCompany";
     this.lblCompany.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCompany.SizeF                          = new System.Drawing.SizeF(725F, 25F);
     this.lblCompany.StylePriority.UseBorders       = false;
     this.lblCompany.StylePriority.UseBorderWidth   = false;
     this.lblCompany.StylePriority.UseFont          = false;
     this.lblCompany.StylePriority.UseTextAlignment = false;
     this.lblCompany.Text                           = "Compañia";
     this.lblCompany.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(400F, 25F);
     this.xrTable1.StylePriority.UsePadding = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[TipoUsuarioCod]")
     });
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "xrTableCell1";
     this.xrTableCell1.Weight = 0.75000003814697269D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[TipoUsuarioDes]")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 1.5000000381469727D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[EstadoDes]")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "xrTableCell3";
     this.xrTableCell3.Weight = 0.74999992370605473D;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.Silver;
     this.xrTable2.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth   = 2F;
     this.xrTable2.Font          = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold, 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(2, 0, 0, 0, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(750F, 25F);
     this.xrTable2.StylePriority.UseBackColor     = 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.MiddleLeft;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Text   = "Código";
     this.xrTableCell4.Weight = 0.75000003814697269D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Descripción";
     this.xrTableCell5.Weight = 1.5000000381469727D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders = false;
     this.xrTableCell6.Text   = "Estado";
     this.xrTableCell6.Weight = 3.3749999237060546D;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Seguridad.Models.VM.clsTipoUsuarioVM);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // xrLine2
     //
     this.xrLine2.LineWidth     = 2;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(750F, 12.5F);
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(650F, 12.5F);
     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.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo1.TextFormatString = "Página {0}/{1}";
     //
     // rptTipoUsuario
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter,
         this.ReportHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource   = this.objectDataSource1;
     this.Font         = new System.Drawing.Font("Arial Narrow", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins      = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.SnappingMode = ((DevExpress.XtraReports.UI.SnappingMode)((DevExpress.XtraReports.UI.SnappingMode.SnapLines | DevExpress.XtraReports.UI.SnappingMode.SnapToGrid)));
     this.Version      = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #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 = "Header.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.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
         this.lbTenCongTy = new DevExpress.XtraReports.UI.XRLabel();
         this.paramFromDate = new DevExpress.XtraReports.Parameters.Parameter();
         this.paramToDate = new DevExpress.XtraReports.Parameters.Parameter();
         this.dsBO1 = new dsBO();
         this.bO_GetByIdTableAdapter1 = new dsBOTableAdapters.BO_GetByIdTableAdapter();
         ((System.ComponentModel.ISupportInitialize)(this.dsBO1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.HeightF = 0F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 0F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 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.xrLabel10,
         this.xrPictureBox3,
         this.xrLabel1,
         this.xrPictureBox1,
         this.xrPictureBox2,
         this.xrLabel12,
         this.lbTenCongTy});
         this.ReportHeader.HeightF = 94.58342F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrLabel10
         //
         this.xrLabel10.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(552.7499F, 60.66673F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(112.4999F, 23F);
         this.xrLabel10.StylePriority.UseFont = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "0936.747478";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox3
         //
         this.xrPictureBox3.ImageUrl = "~\\img\\tải xuống.png";
         this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(528.75F, 59.66674F);
         this.xrPictureBox3.Name = "xrPictureBox3";
         this.xrPictureBox3.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Tahoma", 11F);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(309.75F, 60.66675F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(200F, 23F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "08.38779922 / 08.38779955";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox1
         //
         this.xrPictureBox1.ImageUrl = "~\\img\\083363-high-resolution-dark-blue-denim-jeans-icon-business-phone-clear.png";
         this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(279.7499F, 56.29178F);
         this.xrPictureBox1.Name = "xrPictureBox1";
         this.xrPictureBox1.SizeF = new System.Drawing.SizeF(30F, 30F);
         this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrPictureBox2
         //
         this.xrPictureBox2.ImageUrl = "~\\img\\logo.gif";
         this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrPictureBox2.Name = "xrPictureBox2";
         this.xrPictureBox2.SizeF = new System.Drawing.SizeF(165.6251F, 86.29177F);
         this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
         //
         // xrLabel12
         //
         this.xrLabel12.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
         this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "BO_GetById.CompanyAddress")});
         this.xrLabel12.Font = new System.Drawing.Font("MS Reference Sans Serif", 11F);
         this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(165.6251F, 28.41667F);
         this.xrLabel12.Name = "xrLabel12";
         this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel12.SizeF = new System.Drawing.SizeF(569.3749F, 26F);
         this.xrLabel12.StylePriority.UseBorderDashStyle = false;
         this.xrLabel12.StylePriority.UseBorders = false;
         this.xrLabel12.StylePriority.UseFont = false;
         this.xrLabel12.StylePriority.UseTextAlignment = false;
         this.xrLabel12.Text = "xrLabel12";
         this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // lbTenCongTy
         //
         this.lbTenCongTy.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
         this.lbTenCongTy.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.lbTenCongTy.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "BO_GetById.CompanyName")});
         this.lbTenCongTy.Font = new System.Drawing.Font("MS Reference Sans Serif", 11F, System.Drawing.FontStyle.Bold);
         this.lbTenCongTy.LocationFloat = new DevExpress.Utils.PointFloat(165.6251F, 0F);
         this.lbTenCongTy.Name = "lbTenCongTy";
         this.lbTenCongTy.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.lbTenCongTy.SizeF = new System.Drawing.SizeF(569.3749F, 28.41667F);
         this.lbTenCongTy.StylePriority.UseBorderDashStyle = false;
         this.lbTenCongTy.StylePriority.UseBorders = false;
         this.lbTenCongTy.StylePriority.UseFont = false;
         this.lbTenCongTy.StylePriority.UseTextAlignment = false;
         this.lbTenCongTy.Text = "[sale_InvoiceToPrint.CompanyName]";
         this.lbTenCongTy.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // paramFromDate
         //
         this.paramFromDate.Name = "paramFromDate";
         this.paramFromDate.Type = typeof(System.DateTime);
         this.paramFromDate.ValueInfo = "2011-11-21";
         //
         // paramToDate
         //
         this.paramToDate.Name = "paramToDate";
         this.paramToDate.Type = typeof(System.DateTime);
         this.paramToDate.ValueInfo = "2011-11-21";
         //
         // dsBO1
         //
         this.dsBO1.DataSetName = "dsBO";
         this.dsBO1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // bO_GetByIdTableAdapter1
         //
         this.bO_GetByIdTableAdapter1.ClearBeforeFill = true;
         //
         // Header
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader});
         this.DataAdapter = this.bO_GetByIdTableAdapter1;
         this.DataMember = "BO_GetById";
         this.DataSource = this.dsBO1;
         this.Margins = new System.Drawing.Printing.Margins(66, 49, 0, 0);
         this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramFromDate,
         this.paramToDate});
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this.dsBO1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #17
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "sub_Quatrinh_Daotao.resx";

        this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2        = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2     = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_TU_NGAY     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_DEN_NGAY    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_LOAI_HT     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_CHUYENNGANH = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_HT_DT       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_TRUONG_DT   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_NUOC_DT     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_TRINHDO_TN  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_LOAI_CC     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_NGUON_KP    = 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.xrLabel47       = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader      = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10   = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter    = new DevExpress.XtraReports.UI.ReportFooterBand();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F);
        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(699.1664F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_TU_NGAY,
            this.xrt_DEN_NGAY,
            this.xrt_LOAI_HT,
            this.xrt_CHUYENNGANH,
            this.xrt_HT_DT,
            this.xrt_TRUONG_DT,
            this.xrt_NUOC_DT,
            this.xrt_TRINHDO_TN,
            this.xrt_LOAI_CC,
            this.xrt_NGUON_KP
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_TU_NGAY
        //
        this.xrt_TU_NGAY.Name   = "xrt_TU_NGAY";
        this.xrt_TU_NGAY.Weight = 0.24999996965038096D;
        //
        // xrt_DEN_NGAY
        //
        this.xrt_DEN_NGAY.Name   = "xrt_DEN_NGAY";
        this.xrt_DEN_NGAY.Weight = 0.24519219742387305D;
        //
        // xrt_LOAI_HT
        //
        this.xrt_LOAI_HT.Name   = "xrt_LOAI_HT";
        this.xrt_LOAI_HT.Weight = 0.23557684443265056D;
        //
        // xrt_CHUYENNGANH
        //
        this.xrt_CHUYENNGANH.Name   = "xrt_CHUYENNGANH";
        this.xrt_CHUYENNGANH.Weight = 0.51827055743896433D;
        //
        // xrt_HT_DT
        //
        this.xrt_HT_DT.Name   = "xrt_HT_DT";
        this.xrt_HT_DT.Weight = 0.27692252092228287D;
        //
        // xrt_TRUONG_DT
        //
        this.xrt_TRUONG_DT.Name   = "xrt_TRUONG_DT";
        this.xrt_TRUONG_DT.Weight = 0.67211530362784333D;
        //
        // xrt_NUOC_DT
        //
        this.xrt_NUOC_DT.Name   = "xrt_NUOC_DT";
        this.xrt_NUOC_DT.Weight = 0.35288441129988618D;
        //
        // xrt_TRINHDO_TN
        //
        this.xrt_TRINHDO_TN.Name   = "xrt_TRINHDO_TN";
        this.xrt_TRINHDO_TN.Weight = 0.22932664141117032D;
        //
        // xrt_LOAI_CC
        //
        this.xrt_LOAI_CC.Name   = "xrt_LOAI_CC";
        this.xrt_LOAI_CC.Weight = 0.19639414045390322D;
        //
        // xrt_NGUON_KP
        //
        this.xrt_NGUON_KP.Name   = "xrt_NGUON_KP";
        this.xrt_NGUON_KP.Weight = 0.25023929898116437D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 36F;
        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       = 39F;
        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.xrLabel47
        });
        this.ReportHeader.HeightF = 23F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrLabel47
        //
        this.xrLabel47.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel47.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel47.Name                           = "xrLabel47";
        this.xrLabel47.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel47.SizeF                          = new System.Drawing.SizeF(699.1664F, 23F);
        this.xrLabel47.StylePriority.UseFont          = false;
        this.xrLabel47.StylePriority.UseTextAlignment = false;
        this.xrLabel47.Text                           = "72. Quá trình đào tạo, bồi dưỡng: ";
        this.xrLabel47.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.PageHeader.HeightF = 88.00001F;
        this.PageHeader.Name    = "PageHeader";
        this.PageHeader.StylePriority.UseFont = false;
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(699.1664F, 88.00001F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell3,
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Từ ngày";
        this.xrTableCell1.Weight = 0.24999996959293674D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Đến ngày";
        this.xrTableCell2.Weight = 0.24519221503016941D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Loại hình kiến thức";
        this.xrTableCell4.Weight = 0.23557686203894557D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Tên chuyên ngành ĐT -BD";
        this.xrTableCell3.Weight = 0.51827053514605947D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Hình thức đào tạo, bồi dưỡng";
        this.xrTableCell5.Weight = 0.27692255613487526D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Tên trường đào tạo";
        this.xrTableCell6.Weight = 0.67211527075855559D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Nước đào tạo";
        this.xrTableCell7.Weight = 0.35288447548993584D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Trình độ tốt nghiệp";
        this.xrTableCell8.Weight = 0.22932666889212514D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name   = "xrTableCell9";
        this.xrTableCell9.Text   = "Loại văn bằng, chứng chỉ";
        this.xrTableCell9.Weight = 0.1963941583227567D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name   = "xrTableCell10";
        this.xrTableCell10.Text   = "Nguồn kinh phí";
        this.xrTableCell10.Weight = 0.25023963646227793D;
        //
        // ReportFooter
        //
        this.ReportFooter.HeightF = 39F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // sub_Quatrinh_Daotao
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter
        });
        this.Margins = new System.Drawing.Printing.Margins(70, 78, 36, 39);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "Att_AbsentReport.resx";

        this.Detail             = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell19      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9       = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin          = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin       = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1       = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable1           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6       = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageFooter         = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo2        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo1        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.attendanceDataSet1 = new AttendanceDataSet();
        this.sp_Att_ScheduleDescription_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_ScheduleDescription_ReportTableAdapter();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
        this.xrCompAddress = new DevExpress.XtraReports.UI.XRLabel();
        this.xrTitle       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrCompName    = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.sp_Att_AttendanceRegister_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_AttendanceRegister_ReportTableAdapter();
        this.GroupFooter1  = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrTable5      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow5   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 16.66667F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Verdana", 8F);
        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(647.0626F, 16.66667F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell19,
            this.xrTableCell8,
            this.xrTableCell12,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell9
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1;
        //
        // xrTableCell19
        //
        this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Att_Date")
        });
        this.xrTableCell19.Name         = "xrTableCell19";
        this.xrTableCell19.Text         = "xrTableCell19";
        this.xrTableCell19.Weight       = 0.9395317810340722;
        this.xrTableCell19.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell19_BeforePrint);
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Shift_Name")
        });
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "xrTableCell8";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell8.Weight        = 1.5500510512363213;
        //
        // xrTableCell12
        //
        this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OnDuty_Time")
        });
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell12.Weight        = 1.0289617205900323;
        //
        // xrTableCell10
        //
        this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OffDuty_Time")
        });
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "xrTableCell10";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell10.Weight        = 1.1562497788476174;
        this.xrTableCell10.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell10_BeforePrint);
        //
        // xrTableCell11
        //
        this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.In_Time")
        });
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "xrTableCell11";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell11.Weight        = 0.82520478134073172;
        this.xrTableCell11.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell11_BeforePrint);
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Out_Time")
        });
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "xrTableCell9";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell9.Weight        = 0.97062725190557164;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 0F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 0F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 15.41665F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(647.0627F, 14.99999F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell1,
            this.xrTableCell5,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell6
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Date";
        this.xrTableCell7.Weight = 0.81705725213459512;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Shift Name";
        this.xrTableCell1.Weight = 1.3479910369971919;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "On Duty Time";
        this.xrTableCell5.Weight = 0.89482963619939626;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Off Duty Time";
        this.xrTableCell2.Weight = 1.0055244001735313;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "In Time";
        this.xrTableCell4.Weight = 0.71763349183756242;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Out Time";
        this.xrTableCell6.Weight = 0.84409929257340988;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 23.95833F;
        this.PageFooter.Name    = "PageFooter";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPageInfo2.Format                         = "Page{0}";
        this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(351.8545F, 0F);
        this.xrPageInfo2.Name                           = "xrPageInfo2";
        this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(295.2082F, 23F);
        this.xrPageInfo2.StylePriority.UseBorders       = false;
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPageInfo1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPageInfo1.Name                     = "xrPageInfo1";
        this.xrPageInfo1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo                 = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF                    = new System.Drawing.SizeF(344.7917F, 23F);
        this.xrPageInfo1.StylePriority.UseBorders = false;
        //
        // attendanceDataSet1
        //
        this.attendanceDataSet1.DataSetName             = "AttendanceDataSet";
        this.attendanceDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // sp_Att_ScheduleDescription_ReportTableAdapter1
        //
        this.sp_Att_ScheduleDescription_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.ReportHeader.HeightF = 79.16666F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrPanel1
        //
        this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrCompAddress,
            this.xrTitle,
            this.xrPictureBox1,
            this.xrCompName
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 4.166664F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(647.0626F, 75F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrCompAddress
        //
        this.xrCompAddress.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompAddress.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompAddress.LocationFloat            = new DevExpress.Utils.PointFloat(2F, 28F);
        this.xrCompAddress.Name                     = "xrCompAddress";
        this.xrCompAddress.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompAddress.SizeF                    = new System.Drawing.SizeF(353.125F, 22.04167F);
        this.xrCompAddress.StylePriority.UseBorders = false;
        this.xrCompAddress.StylePriority.UseFont    = false;
        this.xrCompAddress.Text                     = "xrCompAddress";
        //
        // xrTitle
        //
        this.xrTitle.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTitle.Font                           = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(100F, 53F);
        this.xrTitle.Name                           = "xrTitle";
        this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTitle.SizeF                          = new System.Drawing.SizeF(450.1771F, 16F);
        this.xrTitle.StylePriority.UseBorders       = false;
        this.xrTitle.StylePriority.UseFont          = false;
        this.xrTitle.StylePriority.UseTextAlignment = false;
        this.xrTitle.Text                           = "xrTitle";
        this.xrTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(548F, 2F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(97.06268F, 45.04167F);
        this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrCompName
        //
        this.xrCompName.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompName.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompName.LocationFloat            = new DevExpress.Utils.PointFloat(2F, 3F);
        this.xrCompName.Name                     = "xrCompName";
        this.xrCompName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompName.SizeF                    = new System.Drawing.SizeF(353.125F, 23F);
        this.xrCompName.StylePriority.UseBorders = false;
        this.xrCompName.StylePriority.UseFont    = false;
        this.xrCompName.Text                     = "xrCompName";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 15.625F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // sp_Att_AttendanceRegister_ReportTableAdapter1
        //
        this.sp_Att_AttendanceRegister_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable5
        });
        this.GroupFooter1.HeightF = 16.04166F;
        this.GroupFooter1.Name    = "GroupFooter1";
        //
        // xrTable5
        //
        this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable5.Font          = new System.Drawing.Font("Times New Roman", 8F);
        this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable5.Name          = "xrTable5";
        this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow5
        });
        this.xrTable5.SizeF = new System.Drawing.SizeF(647.0627F, 16.04166F);
        this.xrTable5.StylePriority.UseBorders = false;
        this.xrTable5.StylePriority.UseFont    = false;
        //
        // xrTableRow5
        //
        this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell3,
            this.xrTableCell20
        });
        this.xrTableRow5.Name   = "xrTableRow5";
        this.xrTableRow5.Weight = 1;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont          = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Absent Count   :        ";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        this.xrTableCell3.Weight        = 5.5016664018714039;
        //
        // xrTableCell20
        //
        this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTableCell20.Name = "xrTableCell20";
        this.xrTableCell20.StylePriority.UseFont          = false;
        this.xrTableCell20.StylePriority.UseTextAlignment = false;
        this.xrTableCell20.Text          = "xrTableCell19";
        this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell20.Weight        = 0.96896051031240515;
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(647.0626F, 14.99999F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18,
            this.xrTableCell15
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "ID";
        this.xrTableCell13.Weight = 0.38541674098505574;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = ":";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell14.Weight        = 0.24999996454642004;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell16.Name   = "xrTableCell16";
        this.xrTableCell16.Text   = "xrTableCell16";
        this.xrTableCell16.Weight = 0.74999999485807312;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = "Name";
        this.xrTableCell17.Weight = 0.52388153149627958;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell18.Name = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text          = ":";
        this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell18.Weight        = 0.29471496900340644;
        //
        // xrTableCell15
        //
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Name")
        });
        this.xrTableCell15.Name   = "xrTableCell15";
        this.xrTableCell15.Text   = "xrTableCell15";
        this.xrTableCell15.Weight = 4.2666131719120637;
        //
        // Att_AbsentReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.PageFooter,
            this.ReportHeader,
            this.GroupHeader2,
            this.GroupFooter1
        });
        this.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                               | DevExpress.XtraPrinting.BorderSide.Right)
                                                              | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.DataAdapter = this.sp_Att_AttendanceRegister_ReportTableAdapter1;
        this.DataMember  = "sp_Att_AttendanceRegister_Report";
        this.DataSource  = this.attendanceDataSet1;
        this.Font        = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins     = new System.Drawing.Printing.Margins(100, 72, 0, 0);
        this.Version     = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "XRPrintInvoice.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GrandTotal = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuplicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.SPName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.PaymentType = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvDate = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvoiceNumber = new DevExpress.XtraReports.Parameters.Parameter();
     this.InvoiceId = new DevExpress.XtraReports.Parameters.Parameter();
     this.AmmountDue = new DevExpress.XtraReports.Parameters.Parameter();
     this.DueAmmount = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.TotalPaid = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.dsPrintInvoice1 = new DsPrintInvoice();
     this.SPCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lblNote = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail.Dpi = 254F;
     this.Detail.HeightF = 61F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Transparent;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Dpi = 254F;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(5F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(2238F, 61F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell10,
         this.xrTableCell12});
     this.xrTableRow2.Dpi = 254F;
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemCode")});
     this.xrTableCell4.Dpi = 254F;
     this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 11.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell4.StylePriority.UseFont = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell4.Weight = 0.083109919571045576;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemDescription")});
     this.xrTableCell5.Dpi = 254F;
     this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell5.StylePriority.UseFont = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell5.Weight = 0.57327971403038425;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Quantity")});
     this.xrTableCell6.Dpi = 254F;
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell6.Weight = 0.055406613047363718;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Price", "{0:0.00}")});
     this.xrTableCell10.Dpi = 254F;
     this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell10.Weight = 0.13717605004468275;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.CanShrink = true;
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.TotalPrice", "{0:0.00}")});
     this.xrTableCell12.Dpi = 254F;
     this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UseFont = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell12.Weight = 0.15102770330652368;
     //
     // GrandTotal
     //
     this.GrandTotal.Name = "GrandTotal";
     this.GrandTotal.Type = typeof(decimal);
     this.GrandTotal.Value = 0;
     //
     // PageHeader
     //
     this.PageHeader.Dpi = 254F;
     this.PageHeader.HeightF = 0F;
     this.PageHeader.Name = "PageHeader";
     this.PageHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageHeader.StylePriority.UseTextAlignment = false;
     this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Quantity")});
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell9.Weight = 0;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Price")});
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell8.Weight = 0;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuplicate,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4});
     this.ReportHeader.Dpi = 254F;
     this.ReportHeader.HeightF = 638F;
     this.ReportHeader.Name = "ReportHeader";
     //
     // lblDuplicate
     //
     this.lblDuplicate.BackColor = System.Drawing.Color.Transparent;
     this.lblDuplicate.Dpi = 254F;
     this.lblDuplicate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
     this.lblDuplicate.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 445F);
     this.lblDuplicate.Name = "lblDuplicate";
     this.lblDuplicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblDuplicate.SizeF = new System.Drawing.SizeF(297.9999F, 58.41995F);
     this.lblDuplicate.StylePriority.UseBackColor = false;
     this.lblDuplicate.StylePriority.UseFont = false;
     this.lblDuplicate.Text = "DUPLICATE";
     this.lblDuplicate.Visible = false;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.SPName, "Text", "")});
     this.xrLabel8.Dpi = 254F;
     this.xrLabel8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 339F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text = "xrLabel8";
     //
     // SPName
     //
     this.SPName.Name = "SPName";
     this.SPName.Value = "";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerName, "Text", "")});
     this.xrLabel11.Dpi = 254F;
     this.xrLabel11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(100F, 234F);
     this.xrLabel11.Multiline = true;
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(339F, 64F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text = "xrLabel11";
     //
     // CustomerName
     //
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.Value = "";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerCode, "Text", "")});
     this.xrLabel7.Dpi = 254F;
     this.xrLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(100F, 444F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text = "xrLabel7";
     //
     // CustomerCode
     //
     this.CustomerCode.Name = "CustomerCode";
     this.CustomerCode.Value = "";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.PaymentType, "Text", "")});
     this.xrLabel6.Dpi = 254F;
     this.xrLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 445F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text = "xrLabel6";
     //
     // PaymentType
     //
     this.PaymentType.Name = "PaymentType";
     this.PaymentType.Value = "";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvDate, "Text", "{0:dd-MMM-yyyy}")});
     this.xrLabel5.Dpi = 254F;
     this.xrLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 234F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(347F, 64F);
     this.xrLabel5.StylePriority.UseFont = false;
     xrSummary1.FormatString = "dd/MMM/yyyy{0}";
     this.xrLabel5.Summary = xrSummary1;
     this.xrLabel5.Text = "xrLabel5";
     //
     // InvDate
     //
     this.InvDate.Name = "InvDate";
     this.InvDate.Type = typeof(System.DateTime);
     this.InvDate.Value = new System.DateTime(((long)(0)));
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvoiceNumber, "Text", "")});
     this.xrLabel4.Dpi = 254F;
     this.xrLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 339F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(361F, 64F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // InvoiceNumber
     //
     this.InvoiceNumber.Name = "InvoiceNumber";
     this.InvoiceNumber.Value = "";
     //
     // InvoiceId
     //
     this.InvoiceId.Name = "InvoiceId";
     this.InvoiceId.Type = typeof(int);
     this.InvoiceId.Value = 0;
     //
     // AmmountDue
     //
     this.AmmountDue.Name = "AmmountDue";
     this.AmmountDue.Type = typeof(decimal);
     this.AmmountDue.Value = 0;
     //
     // DueAmmount
     //
     this.DueAmmount.Name = "DueAmmount";
     this.DueAmmount.Type = typeof(decimal);
     this.DueAmmount.Value = 0;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel14,
         this.xrLabel17,
         this.xrLabel12,
         this.xrLabel2});
     this.ReportFooter.Dpi = 254F;
     this.ReportFooter.HeightF = 274F;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.PrintAtBottom = true;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi = 254F;
     this.xrLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(1569F, 130F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(294F, 63F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "Amount";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi = 254F;
     this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(1469F, 66F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(397F, 58F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text = "Recieved Amount";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.DueAmmount, "Text", "")});
     this.xrLabel14.Dpi = 254F;
     this.xrLabel14.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.ForeColor = System.Drawing.Color.Maroon;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 133F);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel14.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.StylePriority.UseForeColor = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel17
     //
     this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.TotalPaid, "Text", "")});
     this.xrLabel17.Dpi = 254F;
     this.xrLabel17.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 67F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text = "xrLabel17";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // TotalPaid
     //
     this.TotalPaid.Name = "TotalPaid";
     this.TotalPaid.Type = typeof(decimal);
     this.TotalPaid.Value = 0;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.GrandTotal, "Text", "")});
     this.xrLabel12.Dpi = 254F;
     this.xrLabel12.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 210F);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel12.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text = "xrLabel12";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi = 254F;
     this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(1468F, 130F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 63F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text = "Due";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BorderColor = System.Drawing.SystemColors.Desktop;
     this.xrControlStyle1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name = "xrControlStyle1";
     //
     // dsPrintInvoice1
     //
     this.dsPrintInvoice1.DataSetName = "DsPrintInvoice";
     this.dsPrintInvoice1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // SPCode
     //
     this.SPCode.Name = "SPCode";
     this.SPCode.Value = "";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblNote,
         this.xrPageInfo1});
     this.PageFooter.Dpi = 254F;
     this.PageFooter.HeightF = 65.00002F;
     this.PageFooter.Name = "PageFooter";
     this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lblNote
     //
     this.lblNote.Dpi = 254F;
     this.lblNote.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.lblNote.LocationFloat = new DevExpress.Utils.PointFloat(0F, 5.579924F);
     this.lblNote.Name = "lblNote";
     this.lblNote.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblNote.SizeF = new System.Drawing.SizeF(1246.188F, 58.42F);
     this.lblNote.StylePriority.UseFont = false;
     this.lblNote.Text = "Cash returns are not accepted. This invoice should be submitted for any returns.";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi = 254F;
     this.xrPageInfo1.Font = new System.Drawing.Font("Times New Roman", 11F);
     this.xrPageInfo1.Format = "Page {0} of {1}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1989F, 0F);
     this.xrPageInfo1.Name = "xrPageInfo1";
     this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // topMarginBand1
     //
     this.topMarginBand1.Dpi = 254F;
     this.topMarginBand1.HeightF = 5F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Dpi = 254F;
     this.bottomMarginBand1.HeightF = 5F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XRPrintInvoice
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.PageFooter,
         this.topMarginBand1,
         this.bottomMarginBand1});
     this.DataMember = "vw_Invoice_Detail_Sel_Report";
     this.DataSource = this.dsPrintInvoice1;
     this.Dpi = 254F;
     this.Margins = new System.Drawing.Printing.Margins(5, 5, 5, 5);
     this.PageHeight = 2000;
     this.PageWidth = 2317;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.InvoiceId,
         this.InvoiceNumber,
         this.InvDate,
         this.CustomerCode,
         this.CustomerName,
         this.GrandTotal,
         this.AmmountDue,
         this.PaymentType,
         this.DueAmmount,
         this.TotalPaid,
         this.SPCode,
         this.SPName});
     this.ReportUnit = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1});
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #20
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_FamilyRelation.resx";

            this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2               = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2            = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrCellIndex            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrCellEmployeeCode     = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrCellFullName         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrCellDependenceNumber = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrCellDepartmentName   = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrCellNote             = 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.lblReportDate          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TitleBC            = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader             = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1               = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1            = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell4           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5           = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12          = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportFooter           = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.lblCreator             = new DevExpress.XtraReports.UI.XRLabel();
            this.lblHRDepartment        = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer3            = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer2            = new DevExpress.XtraReports.UI.XRLabel();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable2
            });
            this.Detail.HeightF       = 25F;
            this.Detail.Name          = "Detail";
            this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // xrTable2
            //
            this.xrTable2.Borders =
                ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left |
                                                        DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1044.958F, 25F);
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont    = false;
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrCellIndex,
                this.xrCellEmployeeCode,
                this.xrCellFullName,
                this.xrCellDependenceNumber,
                this.xrCellDepartmentName,
                this.xrCellNote
            });
            this.xrTableRow2.Name   = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            //
            // xrCellIndex
            //
            this.xrCellIndex.Name = "xrCellIndex";
            this.xrCellIndex.StylePriority.UseTextAlignment = false;
            this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrCellIndex.Weight        = 0.042522734619797171D;
            this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrCellEmployeeCode
            //
            this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
            this.xrCellEmployeeCode.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrCellEmployeeCode.StylePriority.UsePadding       = false;
            this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrCellEmployeeCode.Weight        = 0.15210062632219851D;
            //
            // xrCellFullName
            //
            this.xrCellFullName.Name    = "xrCellFullName";
            this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrCellFullName.StylePriority.UsePadding       = false;
            this.xrCellFullName.StylePriority.UseTextAlignment = false;
            this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrCellFullName.Weight        = 0.38185195964191054D;
            //
            // xrCellDependenceNumber
            //
            this.xrCellDependenceNumber.Name    = "xrCellDependenceNumber";
            this.xrCellDependenceNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrCellDependenceNumber.StylePriority.UsePadding       = false;
            this.xrCellDependenceNumber.StylePriority.UseTextAlignment = false;
            this.xrCellDependenceNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrCellDependenceNumber.Weight        = 0.093906706238515075D;
            //
            // xrCellDepartmentName
            //
            this.xrCellDepartmentName.Name    = "xrCellDepartmentName";
            this.xrCellDepartmentName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrCellDepartmentName.StylePriority.UsePadding       = false;
            this.xrCellDepartmentName.StylePriority.UseTextAlignment = false;
            this.xrCellDepartmentName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrCellDepartmentName.Weight        = 0.36888023088185917D;
            //
            // xrCellNote
            //
            this.xrCellNote.Name    = "xrCellNote";
            this.xrCellNote.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrCellNote.StylePriority.UsePadding       = false;
            this.xrCellNote.StylePriority.UseTextAlignment = false;
            this.xrCellNote.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrCellNote.Weight        = 0.16710401221102203D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 50F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 54F;
            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.lblReportDate,
                this.xrl_TitleBC
            });
            this.ReportHeader.HeightF = 95.00002F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 53.70833F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "(Thời gian cập nhật {0}/{1}/{2})";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrl_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, 20.29165F);
            this.xrl_TitleBC.Name                           = "xrl_TitleBC";
            this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
            this.xrl_TitleBC.StylePriority.UseFont          = false;
            this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
            this.xrl_TitleBC.Text                           = "DANH SÁCH NGƯỜI PHỤ THUỘC CBCNV CÔNG TY";
            this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.xrTable1
            });
            this.PageHeader.HeightF = 34.625F;
            this.PageHeader.Name    = "PageHeader";
            //
            // xrTable1
            //
            this.xrTable1.Borders =
                ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left |
                                                         DevExpress.XtraPrinting.BorderSide.Top)
                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[]
            {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1044.958F, 34.625F);
            this.xrTable1.StylePriority.UseBorders       = false;
            this.xrTable1.StylePriority.UseFont          = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[]
            {
                this.xrTableCell4,
                this.xrTableCell1,
                this.xrTableCell7,
                this.xrTableCell2,
                this.xrTableCell5,
                this.xrTableCell12
            });
            this.xrTableRow1.Name   = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Name   = "xrTableCell4";
            this.xrTableCell4.Text   = "STT";
            this.xrTableCell4.Weight = 0.058292275961961286D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.Name   = "xrTableCell1";
            this.xrTableCell1.Text   = "MÃ NV";
            this.xrTableCell1.Weight = 0.20850712998973459D;
            //
            // xrTableCell7
            //
            this.xrTableCell7.Name   = "xrTableCell7";
            this.xrTableCell7.Text   = "HỌ VÀ TÊN";
            this.xrTableCell7.Weight = 0.523461453780482D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.Name   = "xrTableCell2";
            this.xrTableCell2.Text   = "SỐ NPT";
            this.xrTableCell2.Weight = 0.12873203386011614D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.Name   = "xrTableCell5";
            this.xrTableCell5.Text   = "PHÒNG BAN";
            this.xrTableCell5.Weight = 0.50567933710338664D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Name   = "xrTableCell12";
            this.xrTableCell12.Text   = "Ghi chú";
            this.xrTableCell12.Weight = 0.22907433001181676D;
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[]
            {
                this.lblCreator,
                this.lblHRDepartment,
                this.xrl_footer3,
                this.xrl_footer2
            });
            this.ReportFooter.HeightF = 175F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // lblCreator
            //
            this.lblCreator.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.lblCreator.LocationFloat                  = new DevExpress.Utils.PointFloat(474.6993F, 137.5F);
            this.lblCreator.Name                           = "lblCreator";
            this.lblCreator.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblCreator.SizeF                          = new System.Drawing.SizeF(570.2588F, 23F);
            this.lblCreator.StylePriority.UseFont          = false;
            this.lblCreator.StylePriority.UseTextAlignment = false;
            this.lblCreator.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // lblHRDepartment
            //
            this.lblHRDepartment.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.lblHRDepartment.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 137.5F);
            this.lblHRDepartment.Name                           = "lblHRDepartment";
            this.lblHRDepartment.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblHRDepartment.SizeF                          = new System.Drawing.SizeF(474.6993F, 23F);
            this.lblHRDepartment.StylePriority.UseFont          = false;
            this.lblHRDepartment.StylePriority.UseTextAlignment = false;
            this.lblHRDepartment.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(474.6993F, 37.5F);
            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(570.2587F, 23F);
            this.xrl_footer3.StylePriority.UseFont          = false;
            this.xrl_footer3.StylePriority.UseTextAlignment = false;
            this.xrl_footer3.Text                           = "NGƯỜI LẬP";
            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(0F, 37.5F);
            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(474.6993F, 23F);
            this.xrl_footer2.StylePriority.UseFont          = false;
            this.xrl_footer2.StylePriority.UseTextAlignment = false;
            this.xrl_footer2.Text                           = "PHÒNG NHÂN SỰ";
            this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // rp_FamilyRelation
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter
            });
            this.Landscape  = true;
            this.Margins    = new System.Drawing.Printing.Margins(58, 64, 50, 54);
            this.PageHeight = 827;
            this.PageWidth  = 1169;
            this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
            this.Version    = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
Example #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources  = new System.ComponentModel.ComponentResourceManager(typeof(Biochemistry_Outsider));
     DevExpress.XtraReports.UI.XRSummary            xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.vendorLogo      = new DevExpress.XtraReports.UI.XRPictureBox();
     this.label10         = new DevExpress.XtraReports.UI.XRLabel();
     this.label17         = new DevExpress.XtraReports.UI.XRLabel();
     this.label7          = new DevExpress.XtraReports.UI.XRLabel();
     this.label6          = new DevExpress.XtraReports.UI.XRLabel();
     this.label9          = new DevExpress.XtraReports.UI.XRLabel();
     this.label8          = new DevExpress.XtraReports.UI.XRLabel();
     this.label5          = new DevExpress.XtraReports.UI.XRLabel();
     this.label13         = new DevExpress.XtraReports.UI.XRLabel();
     this.label15         = new DevExpress.XtraReports.UI.XRLabel();
     this.label16         = new DevExpress.XtraReports.UI.XRLabel();
     this.label18         = new DevExpress.XtraReports.UI.XRLabel();
     this.label12         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.line2           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable3        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell19   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrRichText1     = new DevExpress.XtraReports.UI.XRRichText();
     this.xrPageBreak1    = new DevExpress.XtraReports.UI.XRPageBreak();
     this.vendorLogo2     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.vendorTable     = new DevExpress.XtraReports.UI.XRTable();
     this.vendorTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.vendorName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorPhone     = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorEmail     = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.vendorAddress   = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorEmptyCell = new DevExpress.XtraReports.UI.XRTableCell();
     this.vendorWebsite   = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vendorTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.vendorLogo,
         this.label10,
         this.label17,
         this.label7,
         this.label6,
         this.label9,
         this.label8,
         this.label5,
         this.label13,
         this.label15,
         this.label16,
         this.label18,
         this.label12
     });
     this.TopMargin.HeightF = 144F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.vendorLogo2,
         this.vendorTable
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2,
         this.xrTable3,
         this.xrRichText1,
         this.xrPageBreak1
     });
     this.Detail.HeightF = 97.14084F;
     this.Detail.Name    = "Detail";
     //
     // vendorLogo
     //
     this.vendorLogo.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.vendorLogo.ImageSource    = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("vendorLogo.ImageSource"));
     this.vendorLogo.LocationFloat  = new DevExpress.Utils.PointFloat(0F, 20.83331F);
     this.vendorLogo.Name           = "vendorLogo";
     this.vendorLogo.SizeF          = new System.Drawing.SizeF(200.9616F, 90.64423F);
     this.vendorLogo.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.vendorLogo.StylePriority.UseBorderColor = false;
     this.vendorLogo.StylePriority.UseBorders     = false;
     this.vendorLogo.StylePriority.UsePadding     = false;
     //
     // label10
     //
     this.label10.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_patientDetails].[spouse]")
     });
     this.label10.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label10.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 51.79812F);
     this.label10.Multiline                = true;
     this.label10.Name                     = "label10";
     this.label10.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label10.SizeF                    = new System.Drawing.SizeF(189.8333F, 16.28196F);
     this.label10.StylePriority.UseBorders = false;
     this.label10.StylePriority.UseFont    = false;
     this.label10.Text                     = "Saima Fawad";
     //
     // label17
     //
     this.label17.AutoWidth                      = true;
     this.label17.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label17.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label17.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 100.6442F);
     this.label17.Multiline                      = true;
     this.label17.Name                           = "label17";
     this.label17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label17.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label17.StylePriority.UseBorders       = false;
     this.label17.StylePriority.UseFont          = false;
     this.label17.StylePriority.UseTextAlignment = false;
     this.label17.Text                           = "Report Date:";
     this.label17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label7
     //
     this.label7.AutoWidth                      = true;
     this.label7.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label7.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label7.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 51.79807F);
     this.label7.Multiline                      = true;
     this.label7.Name                           = "label7";
     this.label7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label7.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label7.StylePriority.UseBorders       = false;
     this.label7.StylePriority.UseFont          = false;
     this.label7.StylePriority.UseTextAlignment = false;
     this.label7.Text                           = "Spouse:";
     this.label7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label6
     //
     this.label6.AutoWidth                      = true;
     this.label6.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label6.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label6.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 35.51603F);
     this.label6.Multiline                      = true;
     this.label6.Name                           = "label6";
     this.label6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label6.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label6.StylePriority.UseBorders       = false;
     this.label6.StylePriority.UseFont          = false;
     this.label6.StylePriority.UseTextAlignment = false;
     this.label6.Text                           = "Name:";
     this.label6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label9
     //
     this.label9.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_patientDetails].[patient]")
     });
     this.label9.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label9.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 35.5161F);
     this.label9.Multiline                = true;
     this.label9.Name                     = "label9";
     this.label9.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label9.SizeF                    = new System.Drawing.SizeF(189.8333F, 16.28196F);
     this.label9.StylePriority.UseBorders = false;
     this.label9.StylePriority.UseFont    = false;
     this.label9.Text                     = "Fawad Ahmed Khan";
     //
     // label8
     //
     this.label8.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_patientDetails].[mrn]")
     });
     this.label8.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label8.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 19.23406F);
     this.label8.Multiline                = true;
     this.label8.Name                     = "label8";
     this.label8.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label8.SizeF                    = new System.Drawing.SizeF(127.8723F, 16.28196F);
     this.label8.StylePriority.UseBorders = false;
     this.label8.StylePriority.UseFont    = false;
     this.label8.Text                     = "4472/10";
     //
     // label5
     //
     this.label5.AutoWidth                      = true;
     this.label5.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label5.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label5.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 19.23398F);
     this.label5.Multiline                      = true;
     this.label5.Name                           = "label5";
     this.label5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label5.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label5.StylePriority.UseBorders       = false;
     this.label5.StylePriority.UseFont          = false;
     this.label5.StylePriority.UseTextAlignment = false;
     this.label5.Text                           = "File No:";
     this.label5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label13
     //
     this.label13.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_patientDetails].[dob]")
     });
     this.label13.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label13.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 68.08019F);
     this.label13.Multiline                = true;
     this.label13.Name                     = "label13";
     this.label13.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label13.SizeF                    = new System.Drawing.SizeF(189.8333F, 16.28197F);
     this.label13.StylePriority.UseBorders = false;
     this.label13.StylePriority.UseFont    = false;
     this.label13.Text                     = "03-JUL-71 (47 Years)";
     this.label13.TextFormatString         = "{0:dd/MM/yyyy}";
     //
     // label15
     //
     this.label15.AutoWidth                      = true;
     this.label15.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label15.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label15.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 84.36213F);
     this.label15.Multiline                      = true;
     this.label15.Name                           = "label15";
     this.label15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label15.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label15.StylePriority.UseBorders       = false;
     this.label15.StylePriority.UseFont          = false;
     this.label15.StylePriority.UseTextAlignment = false;
     this.label15.Text                           = "Doctor:";
     this.label15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label16
     //
     this.label16.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[consultant]")
     });
     this.label16.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label16.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 84.36228F);
     this.label16.Multiline                = true;
     this.label16.Name                     = "label16";
     this.label16.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label16.SizeF                    = new System.Drawing.SizeF(189.8333F, 16.28194F);
     this.label16.StylePriority.UseBorders = false;
     this.label16.StylePriority.UseFont    = false;
     this.label16.Text                     = "Dr.Faridon Setna";
     //
     // label18
     //
     this.label18.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.label18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "GetDate(LocalDateTimeNow())")
     });
     this.label18.Font                     = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
     this.label18.LocationFloat            = new DevExpress.Utils.PointFloat(594.0029F, 100.6442F);
     this.label18.Multiline                = true;
     this.label18.Name                     = "label18";
     this.label18.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label18.SizeF                    = new System.Drawing.SizeF(189.8333F, 16.28194F);
     this.label18.StylePriority.UseBorders = false;
     this.label18.StylePriority.UseFont    = false;
     this.label18.TextFormatString         = "{0:dd/MM/yyyy}";
     //
     // label12
     //
     this.label12.AutoWidth                      = true;
     this.label12.Borders                        = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.label12.Font                           = new System.Drawing.Font("Calibri", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label12.LocationFloat                  = new DevExpress.Utils.PointFloat(506.1344F, 68.08014F);
     this.label12.Multiline                      = true;
     this.label12.Name                           = "label12";
     this.label12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label12.SizeF                          = new System.Drawing.SizeF(84.27884F, 16.28203F);
     this.label12.StylePriority.UseBorders       = false;
     this.label12.StylePriority.UseFont          = false;
     this.label12.StylePriority.UseTextAlignment = false;
     this.label12.Text                           = "DOB :";
     this.label12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.line2,
         this.xrLabel1,
         this.xrTable1
     });
     this.GroupHeader1.HeightF = 89.99995F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // line2
     //
     this.line2.BorderWidth   = 0F;
     this.line2.ForeColor     = System.Drawing.Color.DarkSlateGray;
     this.line2.LineWidth     = 2F;
     this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 38.7692F);
     this.line2.Name          = "line2";
     this.line2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.line2.SizeF         = new System.Drawing.SizeF(785.9999F, 4.999943F);
     this.line2.StylePriority.UseBorderWidth = false;
     this.line2.StylePriority.UseForeColor   = false;
     this.line2.StylePriority.UsePadding     = false;
     //
     // xrLabel1
     //
     this.xrLabel1.AutoWidth                      = true;
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(783.8362F, 38.76925F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Biochemistry (Out Sider) Report";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrTable1.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 59.99995F);
     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(785.9999F, 30F);
     this.xrTable1.StylePriority.UseBackColor     = false;
     this.xrTable1.StylePriority.UseBorders       = 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.xrTableCell2,
         this.xrTableCell1,
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.Multiline                = true;
     this.xrTableCell2.Name                     = "xrTableCell2";
     this.xrTableCell2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell2.StylePriority.UseFont    = false;
     this.xrTableCell2.StylePriority.UsePadding = false;
     this.xrTableCell2.Text                     = "Sr. #";
     this.xrTableCell2.Weight                   = 0.28698057437750951D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.Multiline                = true;
     this.xrTableCell1.Name                     = "xrTableCell1";
     this.xrTableCell1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell1.StylePriority.UseFont    = false;
     this.xrTableCell1.StylePriority.UsePadding = false;
     this.xrTableCell1.Text                     = "Test Description";
     this.xrTableCell1.Weight                   = 1.5259400611361857D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Multiline                = true;
     this.xrTableCell3.Name                     = "xrTableCell3";
     this.xrTableCell3.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell3.StylePriority.UseFont    = false;
     this.xrTableCell3.StylePriority.UsePadding = false;
     this.xrTableCell3.Text                     = "Result";
     this.xrTableCell3.Weight                   = 0.6359676313893281D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell4.Multiline                = true;
     this.xrTableCell4.Name                     = "xrTableCell4";
     this.xrTableCell4.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell4.StylePriority.UseFont    = false;
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.Text                     = "Interpretation";
     this.xrTableCell4.Weight                   = 0.88041781915186268D;
     //
     // 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(1.000118F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(784.9999F, 30F);
     this.xrTable2.StylePriority.UseBorders       = 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.xrTableCell7,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell8
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([ReferenceRange])")
     });
     this.xrTableCell7.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.Multiline                = true;
     this.xrTableCell7.Name                     = "xrTableCell7";
     this.xrTableCell7.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell7.StylePriority.UseFont    = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell7.Summary = xrSummary1;
     this.xrTableCell7.Weight  = 0.33490036039341842D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_biochemistryontreatment].[description]")
     });
     this.xrTableCell5.Font                     = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Multiline                = true;
     this.xrTableCell5.Name                     = "xrTableCell5";
     this.xrTableCell5.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell5.StylePriority.UseFont    = false;
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Weight                   = 1.780740087189769D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[sp_biochemistryontreatment].[Result]")
     });
     this.xrTableCell6.Font                     = new System.Drawing.Font("Segoe UI", 11F);
     this.xrTableCell6.Multiline                = true;
     this.xrTableCell6.Name                     = "xrTableCell6";
     this.xrTableCell6.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell6.StylePriority.UseFont    = false;
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Text                     = "<0.01   ng/ml";
     this.xrTableCell6.Weight                   = 0.74216088669325586D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font                     = new System.Drawing.Font("Segoe UI", 11F);
     this.xrTableCell8.Multiline                = true;
     this.xrTableCell8.Name                     = "xrTableCell8";
     this.xrTableCell8.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell8.StylePriority.UseFont    = false;
     this.xrTableCell8.StylePriority.UsePadding = false;
     this.xrTableCell8.Weight                   = 1.0274293800054724D;
     //
     // xrTable3
     //
     this.xrTable3.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(427.0038F, 29.99998F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(357.9962F, 30.83335F);
     this.xrTable3.StylePriority.UseFont = false;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell19
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.Multiline = true;
     this.xrTableCell19.Name      = "xrTableCell19";
     this.xrTableCell19.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell19.StylePriority.UsePadding = false;
     this.xrTableCell19.Text   = "Ref.Range:";
     this.xrTableCell19.Weight = 1D;
     //
     // xrRichText1
     //
     this.xrRichText1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Html", "[ReferenceRange]")
     });
     this.xrRichText1.Font                  = new System.Drawing.Font("Calibri", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(428.0039F, 60.83331F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(356.9959F, 23F);
     this.xrRichText1.StylePriority.UseFont = false;
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 95.14084F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // vendorLogo2
     //
     this.vendorLogo2.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.vendorLogo2.ImageSource    = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("vendorLogo2.ImageSource"));
     this.vendorLogo2.LocationFloat  = new DevExpress.Utils.PointFloat(0F, 10F);
     this.vendorLogo2.Name           = "vendorLogo2";
     this.vendorLogo2.SizeF          = new System.Drawing.SizeF(118.3333F, 55.83334F);
     this.vendorLogo2.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.vendorLogo2.StylePriority.UseBorderColor = false;
     this.vendorLogo2.StylePriority.UseBorders     = false;
     this.vendorLogo2.StylePriority.UsePadding     = false;
     //
     // vendorTable
     //
     this.vendorTable.BorderColor   = System.Drawing.Color.Gray;
     this.vendorTable.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.vendorTable.Font          = new System.Drawing.Font("Segoe UI", 8F);
     this.vendorTable.LocationFloat = new DevExpress.Utils.PointFloat(162.4388F, 10F);
     this.vendorTable.Name          = "vendorTable";
     this.vendorTable.Padding       = new DevExpress.XtraPrinting.PaddingInfo(12, 0, 0, 0, 100F);
     this.vendorTable.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.vendorTableRow1,
         this.vendorTableRow2
     });
     this.vendorTable.SizeF = new System.Drawing.SizeF(623.5612F, 80F);
     this.vendorTable.StylePriority.UseBorderColor = false;
     this.vendorTable.StylePriority.UseBorders     = false;
     this.vendorTable.StylePriority.UseFont        = false;
     this.vendorTable.StylePriority.UsePadding     = false;
     //
     // vendorTableRow1
     //
     this.vendorTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.vendorName,
         this.vendorPhone,
         this.vendorEmail
     });
     this.vendorTableRow1.Name   = "vendorTableRow1";
     this.vendorTableRow1.Weight = 1.0000282429281655D;
     //
     // vendorName
     //
     this.vendorName.CanShrink                      = true;
     this.vendorName.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorName.Name                           = "vendorName";
     this.vendorName.StylePriority.UseFont          = false;
     this.vendorName.StylePriority.UseTextAlignment = false;
     this.vendorName.Text                           = "Address";
     this.vendorName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorName.Weight                         = 3.2160869766043354D;
     //
     // vendorPhone
     //
     this.vendorPhone.CanShrink                      = true;
     this.vendorPhone.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorPhone.Name                           = "vendorPhone";
     this.vendorPhone.StylePriority.UseFont          = false;
     this.vendorPhone.StylePriority.UseTextAlignment = false;
     this.vendorPhone.Text                           = "Phone";
     this.vendorPhone.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorPhone.Weight                         = 2.3857055240558696D;
     //
     // vendorEmail
     //
     this.vendorEmail.CanShrink                      = true;
     this.vendorEmail.Font                           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold);
     this.vendorEmail.Name                           = "vendorEmail";
     this.vendorEmail.StylePriority.UseFont          = false;
     this.vendorEmail.StylePriority.UseTextAlignment = false;
     this.vendorEmail.Text                           = "Fax";
     this.vendorEmail.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.vendorEmail.Weight                         = 2.8008962503301023D;
     //
     // vendorTableRow2
     //
     this.vendorTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.vendorAddress,
         this.vendorEmptyCell,
         this.vendorWebsite
     });
     this.vendorTableRow2.Name   = "vendorTableRow2";
     this.vendorTableRow2.Weight = 1.57413724941719D;
     //
     // vendorAddress
     //
     this.vendorAddress.CanShrink = true;
     this.vendorAddress.Multiline = true;
     this.vendorAddress.Name      = "vendorAddress";
     this.vendorAddress.StylePriority.UseBorders       = false;
     this.vendorAddress.StylePriority.UseTextAlignment = false;
     this.vendorAddress.Text   = "F-6/1, Block-8, KDA Scheme No.5,\r\nClifton, Karachi-75600";
     this.vendorAddress.Weight = 3.2160869766043354D;
     //
     // vendorEmptyCell
     //
     this.vendorEmptyCell.CanShrink = true;
     this.vendorEmptyCell.Multiline = true;
     this.vendorEmptyCell.Name      = "vendorEmptyCell";
     this.vendorEmptyCell.Text      = "92 21 35361846\r\n          35361397 \r\n          35810049";
     this.vendorEmptyCell.Weight    = 2.3857055240558696D;
     //
     // vendorWebsite
     //
     this.vendorWebsite.CanShrink = true;
     this.vendorWebsite.Name      = "vendorWebsite";
     this.vendorWebsite.Text      = "021-35361397";
     this.vendorWebsite.Weight    = 2.8008962503301023D;
     //
     // Biochemistry_Outsider
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1
     });
     this.Font    = new System.Drawing.Font("Arial", 9.75F);
     this.Margins = new System.Drawing.Printing.Margins(29, 35, 144, 100);
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vendorTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #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_BusinessBankAccount.resx";

        this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellAccount       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellBranch        = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11       = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
        this.lblTitle            = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.lblHRDepartment     = new DevExpress.XtraReports.UI.XRLabel();
        this.lblCreator          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1         = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(803.9999F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrCellIndex,
            this.xrCellEmployeeCode,
            this.xrCellFullName,
            this.xrCellAccount,
            this.xrCellBranch
        });
        this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow2.Name    = "xrTableRow2";
        this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UsePadding       = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrCellIndex
        //
        this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellIndex.Name    = "xrCellIndex";
        this.xrCellIndex.StylePriority.UseBorders       = false;
        this.xrCellIndex.StylePriority.UseFont          = false;
        this.xrCellIndex.StylePriority.UseTextAlignment = false;
        this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellIndex.Weight        = 0.02827922895041169D;
        this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrCellEmployeeCode
        //
        this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
        this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
        this.xrCellEmployeeCode.StylePriority.UseFont          = false;
        this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
        this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellEmployeeCode.Weight        = 0.091484815950389334D;
        //
        // xrCellFullName
        //
        this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellFullName.Name    = "xrCellFullName";
        this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellFullName.StylePriority.UseBorders       = false;
        this.xrCellFullName.StylePriority.UseFont          = false;
        this.xrCellFullName.StylePriority.UsePadding       = false;
        this.xrCellFullName.StylePriority.UseTextAlignment = false;
        this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellFullName.Weight        = 0.14670137791173182D;
        //
        // xrCellAccount
        //
        this.xrCellAccount.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellAccount.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellAccount.Name    = "xrCellAccount";
        this.xrCellAccount.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellAccount.StylePriority.UseBorders       = false;
        this.xrCellAccount.StylePriority.UseFont          = false;
        this.xrCellAccount.StylePriority.UsePadding       = false;
        this.xrCellAccount.StylePriority.UseTextAlignment = false;
        this.xrCellAccount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellAccount.Weight        = 0.12530349608177646D;
        //
        // xrCellBranch
        //
        this.xrCellBranch.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellBranch.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellBranch.Name    = "xrCellBranch";
        this.xrCellBranch.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellBranch.StylePriority.UseBorders       = false;
        this.xrCellBranch.StylePriority.UseFont          = false;
        this.xrCellBranch.StylePriority.UsePadding       = false;
        this.xrCellBranch.StylePriority.UseTextAlignment = false;
        this.xrCellBranch.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellBranch.Weight        = 0.15502026262997629D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 46F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 61F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 25F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(804F, 25F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell9,
            this.xrTableCell11
        });
        this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow1.Name    = "xrTableRow1";
        this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow1.StylePriority.UseFont          = false;
        this.xrTableRow1.StylePriority.UsePadding       = false;
        this.xrTableRow1.StylePriority.UseTextAlignment = false;
        this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow1.Weight        = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.026539014443688863D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBorders       = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã NV";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.085855137146762031D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.13767383655065657D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBorders       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "SỐ TK";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.11759282093259571D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseBorders       = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "CHI NHÁNH";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight        = 0.14548072059473724D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblReportDate,
            this.lblTitle
        });
        this.ReportHeader.HeightF = 95.08333F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // lblReportDate
        //
        this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
        this.lblReportDate.Name                           = "lblReportDate";
        this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblReportDate.SizeF                          = new System.Drawing.SizeF(803.9999F, 23F);
        this.lblReportDate.StylePriority.UseFont          = false;
        this.lblReportDate.StylePriority.UseTextAlignment = false;
        this.lblReportDate.Text                           = "(Thời gian cập nhật {0}/{1}/{2})";
        this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblTitle
        //
        this.lblTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.lblTitle.Name                           = "lblTitle";
        this.lblTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblTitle.SizeF                          = new System.Drawing.SizeF(804F, 23F);
        this.lblTitle.StylePriority.UseFont          = false;
        this.lblTitle.StylePriority.UseTextAlignment = false;
        this.lblTitle.Text                           = "SỐ TÀI KHOẢN CBCNV CÔNG TY";
        this.lblTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblHRDepartment,
            this.lblCreator,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 226F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // lblHRDepartment
        //
        this.lblHRDepartment.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblHRDepartment.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
        this.lblHRDepartment.Name                           = "lblHRDepartment";
        this.lblHRDepartment.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblHRDepartment.SizeF                          = new System.Drawing.SizeF(391.8113F, 23F);
        this.lblHRDepartment.StylePriority.UseFont          = false;
        this.lblHRDepartment.StylePriority.UseTextAlignment = false;
        this.lblHRDepartment.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblCreator
        //
        this.lblCreator.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblCreator.LocationFloat                  = new DevExpress.Utils.PointFloat(391.8113F, 176.0417F);
        this.lblCreator.Name                           = "lblCreator";
        this.lblCreator.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblCreator.SizeF                          = new System.Drawing.SizeF(412.1886F, 23F);
        this.lblCreator.StylePriority.UseFont          = false;
        this.lblCreator.StylePriority.UseTextAlignment = false;
        this.lblCreator.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_footer3
        //
        this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(391.8113F, 63.54167F);
        this.xrl_footer3.Multiline                      = true;
        this.xrl_footer3.Name                           = "xrl_footer3";
        this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(412.1886F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "NGƯỜI LẬP\r\n";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
        this.xrl_footer1.Name                           = "xrl_footer1";
        this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(391.8113F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "PHÒNG NHÂN SỰ";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(803.9999F, 25F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_GroupDepartment
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrt_GroupDepartment
        //
        this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
        this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
        this.xrt_GroupDepartment.StylePriority.UseFont          = false;
        this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
        this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
        this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_GroupDepartment.Weight        = 2D;
        this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
        //
        // rp_BusinessBankAccount
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.ReportHeader,
            this.ReportFooter,
            this.GroupHeader1
        });
        this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "15.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #23
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_ContractOfEmployee.resx";

            this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrt_sttt             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_ContractNumber   = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_ContractType     = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_Job              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_ContractDate     = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_EffectiveDate    = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_ContractEndDate  = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrt_ContractStatus   = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLogo               = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrLabel6             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel5             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel3             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1             = new DevExpress.XtraReports.UI.XRLabel();
            this.xrt_Seniority        = new DevExpress.XtraReports.UI.XRLabel();
            this.xr_ParticipationDate = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_Occupation       = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_Position         = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_DepartmentName   = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_FullName         = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TitleBC          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TenCongTy        = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12        = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportFooter         = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.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();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2
            });
            this.Detail.HeightF       = 25F;
            this.Detail.Name          = "Detail";
            this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // xrTable2
            //
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1044.958F, 25F);
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont    = false;
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrt_sttt,
                this.xrt_ContractNumber,
                this.xrt_ContractType,
                this.xrt_Job,
                this.xrt_ContractDate,
                this.xrt_EffectiveDate,
                this.xrt_ContractEndDate,
                this.xrt_ContractStatus
            });
            this.xrTableRow2.Name   = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            //
            // xrt_sttt
            //
            this.xrt_sttt.Name = "xrt_sttt";
            this.xrt_sttt.StylePriority.UseTextAlignment = false;
            this.xrt_sttt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrt_sttt.Weight        = 0.096422348839708683D;
            this.xrt_sttt.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrt_ContractNumber
            //
            this.xrt_ContractNumber.Name                           = "xrt_ContractNumber";
            this.xrt_ContractNumber.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrt_ContractNumber.SnapLineMargin                 = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrt_ContractNumber.StylePriority.UsePadding       = false;
            this.xrt_ContractNumber.StylePriority.UseTextAlignment = false;
            this.xrt_ContractNumber.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrt_ContractNumber.Weight                         = 0.2954840395505004D;
            //
            // xrt_ContractType
            //
            this.xrt_ContractType.Name    = "xrt_ContractType";
            this.xrt_ContractType.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrt_ContractType.StylePriority.UsePadding       = false;
            this.xrt_ContractType.StylePriority.UseTextAlignment = false;
            this.xrt_ContractType.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrt_ContractType.Weight        = 0.6254364431133298D;
            //
            // xrt_Job
            //
            this.xrt_Job.Name    = "xrt_Job";
            this.xrt_Job.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrt_Job.StylePriority.UsePadding       = false;
            this.xrt_Job.StylePriority.UseTextAlignment = false;
            this.xrt_Job.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrt_Job.Weight        = 0.456369945373317D;
            //
            // xrt_ContractDate
            //
            this.xrt_ContractDate.Name = "xrt_ContractDate";
            this.xrt_ContractDate.StylePriority.UseTextAlignment = false;
            this.xrt_ContractDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrt_ContractDate.Weight        = 0.24094738800203636D;
            //
            // xrt_EffectiveDate
            //
            this.xrt_EffectiveDate.Name = "xrt_EffectiveDate";
            this.xrt_EffectiveDate.StylePriority.UseTextAlignment = false;
            this.xrt_EffectiveDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrt_EffectiveDate.Weight        = 0.24093636913793445D;
            //
            // xrt_ContractEndDate
            //
            this.xrt_ContractEndDate.Name = "xrt_ContractEndDate";
            this.xrt_ContractEndDate.StylePriority.UseTextAlignment = false;
            this.xrt_ContractEndDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrt_ContractEndDate.Weight        = 0.23548234874855148D;
            //
            // xrt_ContractStatus
            //
            this.xrt_ContractStatus.Name    = "xrt_ContractStatus";
            this.xrt_ContractStatus.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrt_ContractStatus.StylePriority.UsePadding       = false;
            this.xrt_ContractStatus.StylePriority.UseTextAlignment = false;
            this.xrt_ContractStatus.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrt_ContractStatus.Weight        = 0.54441424295042706D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 50F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 64F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrLogo,
                this.xrLabel6,
                this.xrLabel5,
                this.xrLabel4,
                this.xrLabel3,
                this.xrLabel1,
                this.xrt_Seniority,
                this.xr_ParticipationDate,
                this.xrl_Occupation,
                this.xrl_Position,
                this.xrl_DepartmentName,
                this.xrl_FullName,
                this.xrl_TitleBC,
                this.xrl_TenCongTy,
                this.xrLabel2
            });
            this.ReportHeader.HeightF = 247F;
            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;
            //
            // xrLabel6
            //
            this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(670.4173F, 209.0417F);
            this.xrLabel6.Name                           = "xrLabel6";
            this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF                          = new System.Drawing.SizeF(156.1577F, 23F);
            this.xrLabel6.StylePriority.UseFont          = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.Text                           = "Thâm niên :";
            this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrLabel5
            //
            this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(670.4172F, 186.0417F);
            this.xrLabel5.Name                           = "xrLabel5";
            this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF                          = new System.Drawing.SizeF(156.1578F, 22.99998F);
            this.xrLabel5.StylePriority.UseFont          = false;
            this.xrLabel5.StylePriority.UseTextAlignment = false;
            this.xrLabel5.Text                           = "Ngày tuyển chính thức :";
            this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrLabel4
            //
            this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(314.3752F, 209.0417F);
            this.xrLabel4.Name                           = "xrLabel4";
            this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF                          = new System.Drawing.SizeF(114.5833F, 23F);
            this.xrLabel4.StylePriority.UseFont          = false;
            this.xrLabel4.StylePriority.UseTextAlignment = false;
            this.xrLabel4.Text                           = "Vị trí công việc :";
            this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrLabel3
            //
            this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(314.3752F, 186.0417F);
            this.xrLabel3.Name                           = "xrLabel3";
            this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF                          = new System.Drawing.SizeF(114.5832F, 23F);
            this.xrLabel3.StylePriority.UseFont          = false;
            this.xrLabel3.StylePriority.UseTextAlignment = false;
            this.xrLabel3.Text                           = "Phòng ban :";
            this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrLabel1
            //
            this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 186.0417F);
            this.xrLabel1.Name                           = "xrLabel1";
            this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF                          = new System.Drawing.SizeF(80.20834F, 23F);
            this.xrLabel1.StylePriority.UseFont          = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text                           = "Họ tên : ";
            this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrt_Seniority
            //
            this.xrt_Seniority.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrt_Seniority.LocationFloat                  = new DevExpress.Utils.PointFloat(826.5751F, 209.0417F);
            this.xrt_Seniority.Name                           = "xrt_Seniority";
            this.xrt_Seniority.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrt_Seniority.SizeF                          = new System.Drawing.SizeF(218.3829F, 23F);
            this.xrt_Seniority.StylePriority.UseFont          = false;
            this.xrt_Seniority.StylePriority.UseTextAlignment = false;
            this.xrt_Seniority.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xr_ParticipationDate
            //
            this.xr_ParticipationDate.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xr_ParticipationDate.LocationFloat                  = new DevExpress.Utils.PointFloat(826.5751F, 186.0417F);
            this.xr_ParticipationDate.Name                           = "xr_ParticipationDate";
            this.xr_ParticipationDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xr_ParticipationDate.SizeF                          = new System.Drawing.SizeF(218.3829F, 23F);
            this.xr_ParticipationDate.StylePriority.UseFont          = false;
            this.xr_ParticipationDate.StylePriority.UseTextAlignment = false;
            this.xr_ParticipationDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrl_Occupation
            //
            this.xrl_Occupation.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrl_Occupation.LocationFloat                  = new DevExpress.Utils.PointFloat(428.9585F, 209.0417F);
            this.xrl_Occupation.Name                           = "xrl_Occupation";
            this.xrl_Occupation.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_Occupation.SizeF                          = new System.Drawing.SizeF(241.4586F, 23F);
            this.xrl_Occupation.StylePriority.UseFont          = false;
            this.xrl_Occupation.StylePriority.UseTextAlignment = false;
            this.xrl_Occupation.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrl_Position
            //
            this.xrl_Position.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrl_Position.LocationFloat                  = new DevExpress.Utils.PointFloat(80.20834F, 209.0417F);
            this.xrl_Position.Name                           = "xrl_Position";
            this.xrl_Position.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_Position.SizeF                          = new System.Drawing.SizeF(234.1669F, 23F);
            this.xrl_Position.StylePriority.UseFont          = false;
            this.xrl_Position.StylePriority.UseTextAlignment = false;
            this.xrl_Position.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrl_DepartmentName
            //
            this.xrl_DepartmentName.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrl_DepartmentName.LocationFloat                  = new DevExpress.Utils.PointFloat(428.9585F, 186.0417F);
            this.xrl_DepartmentName.Name                           = "xrl_DepartmentName";
            this.xrl_DepartmentName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_DepartmentName.SizeF                          = new System.Drawing.SizeF(241.4586F, 23F);
            this.xrl_DepartmentName.StylePriority.UseFont          = false;
            this.xrl_DepartmentName.StylePriority.UseTextAlignment = false;
            this.xrl_DepartmentName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrl_FullName
            //
            this.xrl_FullName.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrl_FullName.LocationFloat                  = new DevExpress.Utils.PointFloat(80.20834F, 186.0417F);
            this.xrl_FullName.Name                           = "xrl_FullName";
            this.xrl_FullName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_FullName.SizeF                          = new System.Drawing.SizeF(234.1669F, 23F);
            this.xrl_FullName.StylePriority.UseFont          = false;
            this.xrl_FullName.StylePriority.UseTextAlignment = false;
            this.xrl_FullName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // 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, 146.625F);
            this.xrl_TitleBC.Name                           = "xrl_TitleBC";
            this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1044.958F, 23F);
            this.xrl_TitleBC.StylePriority.UseFont          = false;
            this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
            this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH HỢP ĐỒNG CỦA NHÂN VIÊN";
            this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrl_TenCongTy
            //
            this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 110.7917F);
            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(574.3446F, 21.875F);
            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;
            //
            // xrLabel2
            //
            this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 11F);
            this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 209.0417F);
            this.xrLabel2.Name                           = "xrLabel2";
            this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF                          = new System.Drawing.SizeF(80.20834F, 23F);
            this.xrLabel2.StylePriority.UseFont          = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text                           = "Chức vụ : ";
            this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable1
            });
            this.PageHeader.HeightF = 35F;
            this.PageHeader.Name    = "PageHeader";
            //
            // xrTable1
            //
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1044.958F, 34.625F);
            this.xrTable1.StylePriority.UseBorders       = false;
            this.xrTable1.StylePriority.UseFont          = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell4,
                this.xrTableCell1,
                this.xrTableCell7,
                this.xrTableCell2,
                this.xrTableCell5,
                this.xrTableCell6,
                this.xrTableCell3,
                this.xrTableCell12
            });
            this.xrTableRow1.Name   = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Name   = "xrTableCell4";
            this.xrTableCell4.Text   = "STT";
            this.xrTableCell4.Weight = 0.096422355212466268D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.Name   = "xrTableCell1";
            this.xrTableCell1.Text   = "Số hợp đồng";
            this.xrTableCell1.Weight = 0.2954839803715959D;
            //
            // xrTableCell7
            //
            this.xrTableCell7.Name   = "xrTableCell7";
            this.xrTableCell7.Text   = "Loại hợp đồng";
            this.xrTableCell7.Weight = 0.62543627430773951D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.Name   = "xrTableCell2";
            this.xrTableCell2.Text   = "Công việc";
            this.xrTableCell2.Weight = 0.45637012307178776D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.Name   = "xrTableCell5";
            this.xrTableCell5.Text   = "Ngày ký";
            this.xrTableCell5.Weight = 0.24094738231432739D;
            //
            // xrTableCell6
            //
            this.xrTableCell6.Name   = "xrTableCell6";
            this.xrTableCell6.Text   = "Ngày hiệu lực";
            this.xrTableCell6.Weight = 0.24093636541416669D;
            //
            // xrTableCell3
            //
            this.xrTableCell3.Name   = "xrTableCell3";
            this.xrTableCell3.Text   = "Ngày hết hạn";
            this.xrTableCell3.Weight = 0.23548234502478369D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Name   = "xrTableCell12";
            this.xrTableCell12.Text   = "Tình trạng hợp đồng";
            this.xrTableCell12.Weight = 0.544414299998938D;
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrl_ten3,
                this.xrl_ten2,
                this.xrl_ten1,
                this.xrtReportDate,
                this.xrl_footer1,
                this.xrl_footer3,
                this.xrl_footer2
            });
            this.ReportFooter.HeightF = 175F;
            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(775F, 137.5F);
            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(269.9579F, 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(362.5F, 137.5F);
            this.xrl_ten2.Name                           = "xrl_ten2";
            this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(289.3651F, 23F);
            this.xrl_ten2.StylePriority.UseFont          = false;
            this.xrl_ten2.StylePriority.UseTextAlignment = false;
            this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_ten1
            //
            this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 137.5F);
            this.xrl_ten1.Name                           = "xrl_ten1";
            this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(289.3651F, 23F);
            this.xrl_ten1.StylePriority.UseFont          = false;
            this.xrl_ten1.StylePriority.UseTextAlignment = false;
            this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrtReportDate
            //
            this.xrtReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
            this.xrtReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(775F, 12.5F);
            this.xrtReportDate.Name                           = "xrtReportDate";
            this.xrtReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrtReportDate.SizeF                          = new System.Drawing.SizeF(269.9579F, 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.TopCenter;
            //
            // xrl_footer1
            //
            this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 37.5F);
            this.xrl_footer1.Name                           = "xrl_footer1";
            this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(291.366F, 23F);
            this.xrl_footer1.StylePriority.UseFont          = false;
            this.xrl_footer1.StylePriority.UseTextAlignment = false;
            this.xrl_footer1.Text                           = "NGƯỜI LẬP";
            this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // 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(775F, 37.5F);
            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(269.9581F, 23F);
            this.xrl_footer3.StylePriority.UseFont          = false;
            this.xrl_footer3.StylePriority.UseTextAlignment = false;
            this.xrl_footer3.Text                           = "GIÁM ĐỐC";
            this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer2
            //
            this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(362.5F, 37.5F);
            this.xrl_footer2.Name                           = "xrl_footer2";
            this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(291.366F, 23F);
            this.xrl_footer2.StylePriority.UseFont          = false;
            this.xrl_footer2.StylePriority.UseTextAlignment = false;
            this.xrl_footer2.Text                           = "PHÒNG TCHC";
            this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // rp_ContractOfEmployee
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter
            });
            this.Landscape  = true;
            this.Margins    = new System.Drawing.Printing.Margins(58, 64, 50, 64);
            this.PageHeight = 827;
            this.PageWidth  = 1169;
            this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
            this.Version    = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepAPagarMalaDireta.resx";
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrControlStyle1   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1   = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrPanel1          = new DevExpress.XtraReports.UI.XRPanel();
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.lnome             = new DevExpress.XtraReports.UI.XRLabel();
     this.lendereco         = new DevExpress.XtraReports.UI.XRLabel();
     this.lcomplemento      = new DevExpress.XtraReports.UI.XRLabel();
     this.lbairro           = new DevExpress.XtraReports.UI.XRLabel();
     this.lcidade           = new DevExpress.XtraReports.UI.XRLabel();
     this.lcep = new DevExpress.XtraReports.UI.XRLabel();
     this.luf  = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.Detail.EvenStyleName             = "xrControlStyle1";
     this.Detail.HeightF                   = 99F;
     this.Detail.MultiColumn.ColumnCount   = 2;
     this.Detail.MultiColumn.ColumnSpacing = 6F;
     this.Detail.MultiColumn.ColumnWidth   = 254F;
     this.Detail.MultiColumn.Layout        = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail.MultiColumn.Mode          = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     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);
     //
     // 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";
     //
     // xrPanel1
     //
     this.xrPanel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPanel1.CanGrow = false;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.luf,
         this.lcep,
         this.lcidade,
         this.lbairro,
         this.lcomplemento,
         this.lendereco,
         this.lnome
     });
     this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name                     = "xrPanel1";
     this.xrPanel1.SizeF                    = new System.Drawing.SizeF(254F, 99F);
     this.xrPanel1.StylePriority.UseBorders = false;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 10F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 0F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // lnome
     //
     this.lnome.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lnome.Font          = new System.Drawing.Font("Calibri", 7F, System.Drawing.FontStyle.Bold);
     this.lnome.ForeColor     = System.Drawing.Color.Black;
     this.lnome.LocationFloat = new DevExpress.Utils.PointFloat(6.723209F, 10.00001F);
     this.lnome.Name          = "lnome";
     this.lnome.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnome.SizeF         = new System.Drawing.SizeF(237.2768F, 10F);
     this.lnome.StylePriority.UseBackColor = false;
     this.lnome.StylePriority.UseBorders   = false;
     this.lnome.StylePriority.UseFont      = false;
     this.lnome.Text          = "lnome";
     this.lnome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lnome.WordWrap      = false;
     //
     // lendereco
     //
     this.lendereco.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lendereco.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lendereco.ForeColor     = System.Drawing.Color.Black;
     this.lendereco.LocationFloat = new DevExpress.Utils.PointFloat(6.723205F, 22.29167F);
     this.lendereco.Name          = "lendereco";
     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.UseBorders   = false;
     this.lendereco.StylePriority.UseFont      = false;
     this.lendereco.Text          = "lendereco";
     this.lendereco.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lendereco.WordWrap      = false;
     //
     // lcomplemento
     //
     this.lcomplemento.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lcomplemento.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lcomplemento.ForeColor     = System.Drawing.Color.Black;
     this.lcomplemento.LocationFloat = new DevExpress.Utils.PointFloat(6.723205F, 33.29167F);
     this.lcomplemento.Name          = "lcomplemento";
     this.lcomplemento.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcomplemento.SizeF         = new System.Drawing.SizeF(237.2768F, 10F);
     this.lcomplemento.StylePriority.UseBackColor = false;
     this.lcomplemento.StylePriority.UseBorders   = false;
     this.lcomplemento.StylePriority.UseFont      = false;
     this.lcomplemento.Text          = "lcomplemento";
     this.lcomplemento.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lcomplemento.WordWrap      = false;
     //
     // lbairro
     //
     this.lbairro.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lbairro.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lbairro.ForeColor     = System.Drawing.Color.Black;
     this.lbairro.LocationFloat = new DevExpress.Utils.PointFloat(6.723209F, 44.29167F);
     this.lbairro.Name          = "lbairro";
     this.lbairro.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbairro.SizeF         = new System.Drawing.SizeF(237.2768F, 10F);
     this.lbairro.StylePriority.UseBackColor = false;
     this.lbairro.StylePriority.UseBorders   = false;
     this.lbairro.StylePriority.UseFont      = false;
     this.lbairro.Text          = "lbairro";
     this.lbairro.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lbairro.WordWrap      = false;
     //
     // lcidade
     //
     this.lcidade.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lcidade.Font          = new System.Drawing.Font("Calibri", 7F);
     this.lcidade.ForeColor     = System.Drawing.Color.Black;
     this.lcidade.LocationFloat = new DevExpress.Utils.PointFloat(6.723213F, 54.29167F);
     this.lcidade.Name          = "lcidade";
     this.lcidade.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcidade.SizeF         = new System.Drawing.SizeF(186.7055F, 10F);
     this.lcidade.StylePriority.UseBackColor = false;
     this.lcidade.StylePriority.UseBorders   = false;
     this.lcidade.StylePriority.UseFont      = false;
     this.lcidade.Text          = "lcidade";
     this.lcidade.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lcidade.WordWrap      = false;
     //
     // lcep
     //
     this.lcep.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.lcep.Font          = new System.Drawing.Font("Calibri", 7F, System.Drawing.FontStyle.Bold);
     this.lcep.ForeColor     = System.Drawing.Color.Black;
     this.lcep.LocationFloat = new DevExpress.Utils.PointFloat(6.723201F, 66.29167F);
     this.lcep.Name          = "lcep";
     this.lcep.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcep.SizeF         = new System.Drawing.SizeF(237.2768F, 10F);
     this.lcep.StylePriority.UseBackColor = false;
     this.lcep.StylePriority.UseBorders   = false;
     this.lcep.StylePriority.UseFont      = false;
     this.lcep.Text          = "lcep";
     this.lcep.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.lcep.WordWrap      = false;
     //
     // luf
     //
     this.luf.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.luf.Font          = new System.Drawing.Font("Calibri", 7F);
     this.luf.ForeColor     = System.Drawing.Color.Black;
     this.luf.LocationFloat = new DevExpress.Utils.PointFloat(193.4287F, 55.29167F);
     this.luf.Name          = "luf";
     this.luf.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.luf.SizeF         = new System.Drawing.SizeF(50.5713F, 10.00001F);
     this.luf.StylePriority.UseBackColor = false;
     this.luf.StylePriority.UseBorders   = false;
     this.luf.StylePriority.UseFont      = false;
     this.luf.Text          = "luf";
     this.luf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luf.WordWrap      = false;
     //
     // RepAPagarMalaDireta
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     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(10, 0, 10, 0);
     this.PageHeight = 1169;
     this.PageWidth  = 827;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 33;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepAPagarMalaDireta_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>
	private void InitializeComponent() {
            string resourceFileName = "SinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.SinifListesi.ResourceManager;
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel10 = 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.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.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.sinav_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.derslikid = new DevExpress.XtraReports.Parameters.Parameter();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            customSqlQuery1.Name = "ogr_sinav_derslik";
            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.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel11,
            this.xrLabel10,
            this.xrTable1,
            this.xrLabel13});
            this.Detail.HeightF = 23.75F;
            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;
            // 
            // xrLabel11
            // 
            this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel11.Name = "xrLabel11";
            this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel11.SizeF = new System.Drawing.SizeF(64.06253F, 23.75F);
            this.xrLabel11.StylePriority.UseBorders = false;
            this.xrLabel11.StylePriority.UseFont = false;
            xrSummary1.FormatString = "{0:}";
            xrSummary1.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
            xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
            this.xrLabel11.Summary = xrSummary1;
            // 
            // xrLabel10
            // 
            this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(518.1033F, 0F);
            this.xrLabel10.Name = "xrLabel10";
            this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel10.SizeF = new System.Drawing.SizeF(131.8967F, 23.75F);
            this.xrLabel10.StylePriority.UseBorders = false;
            this.xrLabel10.StylePriority.UseFont = false;
            // 
            // xrTable1
            // 
            this.xrTable1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(75F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(443.1033F, 23.75F);
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_no")});
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderDashStyle = false;
            this.xrTableCell1.StylePriority.UseBorders = false;
            this.xrTableCell1.Text = " xrTableCell1";
            this.xrTableCell1.Weight = 0.75994065325908811D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_adi")});
            this.xrTableCell2.Multiline = true;
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell2.StylePriority.UseBorders = false;
            this.xrTableCell2.StylePriority.UsePadding = false;
            this.xrTableCell2.Text = " xrTableCell2";
            this.xrTableCell2.Weight = 1.0306610344403175D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_soyadi")});
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.StylePriority.UseBorders = false;
            this.xrTableCell3.Text = " xrTableCell3";
            this.xrTableCell3.Weight = 0.92589477536983389D;
            // 
            // xrLabel13
            // 
            this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(64.0625F, 0F);
            this.xrLabel13.Multiline = true;
            this.xrLabel13.Name = "xrLabel13";
            this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel13.SizeF = new System.Drawing.SizeF(10.93748F, 23.75F);
            this.xrLabel13.StylePriority.UseBorders = false;
            this.xrLabel13.StylePriority.UseFont = false;
            this.xrLabel13.Text = "\r\n";
            // 
            // TopMargin
            // 
            this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1});
            this.TopMargin.HeightF = 83F;
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel9
            // 
            this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 50.24999F);
            this.xrLabel9.Name = "xrLabel9";
            this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF = new System.Drawing.SizeF(120.8333F, 16.75F);
            this.xrLabel9.StylePriority.UseBorders = false;
            this.xrLabel9.Text = "Sınav Tarih / Saat :";
            // 
            // xrLabel8
            // 
            this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33.5F);
            this.xrLabel8.Name = "xrLabel8";
            this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel8.SizeF = new System.Drawing.SizeF(75F, 16.74999F);
            this.xrLabel8.StylePriority.UseBorders = false;
            this.xrLabel8.Text = "Sınav Türü:";
            // 
            // xrLabel7
            // 
            this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.75F);
            this.xrLabel7.Name = "xrLabel7";
            this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF = new System.Drawing.SizeF(75F, 16.75F);
            this.xrLabel7.StylePriority.UseBorders = false;
            this.xrLabel7.Text = "Ders Adı:";
            // 
            // xrLabel6
            // 
            this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(75F, 16.75F);
            this.xrLabel6.StylePriority.UseBorders = false;
            this.xrLabel6.Text = "Bölüm Adı:";
            // 
            // xrLabel5
            // 
            this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.sinav_saati")});
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(195.2141F, 50.24999F);
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(146.1054F, 16.75F);
            this.xrLabel5.StylePriority.UseBorders = false;
            // 
            // xrLabel4
            // 
            this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.tarih")});
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(120.8333F, 50.24999F);
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(74.38071F, 16.75F);
            this.xrLabel4.StylePriority.UseBorders = false;
            // 
            // xrLabel3
            // 
            this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ders_adi")});
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(75F, 16.75F);
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(485.0694F, 16.75F);
            this.xrLabel3.StylePriority.UseBorders = false;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.sinav_tur")});
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(75F, 33.5F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 16.74999F);
            this.xrLabel2.StylePriority.UseBorders = false;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.bolum_adi")});
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(75F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(485.0694F, 16.75F);
            this.xrLabel1.StylePriority.UseBorders = false;
            // 
            // BottomMargin
            // 
            this.BottomMargin.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.BottomMargin.HeightF = 10.62501F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.StylePriority.UseBorders = false;
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // reportHeaderBand1
            // 
            this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel12,
            this.xrTable3});
            this.reportHeaderBand1.HeightF = 25.00003F;
            this.reportHeaderBand1.Name = "reportHeaderBand1";
            // 
            // xrLabel12
            // 
            this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel12.Name = "xrLabel12";
            this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel12.SizeF = new System.Drawing.SizeF(64.06253F, 25.00003F);
            this.xrLabel12.StylePriority.UseBorders = false;
            this.xrLabel12.Text = "Sıra No";
            // 
            // xrTable3
            // 
            this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(64.06253F, 0F);
            this.xrTable3.Name = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3});
            this.xrTable3.SizeF = new System.Drawing.SizeF(585.9374F, 25.00001F);
            this.xrTable3.StylePriority.UseBorders = false;
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseBorders = false;
            this.xrTableCell4.Text = " Öğrenci No";
            this.xrTableCell4.Weight = 0.76618290343549933D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseBorders = false;
            this.xrTableCell5.Text = " Öğrenci Adı";
            this.xrTableCell5.Weight = 0.94315419211474694D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.StylePriority.UseBorders = false;
            this.xrTableCell7.Text = " Öğrenci Soyadı";
            this.xrTableCell7.Weight = 0.94315465469699966D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Text = " İmza";
            this.xrTableCell8.Weight = 0.77053532448251061D;
            // 
            // 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);
            // 
            // sinav_id
            // 
            this.sinav_id.Description = "sinav_id";
            this.sinav_id.Name = "sinav_id";
            this.sinav_id.Type = typeof(int);
            this.sinav_id.ValueInfo = "1";
            this.sinav_id.Visible = false;
            // 
            // derslikid
            // 
            this.derslikid.Description = "derslikid";
            dynamicListLookUpSettings1.DataAdapter = null;
            dynamicListLookUpSettings1.DataMember = "ogr_sinav_derslik";
            dynamicListLookUpSettings1.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings1.DisplayMember = "derslik_id";
            dynamicListLookUpSettings1.FilterString = null;
            dynamicListLookUpSettings1.ValueMember = "derslik_id";
            this.derslikid.LookUpSettings = dynamicListLookUpSettings1;
            this.derslikid.Name = "derslikid";
            this.derslikid.Type = typeof(int);
            this.derslikid.ValueInfo = "0";
            this.derslikid.Visible = false;
            // 
            // SinifListesi
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.reportHeaderBand1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "ogr_sinav_derslik";
            this.DataSource = this.sqlDataSource1;
            this.ExportOptions.Image.ExportMode = DevExpress.XtraPrinting.ImageExportMode.DifferentFiles;
            this.ExportOptions.Image.Format = System.Drawing.Imaging.ImageFormat.Wmf;
            this.FilterString = "[derslik_id] = ?derslikid And [Sinav_id] = ?sinav_id";
            this.Margins = new System.Drawing.Printing.Margins(100, 100, 83, 11);
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.sinav_id,
            this.derslikid});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_usstfeed_BaoCaoNhanVienNghiOmThaiSan.resx";

        System.Resources.ResourceManager resources = global::Resources.rp_usstfeed_BaoCaoNhanVienNghiOmThaiSan.ResourceManager;
        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader    = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.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.ReportFooter  = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 30F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(969F, 30F);
        this.xrTable2.StylePriority.UseBorders = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont          = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 0.21527770289666809D;
        this.xrTableCell7.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint_1);
        //
        // xrTableCell8
        //
        this.xrTableCell8.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell8.Name    = "xrTableCell8";
        this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell8.StylePriority.UseFont          = false;
        this.xrTableCell8.StylePriority.UsePadding       = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell8.Weight        = 0.35069439711393163D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell9.Name    = "xrTableCell9";
        this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell9.StylePriority.UseFont          = false;
        this.xrTableCell9.StylePriority.UsePadding       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell9.Weight        = 0.65023006014262685D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell10.StylePriority.UseFont          = false;
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell10.Weight        = 0.91228043405633219D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell11.Multiline                      = true;
        this.xrTableCell11.Name                           = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseFont          = false;
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell11.Weight                         = 0.44246690118275928D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTableCell12.Multiline                      = true;
        this.xrTableCell12.Name                           = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseFont          = false;
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight                         = 0.4290505046076819D;
        //
        // TopMargin
        //
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 162F;
        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(137.5F, 48.33333F);
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 125.875F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(969F, 26.125F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Ngày báo cáo..............";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 96.62498F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(969F, 29.25F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "BÁO CÁO NHÂN VIÊN NGHỈ ỐM THAI SẢN";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 55.66667F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(282.2917F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "CÔNG TY CỔ PHẦN AUSTFEED VIỆT NAM";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.PageHeader.HeightF = 57.91667F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(969F, 57.91667F);
        this.xrTable3.StylePriority.UseBorders = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell13.Name = "xrTableCell13";
        this.xrTableCell13.StylePriority.UseFont          = false;
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.Text          = "STT";
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell13.Weight        = 0.21527770289666809D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = "Mã nhân viên";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell14.Weight        = 0.35069439711393163D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseFont          = false;
        this.xrTableCell15.StylePriority.UseTextAlignment = false;
        this.xrTableCell15.Text          = "Họ và tên";
        this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell15.Weight        = 0.65023006014262685D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseFont          = false;
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "Chức vụ";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.9122804340563323D;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell17.Multiline                      = true;
        this.xrTableCell17.Name                           = "xrTableCell17";
        this.xrTableCell17.StylePriority.UseFont          = false;
        this.xrTableCell17.StylePriority.UseTextAlignment = false;
        this.xrTableCell17.Text                           = "Thời gian\r\nbắt đầu nghỉ";
        this.xrTableCell17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell17.Weight                         = 0.44246690118275928D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell18.Multiline                      = true;
        this.xrTableCell18.Name                           = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text                           = "Thời gian\r\nkết thúc nghỉ";
        this.xrTableCell18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell18.Weight                         = 0.4290505046076819D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel10,
            this.xrLabel6,
            this.xrLabel8,
            this.xrLabel9,
            this.xrLabel4,
            this.xrLabel5,
            this.xrLabel7
        });
        this.ReportFooter.HeightF = 186F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrLabel10
        //
        this.xrLabel10.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(687.5F, 137.5F);
        this.xrLabel10.Name                           = "xrLabel10";
        this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel10.StylePriority.UseFont          = false;
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel6
        //
        this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(325F, 25F);
        this.xrLabel6.Name                           = "xrLabel6";
        this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel6.StylePriority.UseFont          = false;
        this.xrLabel6.StylePriority.UseTextAlignment = false;
        this.xrLabel6.Text                           = "Kế toán trưởng";
        this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel8
        //
        this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(612.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(326.0417F, 23F);
        this.xrLabel8.StylePriority.UseFont          = false;
        this.xrLabel8.StylePriority.UseTextAlignment = false;
        this.xrLabel8.Text                           = "Hưng Yên, ngày 30 tháng 12 năm 2014";
        this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel9
        //
        this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(687.5F, 25F);
        this.xrLabel9.Name                           = "xrLabel9";
        this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel9.StylePriority.UseFont          = false;
        this.xrLabel9.StylePriority.UseTextAlignment = false;
        this.xrLabel9.Text                           = "Trưởng phòng HCNS";
        this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(37.5F, 25F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(201.0417F, 31.33334F);
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Người lập";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(37.5F, 137.5F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel7
        //
        this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(325F, 137.5F);
        this.xrLabel7.Name                           = "xrLabel7";
        this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                          = new System.Drawing.SizeF(201.0417F, 23F);
        this.xrLabel7.StylePriority.UseFont          = false;
        this.xrLabel7.StylePriority.UseTextAlignment = false;
        this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // rp_usstfeed_BaoCaoNhanVienNghiOmThaiSan
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter
        });
        this.Landscape  = true;
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #27
0
        private void InitializeComponent()
        {
            XRSummary xrSummary1 = new XRSummary();
            XRSummary xrSummary2 = new XRSummary();
            Detail = new DetailBand();
            xrLabel21 = new XRLabel();
            xrLabel20 = new XRLabel();
            xrLabel19 = new XRLabel();
            xrLabel18 = new XRLabel();
            xrLabel26 = new XRLabel();
            TopMargin = new TopMarginBand();
            labelcompany = new XRLabel();
            xrLabel1 = new XRLabel();
            BottomMargin = new BottomMarginBand();
            xrLabel2 = new XRLabel();
            xrLabel3 = new XRLabel();
            xrLabel4 = new XRLabel();
            xrLabel5 = new XRLabel();
            PageHeader = new PageHeaderBand();
            xrLine2 = new XRLine();
            xrLine1 = new XRLine();
            xrLabel32 = new XRLabel();
            lbldoctor = new XRLabel();
            xrLabel23 = new XRLabel();
            xrLabel22 = new XRLabel();
            xrLabel15 = new XRLabel();
            xrLabel29 = new XRLabel();
            xrLabel30 = new XRLabel();
            xrLabel31 = new XRLabel();
            xrLabel16 = new XRLabel();
            xrLabel17 = new XRLabel();
            xrLabel10 = new XRLabel();
            xrLabel9 = new XRLabel();
            xrLabel6 = new XRLabel();
            xrLabel8 = new XRLabel();
            xrLabel7 = new XRLabel();
            ReportFooter = new ReportFooterBand();
            xrLine3 = new XRLine();
            xrLabel34 = new XRLabel();
            xrLabel33 = new XRLabel();
            patdisc = new XRLabel();
            compdiscamt = new XRLabel();
            xrLabel25 = new XRLabel();
            lbldiscount = new XRLabel();
            xrLabel13 = new XRLabel();
            lblpatshare = new XRLabel();
            xrLabel11 = new XRLabel();
            xrLabel24 = new XRLabel();
            xrCrossBandBox1 = new XRCrossBandBox();
            ((ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            Detail.Controls.AddRange(new XRControl[] {
            xrLabel21,
            xrLabel20,
            xrLabel19,
            xrLabel18,
            xrLabel26});
            Detail.HeightF = 20F;
            Detail.KeepTogether = true;
            Detail.Name = "Detail";
            Detail.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            Detail.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel21
            // 
            xrLabel21.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.LINETOTAL", "{0:n2}")});
            xrLabel21.LocationFloat = new PointFloat(625.0834F, 0F);
            xrLabel21.Name = "xrLabel21";
            xrLabel21.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel21.SizeF = new SizeF(72.91669F, 20F);
            xrLabel21.StylePriority.UseTextAlignment = false;
            xrLabel21.Text = "xrLabel21";
            xrLabel21.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel20
            // 
            xrLabel20.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.INVRATE", "{0:n2}")});
            xrLabel20.LocationFloat = new PointFloat(566.1246F, 0F);
            xrLabel20.Name = "xrLabel20";
            xrLabel20.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel20.SizeF = new SizeF(54.16656F, 20F);
            xrLabel20.StylePriority.UseTextAlignment = false;
            xrLabel20.Text = "xrLabel20";
            xrLabel20.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel19
            // 
            xrLabel19.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.QTY", "{0:#,#}")});
            xrLabel19.LocationFloat = new PointFloat(515.2913F, 0F);
            xrLabel19.Name = "xrLabel19";
            xrLabel19.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel19.SizeF = new SizeF(46.62515F, 20F);
            xrLabel19.StylePriority.UseTextAlignment = false;
            xrLabel19.Text = "[SalesInvList.QTY]";
            xrLabel19.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel18
            // 
            xrLabel18.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.ITEMNAME")});
            xrLabel18.LocationFloat = new PointFloat(31.54163F, 0F);
            xrLabel18.Name = "xrLabel18";
            xrLabel18.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel18.SizeF = new SizeF(470.0833F, 20F);
            xrLabel18.StylePriority.UseTextAlignment = false;
            xrLabel18.Text = "xrLabel18";
            xrLabel18.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel26
            // 
            xrLabel26.LocationFloat = new PointFloat(2.083333F, 0F);
            xrLabel26.Name = "xrLabel26";
            xrLabel26.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel26.SizeF = new SizeF(26.33333F, 20F);
            xrLabel26.StylePriority.UseTextAlignment = false;
            xrSummary1.Func = SummaryFunc.RecordNumber;
            xrSummary1.Running = SummaryRunning.Report;
            xrLabel26.Summary = xrSummary1;
            xrLabel26.Text = "xrLabel26";
            xrLabel26.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // TopMargin
            // 
            TopMargin.Controls.AddRange(new XRControl[] {
            labelcompany,
            xrLabel1});
            TopMargin.HeightF = 69F;
            TopMargin.Name = "TopMargin";
            TopMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            TopMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // labelcompany
            // 
            labelcompany.Font = new Font("Tahoma", 12F, FontStyle.Bold);
            labelcompany.LocationFloat = new PointFloat(85.41666F, 15.25F);
            labelcompany.Name = "labelcompany";
            labelcompany.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            labelcompany.SizeF = new SizeF(534.8745F, 25.5F);
            labelcompany.StylePriority.UseFont = false;
            labelcompany.StylePriority.UseTextAlignment = false;
            labelcompany.Text = "labelcompany";
            labelcompany.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel1
            // 
            xrLabel1.Borders = ((BorderSide.Left | BorderSide.Top) 
                                | BorderSide.Right) 
                               | BorderSide.Bottom;
            xrLabel1.Font = new Font("Tahoma", 9.75F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel1.LocationFloat = new PointFloat(256.1667F, 43.75F);
            xrLabel1.Name = "xrLabel1";
            xrLabel1.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel1.SizeF = new SizeF(182.7082F, 23.75F);
            xrLabel1.StylePriority.UseBorders = false;
            xrLabel1.StylePriority.UseFont = false;
            xrLabel1.StylePriority.UseTextAlignment = false;
            xrLabel1.Text = "Sales Invoice";
            xrLabel1.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // BottomMargin
            // 
            BottomMargin.HeightF = 25F;
            BottomMargin.Name = "BottomMargin";
            BottomMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            BottomMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel2
            // 
            xrLabel2.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel2.LocationFloat = new PointFloat(455.6246F, 6F);
            xrLabel2.Name = "xrLabel2";
            xrLabel2.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel2.SizeF = new SizeF(87.5F, 18F);
            xrLabel2.StylePriority.UseFont = false;
            xrLabel2.StylePriority.UseTextAlignment = false;
            xrLabel2.Text = "Invoice No. :";
            xrLabel2.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel3
            // 
            xrLabel3.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel3.LocationFloat = new PointFloat(455.6246F, 30.00002F);
            xrLabel3.Name = "xrLabel3";
            xrLabel3.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel3.SizeF = new SizeF(87.5F, 18F);
            xrLabel3.StylePriority.UseFont = false;
            xrLabel3.StylePriority.UseTextAlignment = false;
            xrLabel3.Text = "Date :";
            xrLabel3.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel4
            // 
            xrLabel4.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel4.LocationFloat = new PointFloat(5.124998F, 6.00001F);
            xrLabel4.Name = "xrLabel4";
            xrLabel4.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel4.SizeF = new SizeF(129.4583F, 18F);
            xrLabel4.StylePriority.UseFont = false;
            xrLabel4.StylePriority.UseTextAlignment = false;
            xrLabel4.Text = "Customer name :";
            xrLabel4.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel5
            // 
            xrLabel5.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel5.LocationFloat = new PointFloat(5.000003F, 30.00002F);
            xrLabel5.Name = "xrLabel5";
            xrLabel5.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel5.SizeF = new SizeF(129.5833F, 18F);
            xrLabel5.StylePriority.UseFont = false;
            xrLabel5.StylePriority.UseTextAlignment = false;
            xrLabel5.Text = "Doctor :";
            xrLabel5.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // PageHeader
            // 
            PageHeader.Controls.AddRange(new XRControl[] {
            xrLine2,
            xrLine1,
            xrLabel32,
            lbldoctor,
            xrLabel23,
            xrLabel22,
            xrLabel4,
            xrLabel15,
            xrLabel5,
            xrLabel29,
            xrLabel30,
            xrLabel31,
            xrLabel3,
            xrLabel2,
            xrLabel16,
            xrLabel17,
            xrLabel10,
            xrLabel9,
            xrLabel6,
            xrLabel8,
            xrLabel7});
            PageHeader.HeightF = 112.4167F;
            PageHeader.Name = "PageHeader";
            // 
            // xrLine2
            // 
            xrLine2.LocationFloat = new PointFloat(3.208333F, 110.4167F);
            xrLine2.Name = "xrLine2";
            xrLine2.SizeF = new SizeF(700.6667F, 2F);
            // 
            // xrLine1
            // 
            xrLine1.LocationFloat = new PointFloat(3.333333F, 86.54166F);
            xrLine1.Name = "xrLine1";
            xrLine1.SizeF = new SizeF(699.3334F, 2F);
            // 
            // xrLabel32
            // 
            xrLabel32.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDNO")});
            xrLabel32.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel32.LocationFloat = new PointFloat(543.1246F, 54.00003F);
            xrLabel32.Name = "xrLabel32";
            xrLabel32.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel32.SizeF = new SizeF(154.9586F, 18F);
            xrLabel32.StylePriority.UseFont = false;
            xrLabel32.StylePriority.UseTextAlignment = false;
            xrLabel32.Text = "xrLabel32";
            xrLabel32.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lbldoctor
            // 
            lbldoctor.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            lbldoctor.LocationFloat = new PointFloat(134.5833F, 30F);
            lbldoctor.Name = "lbldoctor";
            lbldoctor.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldoctor.SizeF = new SizeF(291.6667F, 18F);
            lbldoctor.StylePriority.UseFont = false;
            lbldoctor.StylePriority.UseTextAlignment = false;
            lbldoctor.Text = "lbldoctorname";
            lbldoctor.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel23
            // 
            xrLabel23.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.GRADE")});
            xrLabel23.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel23.LocationFloat = new PointFloat(327.3748F, 54.00003F);
            xrLabel23.Name = "xrLabel23";
            xrLabel23.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel23.SizeF = new SizeF(122.2498F, 18F);
            xrLabel23.StylePriority.UseFont = false;
            xrLabel23.StylePriority.UseTextAlignment = false;
            xrLabel23.Text = "xrLabel23";
            xrLabel23.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel23.Visible = false;
            // 
            // xrLabel22
            // 
            xrLabel22.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDID")});
            xrLabel22.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel22.LocationFloat = new PointFloat(134.5833F, 54.00001F);
            xrLabel22.Name = "xrLabel22";
            xrLabel22.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel22.SizeF = new SizeF(142.9167F, 18F);
            xrLabel22.StylePriority.UseFont = false;
            xrLabel22.StylePriority.UseTextAlignment = false;
            xrLabel22.Text = "xrLabel22";
            xrLabel22.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel15
            // 
            xrLabel15.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTNAME")});
            xrLabel15.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel15.LocationFloat = new PointFloat(134.5833F, 5.999994F);
            xrLabel15.Name = "xrLabel15";
            xrLabel15.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel15.SizeF = new SizeF(291.6667F, 18F);
            xrLabel15.StylePriority.UseFont = false;
            xrLabel15.StylePriority.UseTextAlignment = false;
            xrLabel15.Text = "xrLabel15";
            xrLabel15.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel29
            // 
            xrLabel29.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel29.LocationFloat = new PointFloat(455.6246F, 54.00003F);
            xrLabel29.Name = "xrLabel29";
            xrLabel29.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel29.SizeF = new SizeF(87.5F, 18F);
            xrLabel29.StylePriority.UseFont = false;
            xrLabel29.StylePriority.UseTextAlignment = false;
            xrLabel29.Text = "Policy No. :";
            xrLabel29.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel30
            // 
            xrLabel30.Font = new Font("Tahoma", 9.75F);
            xrLabel30.LocationFloat = new PointFloat(280.5832F, 54.00003F);
            xrLabel30.Name = "xrLabel30";
            xrLabel30.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel30.SizeF = new SizeF(46.79153F, 18F);
            xrLabel30.StylePriority.UseFont = false;
            xrLabel30.StylePriority.UseTextAlignment = false;
            xrLabel30.Text = "Class :";
            xrLabel30.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel30.Visible = false;
            // 
            // xrLabel31
            // 
            xrLabel31.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel31.LocationFloat = new PointFloat(4.166667F, 54.00003F);
            xrLabel31.Name = "xrLabel31";
            xrLabel31.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel31.SizeF = new SizeF(130.4166F, 18F);
            xrLabel31.StylePriority.UseFont = false;
            xrLabel31.StylePriority.UseTextAlignment = false;
            xrLabel31.Text = "Member Id / File No. :";
            xrLabel31.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel16
            // 
            xrLabel16.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.SINVNO")});
            xrLabel16.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel16.LocationFloat = new PointFloat(543.1246F, 6.00001F);
            xrLabel16.Name = "xrLabel16";
            xrLabel16.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel16.SizeF = new SizeF(154.8755F, 18F);
            xrLabel16.StylePriority.UseFont = false;
            xrLabel16.StylePriority.UseTextAlignment = false;
            xrLabel16.Text = "xrLabel16";
            xrLabel16.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel17
            // 
            xrLabel17.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.TRANDATE")});
            xrLabel17.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel17.LocationFloat = new PointFloat(543.1246F, 30.00002F);
            xrLabel17.Name = "xrLabel17";
            xrLabel17.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel17.SizeF = new SizeF(153.8754F, 18F);
            xrLabel17.StylePriority.UseFont = false;
            xrLabel17.StylePriority.UseTextAlignment = false;
            xrLabel17.Text = "xrLabel17";
            xrLabel17.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel10
            // 
            xrLabel10.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel10.LocationFloat = new PointFloat(625.0833F, 88.54166F);
            xrLabel10.Name = "xrLabel10";
            xrLabel10.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel10.SizeF = new SizeF(72.91669F, 19.79166F);
            xrLabel10.StylePriority.UseFont = false;
            xrLabel10.StylePriority.UseTextAlignment = false;
            xrLabel10.Text = "Total";
            xrLabel10.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel9
            // 
            xrLabel9.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel9.LocationFloat = new PointFloat(568.1246F, 88.54166F);
            xrLabel9.Name = "xrLabel9";
            xrLabel9.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel9.SizeF = new SizeF(52.16663F, 19.79166F);
            xrLabel9.StylePriority.UseFont = false;
            xrLabel9.StylePriority.UseTextAlignment = false;
            xrLabel9.Text = "Price";
            xrLabel9.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel6
            // 
            xrLabel6.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel6.LocationFloat = new PointFloat(4.083333F, 88.62505F);
            xrLabel6.Name = "xrLabel6";
            xrLabel6.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel6.SizeF = new SizeF(26.33333F, 19.79166F);
            xrLabel6.StylePriority.UseFont = false;
            xrLabel6.StylePriority.UseTextAlignment = false;
            xrLabel6.Text = "S #";
            xrLabel6.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel8
            // 
            xrLabel8.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel8.LocationFloat = new PointFloat(518.1666F, 88.54166F);
            xrLabel8.Name = "xrLabel8";
            xrLabel8.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel8.SizeF = new SizeF(43.75009F, 19.79166F);
            xrLabel8.StylePriority.UseFont = false;
            xrLabel8.StylePriority.UseTextAlignment = false;
            xrLabel8.Text = "Qty";
            xrLabel8.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel7
            // 
            xrLabel7.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel7.LocationFloat = new PointFloat(31.54163F, 88.62505F);
            xrLabel7.Name = "xrLabel7";
            xrLabel7.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel7.SizeF = new SizeF(470.0833F, 19.79167F);
            xrLabel7.StylePriority.UseFont = false;
            xrLabel7.StylePriority.UseTextAlignment = false;
            xrLabel7.Text = "Item name";
            xrLabel7.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // ReportFooter
            // 
            ReportFooter.Controls.AddRange(new XRControl[] {
            xrLine3,
            xrLabel34,
            xrLabel33,
            patdisc,
            compdiscamt,
            xrLabel25,
            lbldiscount,
            xrLabel13,
            lblpatshare,
            xrLabel11,
            xrLabel24});
            ReportFooter.Font = new Font("Tahoma", 9F);
            ReportFooter.HeightF = 81.25003F;
            ReportFooter.KeepTogether = true;
            ReportFooter.Name = "ReportFooter";
            ReportFooter.StylePriority.UseFont = false;
            // 
            // xrLine3
            // 
            xrLine3.LocationFloat = new PointFloat(3.25F, 0F);
            xrLine3.Name = "xrLine3";
            xrLine3.SizeF = new SizeF(699.5833F, 2.083333F);
            // 
            // xrLabel34
            // 
            xrLabel34.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTOMERFIXDISC", "{0:#.00}")});
            xrLabel34.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel34.LocationFloat = new PointFloat(451.5833F, 20.83333F);
            xrLabel34.Name = "xrLabel34";
            xrLabel34.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel34.SizeF = new SizeF(60.25003F, 18F);
            xrLabel34.StylePriority.UseFont = false;
            xrLabel34.StylePriority.UseTextAlignment = false;
            xrLabel34.Text = "xrLabel34";
            xrLabel34.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel33
            // 
            xrLabel33.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDDISC", "{0:n2}")});
            xrLabel33.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel33.LocationFloat = new PointFloat(420.9164F, 41.41665F);
            xrLabel33.Name = "xrLabel33";
            xrLabel33.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel33.SizeF = new SizeF(60.25003F, 18F);
            xrLabel33.StylePriority.UseFont = false;
            xrLabel33.StylePriority.UseTextAlignment = false;
            xrLabel33.Text = "xrLabel33";
            xrLabel33.TextAlignment = TextAlignment.MiddleRight;
            // 
            // patdisc
            // 
            patdisc.LocationFloat = new PointFloat(598.75F, 41.62499F);
            patdisc.Name = "patdisc";
            patdisc.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            patdisc.SizeF = new SizeF(95.37476F, 17.79165F);
            patdisc.StylePriority.UseTextAlignment = false;
            patdisc.TextAlignment = TextAlignment.MiddleRight;
            // 
            // compdiscamt
            // 
            compdiscamt.LocationFloat = new PointFloat(598.75F, 20.62499F);
            compdiscamt.Name = "compdiscamt";
            compdiscamt.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            compdiscamt.SizeF = new SizeF(96.24994F, 21F);
            compdiscamt.StylePriority.UseTextAlignment = false;
            compdiscamt.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel25
            // 
            xrLabel25.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.NETAMT", "{0:n2}")});
            xrLabel25.LocationFloat = new PointFloat(598.7499F, 0F);
            xrLabel25.Name = "xrLabel25";
            xrLabel25.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel25.SizeF = new SizeF(98.24994F, 20F);
            xrLabel25.StylePriority.UseTextAlignment = false;
            xrLabel25.Text = "xrLabel25";
            xrLabel25.TextAlignment = TextAlignment.MiddleRight;
            // 
            // lbldiscount
            // 
            lbldiscount.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lbldiscount.LocationFloat = new PointFloat(511.8333F, 20.83333F);
            lbldiscount.Name = "lbldiscount";
            lbldiscount.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldiscount.SizeF = new SizeF(86.91678F, 21F);
            lbldiscount.StylePriority.UseFont = false;
            lbldiscount.StylePriority.UseTextAlignment = false;
            lbldiscount.Text = "% Discount : ";
            lbldiscount.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel13
            // 
            xrLabel13.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel13.LocationFloat = new PointFloat(509.8332F, 60.41667F);
            xrLabel13.Name = "xrLabel13";
            xrLabel13.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel13.SizeF = new SizeF(87.91675F, 18.79166F);
            xrLabel13.StylePriority.UseFont = false;
            xrLabel13.StylePriority.UseTextAlignment = false;
            xrLabel13.Text = "Net Amount :";
            xrLabel13.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lblpatshare
            // 
            lblpatshare.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lblpatshare.LocationFloat = new PointFloat(481.9999F, 40.625F);
            lblpatshare.Name = "lblpatshare";
            lblpatshare.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lblpatshare.SizeF = new SizeF(116.7501F, 19.79167F);
            lblpatshare.StylePriority.UseFont = false;
            lblpatshare.StylePriority.UseTextAlignment = false;
            lblpatshare.Text = "% Patient Share :";
            lblpatshare.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel11
            // 
            xrLabel11.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel11.LocationFloat = new PointFloat(528.5831F, 0.2083461F);
            xrLabel11.Name = "xrLabel11";
            xrLabel11.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel11.SizeF = new SizeF(70.16687F, 19.79166F);
            xrLabel11.StylePriority.UseFont = false;
            xrLabel11.StylePriority.UseTextAlignment = false;
            xrLabel11.Text = "Sub total :";
            xrLabel11.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel24
            // 
            xrLabel24.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CREDITAMT", "{0:#.00}")});
            xrLabel24.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel24.LocationFloat = new PointFloat(598.7499F, 59.54167F);
            xrLabel24.Name = "xrLabel24";
            xrLabel24.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel24.SizeF = new SizeF(94.24994F, 19.625F);
            xrLabel24.StylePriority.UseFont = false;
            xrLabel24.StylePriority.UseTextAlignment = false;
            xrSummary2.FormatString = "{0:n2}";
            xrLabel24.Summary = xrSummary2;
            xrLabel24.Text = "xrLabel24";
            xrLabel24.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrCrossBandBox1
            // 
            xrCrossBandBox1.BorderWidth = 1F;
            xrCrossBandBox1.EndBand = PageHeader;
            xrCrossBandBox1.EndPointFloat = new PointFloat(2.083333F, 82.29166F);
            xrCrossBandBox1.LocationFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.Name = "xrCrossBandBox1";
            xrCrossBandBox1.StartBand = PageHeader;
            xrCrossBandBox1.StartPointFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.WidthF = 704.1667F;
            // 
            // RptSalesInsurance
            // 
            Bands.AddRange(new Band[] {
            Detail,
            TopMargin,
            BottomMargin,
            PageHeader,
            ReportFooter});
            CrossBandControls.AddRange(new XRCrossBandControl[] {
            xrCrossBandBox1});
            Margins = new Margins(54, 66, 69, 25);
            PageHeight = 1169;
            PageWidth = 827;
            PaperKind = PaperKind.A4;
            ShowPrintMarginsWarning = false;
            SnapToGrid = false;
            Version = "14.1";
            ((ISupportInitialize)(this)).EndInit();

        }
Example #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.printableCC_S04b6DN = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrYear       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrMonth      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTitle      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6     = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrPanel3     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel59    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel49    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel50    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel51    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel54    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel55    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel56    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel57    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel58    = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.printableCC_S04b6DN
     });
     this.Detail.HeightF       = 75F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // printableCC_S04b6DN
     //
     this.printableCC_S04b6DN.LocationFloat = new DevExpress.Utils.PointFloat(87.5F, 0F);
     this.printableCC_S04b6DN.Name          = "printableCC_S04b6DN";
     this.printableCC_S04b6DN.SizeF         = new System.Drawing.SizeF(826.13F, 75F);
     //
     // TopMargin
     //
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrYear,
         this.xrLabel14,
         this.xrLabel11,
         this.xrMonth,
         this.xrTitle,
         this.xrLabel9,
         this.xrPanel2
     });
     this.GroupHeader1.HeightF = 247.5856F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrYear
     //
     this.xrYear.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrYear.LocationFloat                  = new DevExpress.Utils.PointFloat(540.4164F, 193.815F);
     this.xrYear.Name                           = "xrYear";
     this.xrYear.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrYear.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrYear.StylePriority.UseFont          = false;
     this.xrYear.StylePriority.UseTextAlignment = false;
     this.xrYear.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(504.1705F, 193.815F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "năm";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(408.4236F, 193.815F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Tháng";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrMonth
     //
     this.xrMonth.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrMonth.LocationFloat                  = new DevExpress.Utils.PointFloat(456.2971F, 193.815F);
     this.xrMonth.Name                           = "xrMonth";
     this.xrMonth.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrMonth.SizeF                          = new System.Drawing.SizeF(47.87332F, 23F);
     this.xrMonth.StylePriority.UseFont          = false;
     this.xrMonth.StylePriority.UseTextAlignment = false;
     this.xrMonth.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTitle
     //
     this.xrTitle.Font                           = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(324.9999F, 137.5F);
     this.xrTitle.Name                           = "xrTitle";
     this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTitle.SizeF                          = new System.Drawing.SizeF(355.383F, 23F);
     this.xrTitle.StylePriority.UseFont          = false;
     this.xrTitle.StylePriority.UseTextAlignment = false;
     this.xrTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(174.2354F, 99.0678F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "BẢNG KÊ SỐ 6";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 10F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(979.9997F, 72.11725F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 7.117249F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 7.117249F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = ".........................";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 39.11728F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Địa chỉ:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 39.11728F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = ".........................";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 7.117249F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(234.2751F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Mẫu số S04b6-DN";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 30.11721F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(234.2751F, 32.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Ban hành theo QĐ số 15/2006/QĐ-BTC \r\nngày 20/03/2006 của Bộ trưởng BTC)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel3
     });
     this.GroupFooter1.HeightF = 283.1179F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrPanel3
     //
     this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel59,
         this.xrLabel48,
         this.xrLabel49,
         this.xrLabel50,
         this.xrLabel51,
         this.xrLabel54,
         this.xrLabel55,
         this.xrLabel56,
         this.xrLabel57,
         this.xrLabel58
     });
     this.xrPanel3.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
     this.xrPanel3.Name          = "xrPanel3";
     this.xrPanel3.SizeF         = new System.Drawing.SizeF(978.5001F, 224.2675F);
     //
     // xrLabel59
     //
     this.xrLabel59.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel59.LocationFloat                  = new DevExpress.Utils.PointFloat(686.2237F, 9.201468F);
     this.xrLabel59.Name                           = "xrLabel59";
     this.xrLabel59.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel59.SizeF                          = new System.Drawing.SizeF(46.06677F, 22.99999F);
     this.xrLabel59.StylePriority.UseFont          = false;
     this.xrLabel59.StylePriority.UseTextAlignment = false;
     this.xrLabel59.Text                           = "Ngày";
     this.xrLabel59.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel48
     //
     this.xrLabel48.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel48.LocationFloat                  = new DevExpress.Utils.PointFloat(51.36464F, 32.20146F);
     this.xrLabel48.Name                           = "xrLabel48";
     this.xrLabel48.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel48.StylePriority.UseFont          = false;
     this.xrLabel48.StylePriority.UseTextAlignment = false;
     this.xrLabel48.Text                           = "Người ghi sổ";
     this.xrLabel48.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel49
     //
     this.xrLabel49.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel49.LocationFloat                  = new DevExpress.Utils.PointFloat(51.36464F, 55.20156F);
     this.xrLabel49.Name                           = "xrLabel49";
     this.xrLabel49.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel49.StylePriority.UseFont          = false;
     this.xrLabel49.StylePriority.UseTextAlignment = false;
     this.xrLabel49.Text                           = "(Ký, họ tên)";
     this.xrLabel49.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel50
     //
     this.xrLabel50.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel50.LocationFloat                  = new DevExpress.Utils.PointFloat(748.4842F, 55.20145F);
     this.xrLabel50.Name                           = "xrLabel50";
     this.xrLabel50.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel50.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel50.StylePriority.UseFont          = false;
     this.xrLabel50.StylePriority.UseTextAlignment = false;
     this.xrLabel50.Text                           = "(Ký, họ tên)";
     this.xrLabel50.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel51
     //
     this.xrLabel51.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel51.LocationFloat                  = new DevExpress.Utils.PointFloat(748.4844F, 32.20142F);
     this.xrLabel51.Name                           = "xrLabel51";
     this.xrLabel51.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel51.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel51.StylePriority.UseFont          = false;
     this.xrLabel51.StylePriority.UseTextAlignment = false;
     this.xrLabel51.Text                           = "Kế toán trưởng";
     this.xrLabel51.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel54
     //
     this.xrLabel54.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel54.LocationFloat                  = new DevExpress.Utils.PointFloat(822.2237F, 9.201468F);
     this.xrLabel54.Name                           = "xrLabel54";
     this.xrLabel54.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel54.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel54.StylePriority.UseFont          = false;
     this.xrLabel54.StylePriority.UseTextAlignment = false;
     this.xrLabel54.Text                           = "........";
     this.xrLabel54.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel55
     //
     this.xrLabel55.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel55.LocationFloat                  = new DevExpress.Utils.PointFloat(906.3428F, 9.201468F);
     this.xrLabel55.Name                           = "xrLabel55";
     this.xrLabel55.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel55.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel55.StylePriority.UseFont          = false;
     this.xrLabel55.StylePriority.UseTextAlignment = false;
     this.xrLabel55.Text                           = "........";
     this.xrLabel55.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel56
     //
     this.xrLabel56.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel56.LocationFloat                  = new DevExpress.Utils.PointFloat(870.0972F, 9.201468F);
     this.xrLabel56.Name                           = "xrLabel56";
     this.xrLabel56.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel56.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel56.StylePriority.UseFont          = false;
     this.xrLabel56.StylePriority.UseTextAlignment = false;
     this.xrLabel56.Text                           = "năm";
     this.xrLabel56.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel57
     //
     this.xrLabel57.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel57.LocationFloat                  = new DevExpress.Utils.PointFloat(774.3501F, 9.201468F);
     this.xrLabel57.Name                           = "xrLabel57";
     this.xrLabel57.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel57.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel57.StylePriority.UseFont          = false;
     this.xrLabel57.StylePriority.UseTextAlignment = false;
     this.xrLabel57.Text                           = "tháng";
     this.xrLabel57.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel58
     //
     this.xrLabel58.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel58.LocationFloat                  = new DevExpress.Utils.PointFloat(732.2906F, 9.201468F);
     this.xrLabel58.Name                           = "xrLabel58";
     this.xrLabel58.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel58.SizeF                          = new System.Drawing.SizeF(42.05952F, 23F);
     this.xrLabel58.StylePriority.UseFont          = false;
     this.xrLabel58.StylePriority.UseTextAlignment = false;
     this.xrLabel58.Text                           = "......";
     this.xrLabel58.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // S04b6_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 49, 100, 100);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Version    = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #29
0
        protected void addLogo()
        {
            try
            {
                if (_impostazioniReport.PosizioneLogo != PosizioneStampaLogoEnum.Nessuno)
                {
                    var logo = getAziendaService().GetLogo();
                    if (logo == null)
                        return;
                    if (_impostazioniReport.TipoLogo == TipoLogoEnum.Rtf || _impostazioniReport.TipoLogo == TipoLogoEnum.RtfDate || _impostazioniReport.TipoLogo == TipoLogoEnum.Nessuno)
                    {
                        var intestazioneRtf = logo.LogoRtfEsercizioAzienda;
                        if (_impostazioniReport.TipoLogo == TipoLogoEnum.RtfDate)
                            intestazioneRtf = logo.LogoRtfDateAzienda;

                        int? idEsercizio = null;
                        if (_esercizio != null)
                            idEsercizio = _esercizio.ID;

                        float width = _report.PageWidth;
                        if (_impostazioniReport.LogoWidth != null)
                            width = _impostazioniReport.LogoWidth.GetValueOrDefault();

                        _logo = new XRRichText
                        {
                            SizeF = new SizeF(width, 100)
                        };

                        if (_impostazioniReport.TipoLogo == TipoLogoEnum.Rtf || _impostazioniReport.TipoLogo == TipoLogoEnum.RtfDate)
                        {
                            var intestazione = getStampeService()
                                .MailMergeRtfText(Conversione.ToString(intestazioneRtf),
                                    new ParametriStampaUnione
                                    {
                                        IdCondominio = _condominio.ID,
                                        IdEsercizio = idEsercizio,
                                        DataIniziale = _dataIniziale,
                                        DataFinale = _dataFinale,
                                        TipoReport = _impostazioniReport.Descrizione
                                    });
                            ((XRRichText) _logo).Rtf = intestazione;
                        }
                    }
                    else if (_impostazioniReport.TipoLogo == TipoLogoEnum.Picture && logo.LogoAzienda != null && logo.LogoAzienda.Length > 0)
                    {
                        _logo = new XRPanel();
                        var logoPicture = new XRPictureBox();
                        var logoIntestazione = new XRLabel();
                        var nomeCondominio = new XRLabel();
                        var indirizzoCondominio = new XRLabel();

                        // 
                        // logoPicture
                        // 
                        logoPicture.Image = Conversione.ToImage(logo.LogoAzienda);
                        logoPicture.LocationFloat = new PointFloat(9.999998F, 10.00001F);
                        logoPicture.Name = "logoPicture";
                        logoPicture.SizeF = new SizeF(715F, 69.58334F);
                        // 
                        // logoIntestazione
                        // 
                        logoIntestazione.BorderDashStyle = BorderDashStyle.Solid;
                        logoIntestazione.Borders = ((BorderSide.Left | BorderSide.Top)
                                                    | BorderSide.Right)
                                                   | BorderSide.Bottom;
                        logoIntestazione.BorderWidth = 1F;
                        logoIntestazione.Font = new Font("Arial", 9F, FontStyle.Bold);
                        logoIntestazione.LocationFloat = new PointFloat(10.00005F, 85F);
                        logoIntestazione.Name = "logoIntestazione";
                        logoIntestazione.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
                        logoIntestazione.SizeF = new SizeF(715F, 23F);
                        logoIntestazione.StylePriority.UseBorderDashStyle = false;
                        logoIntestazione.StylePriority.UseBorders = false;
                        logoIntestazione.StylePriority.UseBorderWidth = false;
                        logoIntestazione.StylePriority.UseFont = false;
                        logoIntestazione.StylePriority.UseTextAlignment = false;
                        logoIntestazione.Text =
                            "<<codiceCondominio>> - <<nomeReport>> - Esercizio: <<descrizioneEsercizio>>";
                        logoIntestazione.TextAlignment = TextAlignment.MiddleCenter;
                        // 
                        // nomeCondominio
                        // 
                        nomeCondominio.Font = new Font("Arial", 9.75F);
                        nomeCondominio.LocationFloat = new PointFloat(10.00001F, 115F);
                        nomeCondominio.Name = "nomeCondominio";
                        nomeCondominio.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
                        nomeCondominio.SizeF = new SizeF(587.5001F, 19F);
                        nomeCondominio.StylePriority.UseFont = false;
                        nomeCondominio.Text = "<<condominio>>";
                        // 
                        // indirizzoCondominio
                        // 
                        indirizzoCondominio.Font = new Font("Arial", 9.75F);
                        indirizzoCondominio.LocationFloat = new PointFloat(10.00001F, 135F);
                        indirizzoCondominio.Name = "indirizzoCondominio";
                        indirizzoCondominio.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
                        indirizzoCondominio.SizeF = new SizeF(587.5001F, 19F);
                        indirizzoCondominio.StylePriority.UseFont = false;
                        indirizzoCondominio.Text = "<<indirizzoCondominio>> - Codice Fiscale: <<codiceFiscale>>";

                        _logo.Controls.AddRange(new XRControl[]
                        {
                            logoPicture,
                            logoIntestazione,
                            nomeCondominio,
                            indirizzoCondominio
                        });
                    }

                    _logo.Location = new Point(20, 0);

                    if (_impostazioniReport.LogoHeight != null && _impostazioniReport.LogoWidth != null)
                        _logo.SizeF = new SizeF(_impostazioniReport.LogoWidth.GetValueOrDefault(),
                            _impostazioniReport.LogoHeight.GetValueOrDefault());
                    if (_impostazioniReport.LogoLocationX != null && _impostazioniReport.LogoLocationY != null)
                        _logo.Location = new Point(_impostazioniReport.LogoLocationX.Value,
                            _impostazioniReport.LogoLocationY.Value);

                    if (_impostazioniReport.PosizioneLogo == PosizioneStampaLogoEnum.Tutte)
                    {
                        _pageHeaderBand.Controls.Add(_logo);
                        _pageHeaderBand.HeightF = 80F;
                        if (_impostazioniReport.LogoHeight != null)
                            _pageHeaderBand.HeightF = _impostazioniReport.LogoHeight.Value;
                    }
                    else if (_impostazioniReport.PosizioneLogo == PosizioneStampaLogoEnum.Prima)
                    {
                        _reportHeaderBand.Controls.Add(_logo);
                        _pageHeaderBand.HeightF = 20F;
                    }
                }
                else
                {
                    _reportHeaderBand.Visible = false;
                    _pageHeaderBand.HeightF = 20F;
                }

            }
            catch (Exception ex)
            {
                _log.ErrorFormat("Errore nella stampa del logo - {0} - azienda:{1}", ex, Utility.GetMethodDescription(), Security.Login.Instance.CurrentLogin().Azienda);
                throw;
            }
        }
Example #30
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rpt_TT_LamViec.resx";

        this.Detail             = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrl_MA_TT_LAMVIEC  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrl_TEN_TT_LAMVIEC = 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.xrLabel1           = 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();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrl_MA_TT_LAMVIEC,
            this.xrl_TEN_TT_LAMVIEC
        });
        this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 11F);
        this.xrTableRow2.Name    = "xrTableRow2";
        this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UsePadding       = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrl_MA_TT_LAMVIEC
        //
        this.xrl_MA_TT_LAMVIEC.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrl_MA_TT_LAMVIEC.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_MA_TT_LAMVIEC.Name    = "xrl_MA_TT_LAMVIEC";
        this.xrl_MA_TT_LAMVIEC.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
        this.xrl_MA_TT_LAMVIEC.StylePriority.UseBorders = false;
        this.xrl_MA_TT_LAMVIEC.StylePriority.UseFont    = false;
        this.xrl_MA_TT_LAMVIEC.StylePriority.UsePadding = false;
        this.xrl_MA_TT_LAMVIEC.Weight = 1.3498234526954884D;
        //
        // xrl_TEN_TT_LAMVIEC
        //
        this.xrl_TEN_TT_LAMVIEC.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrl_TEN_TT_LAMVIEC.Font    = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_TEN_TT_LAMVIEC.Name    = "xrl_TEN_TT_LAMVIEC";
        this.xrl_TEN_TT_LAMVIEC.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
        this.xrl_TEN_TT_LAMVIEC.StylePriority.UseBorders = false;
        this.xrl_TEN_TT_LAMVIEC.StylePriority.UseFont    = false;
        this.xrl_TEN_TT_LAMVIEC.StylePriority.UsePadding = false;
        this.xrl_TEN_TT_LAMVIEC.Weight = 5.2650170801804688D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 45F;
        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       = 51F;
        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.xrTable1,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 60.00001F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 10.00001F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(158.3333F, 23F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "*Ký hiệu chấm công";
        //
        // xrTable1
        //
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 35.00001F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
        //
        // xrTableRow1
        //
        this.xrTableRow1.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.xrTableRow1.Name = "xrTableRow1";
        this.xrTableRow1.StylePriority.UseBorders = false;
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseFont          = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "Ký hiệu";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 1.3498234526954884D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBorders       = false;
        this.xrTableCell2.StylePriority.UseFont          = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Ý nghĩa";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 5.2650170801804688D;
        //
        // rpt_TT_LamViec
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader
        });
        this.Margins = new System.Drawing.Printing.Margins(100, 100, 45, 51);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_BaoCaoThongKeTyLeUngVien.resx";

        this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_stt           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_phongban      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_congviec      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_maungvien     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_hosoloai      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_thuviec       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_chinhthuc     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_nghi          = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrl_TenThanhPho   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TenCongTy     = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable4          = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow4       = 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.xrTableCell15     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter      = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_ten1          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten3          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer2       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1       = new DevExpress.XtraReports.UI.XRLabel();
        this.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
        this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrTable3          = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3       = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tongsoloai    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tongthuviec   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tongchinhthuc = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_tongnghi      = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(1124F, 25F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_stt,
            this.xrt_phongban,
            this.xrt_congviec,
            this.xrt_maungvien,
            this.xrt_hosoloai,
            this.xrt_thuviec,
            this.xrt_chinhthuc,
            this.xrt_nghi
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_stt
        //
        this.xrt_stt.Name = "xrt_stt";
        this.xrt_stt.StylePriority.UseTextAlignment = false;
        this.xrt_stt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_stt.Weight        = 0.10798499577586718D;
        //
        // xrt_phongban
        //
        this.xrt_phongban.Name    = "xrt_phongban";
        this.xrt_phongban.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_phongban.StylePriority.UsePadding       = false;
        this.xrt_phongban.StylePriority.UseTextAlignment = false;
        this.xrt_phongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_phongban.Weight        = 0.62672365960754828D;
        //
        // xrt_congviec
        //
        this.xrt_congviec.Name   = "xrt_congviec";
        this.xrt_congviec.Weight = 0.25695067783240888D;
        //
        // xrt_maungvien
        //
        this.xrt_maungvien.Name    = "xrt_maungvien";
        this.xrt_maungvien.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_maungvien.StylePriority.UsePadding = false;
        this.xrt_maungvien.Weight = 0.26604441481017149D;
        //
        // xrt_hosoloai
        //
        this.xrt_hosoloai.Name = "xrt_hosoloai";
        this.xrt_hosoloai.StylePriority.UseTextAlignment = false;
        this.xrt_hosoloai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_hosoloai.Weight        = 0.38920486848822972D;
        //
        // xrt_thuviec
        //
        this.xrt_thuviec.Name = "xrt_thuviec";
        this.xrt_thuviec.StylePriority.UseTextAlignment = false;
        this.xrt_thuviec.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_thuviec.Weight        = 0.43188434078277271D;
        //
        // xrt_chinhthuc
        //
        this.xrt_chinhthuc.Name = "xrt_chinhthuc";
        this.xrt_chinhthuc.StylePriority.UseTextAlignment = false;
        this.xrt_chinhthuc.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_chinhthuc.Weight        = 0.4731146437066937D;
        //
        // xrt_nghi
        //
        this.xrt_nghi.Name = "xrt_nghi";
        this.xrt_nghi.StylePriority.UseTextAlignment = false;
        this.xrt_nghi.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_nghi.Weight        = 0.44809239899630832D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 50F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_TenThanhPho,
            this.xrl_TitleBC,
            this.xrl_TenCongTy
        });
        this.ReportHeader.HeightF = 101F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_TenThanhPho
        //
        this.xrl_TenThanhPho.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_TenThanhPho.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrl_TenThanhPho.Name                           = "xrl_TenThanhPho";
        this.xrl_TenThanhPho.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenThanhPho.SizeF                          = new System.Drawing.SizeF(471.2196F, 23F);
        this.xrl_TenThanhPho.StylePriority.UseFont          = false;
        this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false;
        this.xrl_TenThanhPho.Text                           = "THÀNH PHỐ HÀ NỘI";
        this.xrl_TenThanhPho.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TitleBC
        //
        this.xrl_TitleBC.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_TitleBC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 62.5F);
        this.xrl_TitleBC.Name                           = "xrl_TitleBC";
        this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1117F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO THỐNG KÊ TỶ LỆ ỨNG VIÊN";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TenCongTy
        //
        this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 25F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(471.2196F, 37.5F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable4,
            this.xrTable1
        });
        this.PageHeader.HeightF = 94.79166F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable4
        //
        this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable4.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 69.79166F);
        this.xrTable4.Name          = "xrTable4";
        this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4
        });
        this.xrTable4.SizeF = new System.Drawing.SizeF(1124F, 25F);
        this.xrTable4.StylePriority.UseBorders       = false;
        this.xrTable4.StylePriority.UseFont          = false;
        this.xrTable4.StylePriority.UseTextAlignment = false;
        this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow4
        //
        this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell17
        });
        this.xrTableRow4.Name   = "xrTableRow4";
        this.xrTableRow4.Weight = 1D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "1";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.10798499577586718D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "2";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell10.Weight        = 0.62672365960754828D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "3";
        this.xrTableCell11.Weight = 0.25695067783240888D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name    = "xrTableCell12";
        this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTableCell12.StylePriority.UsePadding = false;
        this.xrTableCell12.Text   = "4";
        this.xrTableCell12.Weight = 0.26604441481017149D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = "5";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell14.Weight        = 0.38920486848822972D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseTextAlignment = false;
        this.xrTableCell15.Text          = "6";
        this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell15.Weight        = 0.43188434078277271D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "7";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.4731146437066937D;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name = "xrTableCell17";
        this.xrTableCell17.StylePriority.UseTextAlignment = false;
        this.xrTableCell17.Text          = "8";
        this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell17.Weight        = 0.44809239899630832D;
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1124F, 69.79166F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell1,
            this.xrTableCell6,
            this.xrTableCell2,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "STT";
        this.xrTableCell4.Weight = 0.10798488562641623D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = "Phòng ban";
        this.xrTableCell5.Weight = 0.62672363396641206D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Công việc";
        this.xrTableCell1.Weight = 0.25695073307621086D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Mã ứng viên tuyển dụng";
        this.xrTableCell6.Weight = 0.266044338402799D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Tỷ lệ số hồ sơ đạt sơ loại/Tổng số hồ sơ";
        this.xrTableCell2.Weight = 0.389204921247272D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Tỷ lệ số ứng viên tiếp nhận thử việc/Tổng số ứng viên trúng tuyển";
        this.xrTableCell7.Weight = 0.43188391037258816D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = "Tỷ lệ ứng viên tiếp nhận chính thức/Tổng số ứng viên tiếp nhận thử việc";
        this.xrTableCell8.Weight = 0.473114868924287D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Tỷ lệ số ứng viên nghỉ sau tuyển dụng/Tổng số ứng viên tiếp nhận chính thức";
        this.xrTableCell3.Weight = 0.448092708384015D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten1,
            this.xrl_ten2,
            this.xrl_ten3,
            this.xrtngayketxuat,
            this.xrl_footer2,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 222F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrl_ten1
        //
        this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(23.00097F, 152.0833F);
        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;
        //
        // 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(398.001F, 152.0833F);
        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_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(810.501F, 152.0833F);
        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.4174F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(810.501F, 27.08333F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(303.4987F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_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(398.001F, 52.08333F);
        this.xrl_footer2.Name                           = "xrl_footer2";
        this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "PHÒNG TCHC";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // 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(810.501F, 52.08333F);
        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.499F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "GIÁM ĐỐC";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(23.00097F, 52.08333F);
        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;
        //
        // 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(997.9584F, 37.5F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0415F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupFooter1.HeightF = 25F;
        this.GroupFooter1.Name    = "GroupFooter1";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 10F);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(1124F, 25F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrt_tongsoloai,
            this.xrt_tongthuviec,
            this.xrt_tongchinhthuc,
            this.xrt_tongnghi
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableCell13.Name = "xrTableCell13";
        this.xrTableCell13.StylePriority.UseFont          = false;
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.Text          = "Tổng";
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell13.Weight        = 1.2577037174812635D;
        //
        // xrt_tongsoloai
        //
        this.xrt_tongsoloai.Name = "xrt_tongsoloai";
        this.xrt_tongsoloai.StylePriority.UseTextAlignment = false;
        this.xrt_tongsoloai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_tongsoloai.Weight        = 0.38920489903296196D;
        //
        // xrt_tongthuviec
        //
        this.xrt_tongthuviec.Name = "xrt_tongthuviec";
        this.xrt_tongthuviec.StylePriority.UseTextAlignment = false;
        this.xrt_tongthuviec.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_tongthuviec.Weight        = 0.43188434078277271D;
        //
        // xrt_tongchinhthuc
        //
        this.xrt_tongchinhthuc.Name = "xrt_tongchinhthuc";
        this.xrt_tongchinhthuc.StylePriority.UseTextAlignment = false;
        this.xrt_tongchinhthuc.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_tongchinhthuc.Weight        = 0.4731146437066937D;
        //
        // xrt_tongnghi
        //
        this.xrt_tongnghi.Name = "xrt_tongnghi";
        this.xrt_tongnghi.StylePriority.UseTextAlignment = false;
        this.xrt_tongnghi.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_tongnghi.Weight        = 0.44809239899630832D;
        //
        // rp_BaoCaoThongKeTyLeUngVien
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.PageFooter,
            this.GroupFooter1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(23, 22, 50, 100);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #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.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppGroupHeaderBand1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppDetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter3 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.HeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelstrMemberName = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelMembershipID = new DevExpress.XtraReports.UI.XRLabel();
     this.ppChildReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel29,
     this.xrLabel28});
     this.Detail.Font = new System.Drawing.Font("Arial", 8.5F);
     this.Detail.Height = 18;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.mAmount", "{0:$0.00}")});
     this.xrLabel29.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel29.Location = new System.Drawing.Point(208, 0);
     this.xrLabel29.Name = "xrLabel29";
     this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.Size = new System.Drawing.Size(92, 17);
     this.xrLabel29.Text = "xrLabel29";
     this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.strPaymentCode", "")});
     this.xrLabel28.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel28.Location = new System.Drawing.Point(25, 0);
     this.xrLabel28.Name = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.Size = new System.Drawing.Size(158, 17);
     this.xrLabel28.Text = "xrLabel28";
     this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel1.Location = new System.Drawing.Point(25, 92);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.Size = new System.Drawing.Size(92, 17);
     this.xrLabel1.Text = "Membership ID:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail1});
     this.DetailReport1.DataMember = "TblReceipt.Receipt_ReceiptFreebie_Relation";
     this.DetailReport1.Level = 2;
     this.DetailReport1.Name = "DetailReport1";
     this.DetailReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel43,
     this.xrLabel16,
     this.xrLabel15});
     this.Detail1.Height = 25;
     this.Detail1.Name = "Detail1";
     this.Detail1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel43
     //
     this.xrLabel43.Location = new System.Drawing.Point(25, 0);
     this.xrLabel43.Name = "xrLabel43";
     this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.Size = new System.Drawing.Size(83, 25);
     this.xrLabel43.Text = "Free Product :";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strDescription", "")});
     this.xrLabel16.Location = new System.Drawing.Point(108, 0);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.Size = new System.Drawing.Size(283, 25);
     this.xrLabel16.Text = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strItemCode", "")});
     this.xrLabel15.Location = new System.Drawing.Point(392, 0);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.Size = new System.Drawing.Size(100, 25);
     this.xrLabel15.Text = "xrLabel15";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel15.Visible = false;
     //
     // ppGroupHeaderBand1
     //
     this.ppGroupHeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppGroupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("strReceiptNo", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.ppGroupHeaderBand1.Height = 0;
     this.ppGroupHeaderBand1.Name = "ppGroupHeaderBand1";
     this.ppGroupHeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppGroupHeaderBand1.RepeatEveryPage = true;
     this.ppGroupHeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel21.Location = new System.Drawing.Point(25, 75);
     this.xrLabel21.Name = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.Size = new System.Drawing.Size(92, 17);
     this.xrLabel21.Text = "Total Payable:";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strFooter1", "")});
     this.xrLabel47.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel47.Location = new System.Drawing.Point(25, 42);
     this.xrLabel47.Multiline = true;
     this.xrLabel47.Name = "xrLabel47";
     this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.Size = new System.Drawing.Size(308, 17);
     this.xrLabel47.Text = "xrLabel34";
     this.xrLabel47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine2
     //
     this.xrLine2.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine2.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine2.Location = new System.Drawing.Point(8, 100);
     this.xrLine2.Name = "xrLine2";
     this.xrLine2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine2.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mNettAmount", "{0:$0.00}")});
     this.xrLabel25.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel25.Location = new System.Drawing.Point(208, 42);
     this.xrLabel25.Name = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.Size = new System.Drawing.Size(100, 14);
     this.xrLabel25.Text = "xrLabel25";
     this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.nQuantity", "")});
     this.xrLabel10.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel10.Location = new System.Drawing.Point(25, 0);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.Size = new System.Drawing.Size(17, 17);
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppDetailBand1
     //
     this.ppDetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel14,
     this.xrPanel1,
     this.xrLabel13,
     this.xrLabel11,
     this.xrLabel10});
     this.ppDetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppDetailBand1.Height = 47;
     this.ppDetailBand1.Name = "ppDetailBand1";
     this.ppDetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppDetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strFreebieCode", "")});
     this.xrLabel14.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel14.Location = new System.Drawing.Point(208, 33);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.Size = new System.Drawing.Size(117, 14);
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel17,
     this.xrLabel42,
     this.xrLabel44});
     this.xrPanel1.Location = new System.Drawing.Point(192, 17);
     this.xrPanel1.Name = "xrPanel1";
     this.xrPanel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrPanel1.Size = new System.Drawing.Size(141, 16);
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.Location = new System.Drawing.Point(58, 0);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.Size = new System.Drawing.Size(8, 25);
     this.xrLabel17.Text = ")";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel42.Location = new System.Drawing.Point(0, 0);
     this.xrLabel42.Name = "xrLabel42";
     this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.Size = new System.Drawing.Size(16, 25);
     this.xrLabel42.Text = "($";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.DiscountAmt", "")});
     this.xrLabel44.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel44.Location = new System.Drawing.Point(17, 0);
     this.xrLabel44.Name = "xrLabel44";
     this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.Size = new System.Drawing.Size(41, 16);
     this.xrLabel44.Text = "ItemdiscountAmt";
     this.xrLabel44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.mUnitPrice", "{0:$0.00}")});
     this.xrLabel13.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel13.Location = new System.Drawing.Point(208, 0);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.Size = new System.Drawing.Size(116, 15);
     this.xrLabel13.Text = "xrLabel13";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strDescription", "")});
     this.xrLabel11.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel11.Location = new System.Drawing.Point(42, 0);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.Size = new System.Drawing.Size(141, 19);
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel4.Location = new System.Drawing.Point(25, 125);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.Size = new System.Drawing.Size(83, 17);
     this.xrLabel4.Text = "Cashier ID:";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel22,
     this.xrLabel41,
     this.xrLabel12,
     this.xrLine3,
     this.xrLine2,
     this.xrLabel30,
     this.xrLabel27,
     this.xrLabel26,
     this.xrLabel25,
     this.xrLabel24,
     this.xrLabel23,
     this.xrLabel21,
     this.xrLabel20,
     this.xrLabel18,
     this.xrLabel19});
     this.ReportFooter.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter.Height = 125;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mSubTotal", "{0:$0.00}")});
     this.xrLabel22.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel22.Location = new System.Drawing.Point(208, 8);
     this.xrLabel22.Name = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.Size = new System.Drawing.Size(116, 17);
     this.xrLabel22.Text = "xrLabel22";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel41
     //
     this.xrLabel41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GstTax", "")});
     this.xrLabel41.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel41.Location = new System.Drawing.Point(25, 58);
     this.xrLabel41.Name = "xrLabel41";
     this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel41.Size = new System.Drawing.Size(17, 16);
     this.xrLabel41.Text = "xrLabel41";
     this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel12.Location = new System.Drawing.Point(25, 8);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.Size = new System.Drawing.Size(75, 17);
     this.xrLabel12.Text = "SubTotal:";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine3
     //
     this.xrLine3.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine3.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine3.Location = new System.Drawing.Point(8, 0);
     this.xrLine3.Name = "xrLine3";
     this.xrLine3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine3.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel30
     //
     this.xrLabel30.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel30.Location = new System.Drawing.Point(25, 108);
     this.xrLabel30.Name = "xrLabel30";
     this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.Size = new System.Drawing.Size(92, 17);
     this.xrLabel30.Text = "TENDERED:";
     this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mTotalAmount", "{0:$0.00}")});
     this.xrLabel27.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel27.Location = new System.Drawing.Point(208, 75);
     this.xrLabel27.Name = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.Size = new System.Drawing.Size(100, 23);
     this.xrLabel27.Text = "xrLabel27";
     this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mGSTAmount", "{0:$0.00}")});
     this.xrLabel26.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel26.Location = new System.Drawing.Point(208, 58);
     this.xrLabel26.Name = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.Size = new System.Drawing.Size(100, 16);
     this.xrLabel26.Text = "xrLabel26";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.DiscountAmt", "{0:$0.00}")});
     this.xrLabel24.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel24.Location = new System.Drawing.Point(208, 25);
     this.xrLabel24.Name = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.Size = new System.Drawing.Size(100, 16);
     this.xrLabel24.Text = "xrLabel24";
     this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strFreebieCode", "")});
     this.xrLabel23.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel23.Location = new System.Drawing.Point(117, 25);
     this.xrLabel23.Name = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.Size = new System.Drawing.Size(91, 16);
     this.xrLabel23.Text = "xrLabel23";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel20.Location = new System.Drawing.Point(42, 58);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.Size = new System.Drawing.Size(67, 17);
     this.xrLabel20.Text = "% GST:";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel18.Location = new System.Drawing.Point(25, 25);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.Size = new System.Drawing.Size(83, 17);
     this.xrLabel18.Text = "Bill Discount:";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel19.Location = new System.Drawing.Point(25, 42);
     this.xrLabel19.Name = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.Size = new System.Drawing.Size(75, 17);
     this.xrLabel19.Text = "Nett Value:";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.ReportFooter1});
     this.DetailReport.DataMember = "TblReceipt.Receipt_ReceiptPayment_Relation";
     this.DetailReport.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailReport.Level = 1;
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter1
     //
     this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel49,
     this.xrLabel48,
     this.xrLabel7,
     this.xrLabel6});
     this.ReportFooter1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter1.Height = 49;
     this.ReportFooter1.Name = "ReportFooter1";
     this.ReportFooter1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.ReportFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportFooter1_BeforePrint);
     //
     // xrLabel49
     //
     this.xrLabel49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mOutstandingAmount", "{0:$0.00}")});
     this.xrLabel49.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel49.Location = new System.Drawing.Point(208, 17);
     this.xrLabel49.Name = "xrLabel49";
     this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.Size = new System.Drawing.Size(75, 17);
     this.xrLabel49.Text = "xrLabel36";
     this.xrLabel49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel48
     //
     this.xrLabel48.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel48.Location = new System.Drawing.Point(25, 17);
     this.xrLabel48.Name = "xrLabel48";
     this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.Size = new System.Drawing.Size(183, 17);
     this.xrLabel48.Text = "OutStanding Amount :";
     this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel7.Location = new System.Drawing.Point(25, 0);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Size = new System.Drawing.Size(183, 17);
     this.xrLabel7.Text = "GST Collected For this Bill:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GSTPaid", "{0:$0.00}")});
     this.xrLabel6.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel6.Location = new System.Drawing.Point(208, 0);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Size = new System.Drawing.Size(75, 17);
     this.xrLabel6.Text = "xrLabel36";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine4
     //
     this.xrLine4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine4.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine4.Location = new System.Drawing.Point(8, 0);
     this.xrLine4.Name = "xrLine4";
     this.xrLine4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine4.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel31
     //
     this.xrLabel31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader1", "")});
     this.xrLabel31.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel31.Location = new System.Drawing.Point(25, 0);
     this.xrLabel31.Name = "xrLabel31";
     this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.Size = new System.Drawing.Size(317, 17);
     this.xrLabel31.Text = "xrLabel31";
     this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter3
     //
     this.ReportFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel47,
     this.xrLabel40,
     this.xrLine4,
     this.xrLabel36,
     this.xrLabel35});
     this.ReportFooter3.Name = "ReportFooter3";
     //
     // xrLabel40
     //
     this.xrLabel40.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel40.Location = new System.Drawing.Point(25, 67);
     this.xrLabel40.Multiline = true;
     this.xrLabel40.Name = "xrLabel40";
     this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel40.Size = new System.Drawing.Size(308, 17);
     this.xrLabel40.Text = "Amore Fitness is an award winning company and its once again cerfitied ISO9001:20" +
         "08 for quality assurance and service execellence";
     this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.RewardPoint", "")});
     this.xrLabel36.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel36.Location = new System.Drawing.Point(208, 17);
     this.xrLabel36.Name = "xrLabel36";
     this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.Size = new System.Drawing.Size(100, 17);
     this.xrLabel36.Text = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel35
     //
     this.xrLabel35.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel35.Location = new System.Drawing.Point(25, 17);
     this.xrLabel35.Name = "xrLabel35";
     this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.Size = new System.Drawing.Size(200, 17);
     this.xrLabel35.Text = "BALANCE REWARDS POINTS: ";
     this.xrLabel35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel45,
     this.xrLabel46});
     this.Detail3.Height = 25;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_FreePackage_Relation.strDescription", "")});
     this.xrLabel45.Location = new System.Drawing.Point(108, 0);
     this.xrLabel45.Name = "xrLabel45";
     this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.Size = new System.Drawing.Size(284, 25);
     this.xrLabel45.Text = "xrLabel45";
     this.xrLabel45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel46
     //
     this.xrLabel46.Location = new System.Drawing.Point(25, 0);
     this.xrLabel46.Name = "xrLabel46";
     this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.Size = new System.Drawing.Size(100, 25);
     this.xrLabel46.Text = "Free Package :";
     this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailBand1
     //
     this.DetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLine1,
     this.xrLabel9});
     this.DetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailBand1.Height = 25;
     this.DetailBand1.Name = "DetailBand1";
     this.DetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine1
     //
     this.xrLine1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine1.Location = new System.Drawing.Point(8, 17);
     this.xrLine1.Name = "xrLine1";
     this.xrLine1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine1.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel9.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel9.Location = new System.Drawing.Point(42, 0);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.Size = new System.Drawing.Size(100, 17);
     this.xrLabel9.Text = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel9.Visible = false;
     //
     // xrLabel33
     //
     this.xrLabel33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader3", "")});
     this.xrLabel33.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel33.Location = new System.Drawing.Point(25, 33);
     this.xrLabel33.Name = "xrLabel33";
     this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel33.Size = new System.Drawing.Size(317, 16);
     this.xrLabel33.Text = "xrLabel33";
     this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nSalespersonID", "")});
     this.xrLabel3.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel3.Location = new System.Drawing.Point(117, 108);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.Size = new System.Drawing.Size(108, 19);
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel39
     //
     this.xrLabel39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel39.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel39.Location = new System.Drawing.Point(33, 142);
     this.xrLabel39.Name = "xrLabel39";
     this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel39.Size = new System.Drawing.Size(75, 17);
     this.xrLabel39.Text = "xrLabel6";
     this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.dtDate", "{0:dddd, dd MMMM yyyy}")});
     this.xrLabel37.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel37.Location = new System.Drawing.Point(108, 142);
     this.xrLabel37.Name = "xrLabel37";
     this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.Size = new System.Drawing.Size(234, 17);
     this.xrLabel37.Text = "xrLabel37";
     this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel32
     //
     this.xrLabel32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader2", "")});
     this.xrLabel32.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel32.Location = new System.Drawing.Point(25, 17);
     this.xrLabel32.Name = "xrLabel32";
     this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel32.Size = new System.Drawing.Size(317, 17);
     this.xrLabel32.Text = "xrLabel32";
     this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel2.Location = new System.Drawing.Point(25, 108);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.Size = new System.Drawing.Size(92, 17);
     this.xrLabel2.Text = "Salesperson ID:";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail3,
     this.ReportFooter3});
     this.DetailReport3.DataMember = "TblReceipt.Receipt_FreePackage_Relation";
     this.DetailReport3.Level = 3;
     this.DetailReport3.Name = "DetailReport3";
     //
     // HeaderBand1
     //
     this.HeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel8,
     this.xrLabel39,
     this.xrLabel38,
     this.xrLabel37,
     this.xrLabel34,
     this.xrLabel33,
     this.xrLabel32,
     this.xrLabel31,
     this.xrLabel5,
     this.xrLabel4,
     this.xrLabel3,
     this.xrLabel2,
     this.xrLabelstrMemberName,
     this.xrLabelMembershipID,
     this.xrLabel1});
     this.HeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.HeaderBand1.Height = 159;
     this.HeaderBand1.Name = "HeaderBand1";
     this.HeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.HeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader5", "")});
     this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel8.Location = new System.Drawing.Point(25, 67);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.Size = new System.Drawing.Size(317, 17);
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel38
     //
     this.xrLabel38.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel38.Location = new System.Drawing.Point(25, 142);
     this.xrLabel38.Name = "xrLabel38";
     this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.Size = new System.Drawing.Size(17, 17);
     this.xrLabel38.Text = "#";
     this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel34
     //
     this.xrLabel34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader4", "")});
     this.xrLabel34.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel34.Location = new System.Drawing.Point(25, 50);
     this.xrLabel34.Name = "xrLabel34";
     this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel34.Size = new System.Drawing.Size(317, 17);
     this.xrLabel34.Text = "xrLabel34";
     this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nCashierID", "")});
     this.xrLabel5.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel5.Location = new System.Drawing.Point(117, 125);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.Size = new System.Drawing.Size(83, 19);
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelstrMemberName
     //
     this.xrLabelstrMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMemberName", "")});
     this.xrLabelstrMemberName.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelstrMemberName.Location = new System.Drawing.Point(167, 92);
     this.xrLabelstrMemberName.Name = "xrLabelstrMemberName";
     this.xrLabelstrMemberName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelstrMemberName.Size = new System.Drawing.Size(109, 17);
     this.xrLabelstrMemberName.Text = "Member Name";
     this.xrLabelstrMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelMembershipID
     //
     this.xrLabelMembershipID.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMembershipID", "")});
     this.xrLabelMembershipID.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelMembershipID.Location = new System.Drawing.Point(117, 92);
     this.xrLabelMembershipID.Name = "xrLabelMembershipID";
     this.xrLabelMembershipID.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelMembershipID.Size = new System.Drawing.Size(58, 17);
     this.xrLabelMembershipID.Text = "xrLabelMembershipID";
     this.xrLabelMembershipID.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppChildReport1
     //
     this.ppChildReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.ppDetailBand1,
     this.ReportFooter});
     this.ppChildReport1.DataMember = "TblReceipt.Receipt_ReceiptEntries_Relation";
     this.ppChildReport1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppChildReport1.Name = "ppChildReport1";
     this.ppChildReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppChildReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Receipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.DetailBand1,
     this.HeaderBand1,
     this.ppGroupHeaderBand1,
     this.ppChildReport1,
     this.DetailReport,
     this.DetailReport1,
     this.DetailReport3});
     this.DataMember = "TblReceipt";
     this.Margins = new System.Drawing.Printing.Margins(0, 48, 0, 12);
     this.PageHeight = 900;
     this.PageWidth = 544;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.PreviewRowCount = 100;
     this.Version = "8.3";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #33
0
        /// <summary>
        /// 增加一行数据
        /// </summary>
        /// <param name="btData"></param>
        private void addBTRow(List <string> btData)
        {
            float newX      = 12.5F;
            float rowHeight = this.labelHeight * btRowCount;

            this.BigLabel = new Dictionary <string, XRLabel>();
            for (int i = 0; i < btData.Count; i++)
            {
                string[] btStrs = btData[i].Split('_');
                if (btStrs.Length > 1)
                {
                    DevExpress.XtraReports.UI.XRLabel uplabel;
                    if (this.BigLabel.ContainsKey(btStrs[0]))
                    {
                        uplabel        = this.BigLabel[btStrs[0]];
                        uplabel.WidthF = uplabel.WidthF + this.columnsWidth[i];
                    }
                    else
                    {
                        uplabel               = new XRLabel();
                        uplabel.LocationF     = new PointF(newX, newY);
                        uplabel.WidthF        = this.columnsWidth[i];
                        uplabel.HeightF       = rowHeight / 2;
                        uplabel.Text          = btStrs[0];
                        uplabel.Font          = new System.Drawing.Font("微软雅黑", 10F);
                        uplabel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                        if (i == 0)
                        {
                            uplabel.Borders = DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom;
                        }
                        else
                        {
                            uplabel.Borders = DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom;
                        }
                        this.BigLabel.Add(btStrs[0], uplabel);
                        this.Detail.Controls.Add(uplabel);
                    }

                    DevExpress.XtraReports.UI.XRLabel label = new XRLabel();
                    label.LocationF     = new PointF(newX, newY + this.labelHeight);
                    label.WidthF        = this.columnsWidth[i];
                    label.HeightF       = rowHeight / 2;
                    label.Text          = btStrs[1];
                    label.Font          = new System.Drawing.Font("微软雅黑", 10F);
                    label.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                    if (i == 0)
                    {
                        label.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
                    }
                    else
                    {
                        label.Borders = DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom;
                    }
                    this.Detail.Controls.Add(label);

                    newX = newX + label.WidthF;
                }
                else
                {
                    DevExpress.XtraReports.UI.XRLabel label = new XRLabel();
                    label.LocationF     = new PointF(newX, newY);
                    label.WidthF        = this.columnsWidth[i];
                    label.HeightF       = rowHeight;
                    label.Text          = btData[i];
                    label.Font          = new System.Drawing.Font("微软雅黑", 9F);
                    label.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                    this.Detail.Controls.Add(label);
                    if (i == 0)
                    {
                        label.Borders = DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom;
                    }
                    else
                    {
                        label.Borders = DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom;
                    }
                    newX = newX + label.WidthF;
                }
            }
            this.newY = this.newY + rowHeight;
        }
Example #34
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rpwg_HopDongThuViec.resx";

        System.Resources.ResourceManager resources = global::Resources.rpwg_HopDongThuViec.ResourceManager;
        this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
        this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrRichText3  = new DevExpress.XtraReports.UI.XRRichText();
        this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrRichText2  = new DevExpress.XtraReports.UI.XRRichText();
        this.xrRichText1  = new DevExpress.XtraReports.UI.XRRichText();
        this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrRichText4  = new DevExpress.XtraReports.UI.XRRichText();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrRichText4,
            this.xrLabel2,
            this.xrRichText3,
            this.xrLabel1,
            this.xrRichText2,
            this.xrRichText1
        });
        this.Detail.HeightF       = 1809F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel2
        //
        this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 111.5417F);
        this.xrLabel2.Name          = "xrLabel2";
        this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF         = new System.Drawing.SizeF(296.875F, 23F);
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text          = "Số: {0}";
        this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrRichText3
        //
        this.xrRichText3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 143.7083F);
        this.xrRichText3.Name                  = "xrRichText3";
        this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
        this.xrRichText3.SizeF                 = new System.Drawing.SizeF(732.9999F, 29.25F);
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(353.1249F, 50.08332F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(379.875F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "Hà Nội, ngày {0} tháng {1} năm {2}";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrRichText2
        //
        this.xrRichText2.LocationFloat         = new DevExpress.Utils.PointFloat(353.1249F, 0F);
        this.xrRichText2.Name                  = "xrRichText2";
        this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
        this.xrRichText2.SizeF                 = new System.Drawing.SizeF(379.8751F, 50.08334F);
        //
        // xrRichText1
        //
        this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrRichText1.Name                  = "xrRichText1";
        this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
        this.xrRichText1.SizeF                 = new System.Drawing.SizeF(296.875F, 111.5417F);
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 77F;
        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       = 78F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrRichText4
        //
        this.xrRichText4.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 195.7917F);
        this.xrRichText4.Name                  = "xrRichText4";
        this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
        this.xrRichText4.SizeF                 = new System.Drawing.SizeF(732.9999F, 1613.208F);
        //
        // rpwg_HopDongThuViec
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin
        });
        this.Margins = new System.Drawing.Printing.Margins(64, 53, 77, 78);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1     = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1  = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang1       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang2       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang3       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang4       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang5       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang6       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang7       = new DevExpress.XtraReports.UI.XRTableCell();
     this.thang8       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2  = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac7         = new DevExpress.XtraReports.UI.XRTableCell();
     this.bac8         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3  = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong1       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong2       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luog3        = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong4       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong5       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong6       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong7       = new DevExpress.XtraReports.UI.XRTableCell();
     this.luong8       = 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.xrLabel36    = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // 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.Dpi           = 254F;
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 13F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 58.42001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow2,
         this.xrTableRow3
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1680F, 190.5F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont    = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.thang1,
         this.thang2,
         this.thang3,
         this.thang4,
         this.thang5,
         this.thang6,
         this.thang7,
         this.thang8
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Dpi     = 254F;
     this.xrTableCell1.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Tháng/năm";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight        = 0.54926185846972542D;
     //
     // thang1
     //
     this.thang1.Dpi     = 254F;
     this.thang1.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang1.Name    = "thang1";
     this.thang1.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 0, 0, 0, 254F);
     this.thang1.StylePriority.UseFont          = false;
     this.thang1.StylePriority.UsePadding       = false;
     this.thang1.StylePriority.UseTextAlignment = false;
     this.thang1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang1.Weight        = 0.30634226769128431D;
     //
     // thang2
     //
     this.thang2.Dpi     = 254F;
     this.thang2.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang2.Name    = "thang2";
     this.thang2.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang2.StylePriority.UseFont          = false;
     this.thang2.StylePriority.UsePadding       = false;
     this.thang2.StylePriority.UseTextAlignment = false;
     this.thang2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang2.Weight        = 0.30634226769128431D;
     //
     // thang3
     //
     this.thang3.Dpi     = 254F;
     this.thang3.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang3.Name    = "thang3";
     this.thang3.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang3.StylePriority.UseFont          = false;
     this.thang3.StylePriority.UsePadding       = false;
     this.thang3.StylePriority.UseTextAlignment = false;
     this.thang3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang3.Weight        = 0.30634226769128431D;
     //
     // thang4
     //
     this.thang4.Dpi     = 254F;
     this.thang4.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang4.Name    = "thang4";
     this.thang4.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang4.StylePriority.UseFont          = false;
     this.thang4.StylePriority.UsePadding       = false;
     this.thang4.StylePriority.UseTextAlignment = false;
     this.thang4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang4.Weight        = 0.30634226769128431D;
     //
     // thang5
     //
     this.thang5.Dpi     = 254F;
     this.thang5.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang5.Name    = "thang5";
     this.thang5.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang5.StylePriority.UseFont          = false;
     this.thang5.StylePriority.UsePadding       = false;
     this.thang5.StylePriority.UseTextAlignment = false;
     this.thang5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang5.Weight        = 0.30634226769128431D;
     //
     // thang6
     //
     this.thang6.Dpi     = 254F;
     this.thang6.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang6.Name    = "thang6";
     this.thang6.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang6.StylePriority.UseFont          = false;
     this.thang6.StylePriority.UsePadding       = false;
     this.thang6.StylePriority.UseTextAlignment = false;
     this.thang6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang6.Weight        = 0.30634226769128431D;
     //
     // thang7
     //
     this.thang7.Dpi     = 254F;
     this.thang7.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang7.Name    = "thang7";
     this.thang7.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang7.StylePriority.UseFont          = false;
     this.thang7.StylePriority.UsePadding       = false;
     this.thang7.StylePriority.UseTextAlignment = false;
     this.thang7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang7.Weight        = 0.30634226769128431D;
     //
     // thang8
     //
     this.thang8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.thang8.Dpi     = 254F;
     this.thang8.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.thang8.Name    = "thang8";
     this.thang8.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.thang8.StylePriority.UseBorders       = false;
     this.thang8.StylePriority.UseFont          = false;
     this.thang8.StylePriority.UsePadding       = false;
     this.thang8.StylePriority.UseTextAlignment = false;
     this.thang8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.thang8.Weight        = 0.34682136412082032D;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.bac1,
         this.bac2,
         this.bac3,
         this.bac4,
         this.bac5,
         this.bac6,
         this.bac7,
         this.bac8
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi     = 254F;
     this.xrTableCell2.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.Name    = "xrTableCell2";
     this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã ngạch/bậc";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 0.54926185846972542D;
     //
     // bac1
     //
     this.bac1.Dpi     = 254F;
     this.bac1.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac1.Name    = "bac1";
     this.bac1.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac1.StylePriority.UseFont          = false;
     this.bac1.StylePriority.UsePadding       = false;
     this.bac1.StylePriority.UseTextAlignment = false;
     this.bac1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac1.Weight        = 0.30634226769128431D;
     //
     // bac2
     //
     this.bac2.Dpi     = 254F;
     this.bac2.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac2.Name    = "bac2";
     this.bac2.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac2.StylePriority.UseFont          = false;
     this.bac2.StylePriority.UsePadding       = false;
     this.bac2.StylePriority.UseTextAlignment = false;
     this.bac2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac2.Weight        = 0.30634226769128431D;
     //
     // bac3
     //
     this.bac3.Dpi     = 254F;
     this.bac3.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac3.Name    = "bac3";
     this.bac3.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac3.StylePriority.UseFont          = false;
     this.bac3.StylePriority.UsePadding       = false;
     this.bac3.StylePriority.UseTextAlignment = false;
     this.bac3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac3.Weight        = 0.30634226769128431D;
     //
     // bac4
     //
     this.bac4.Dpi     = 254F;
     this.bac4.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac4.Name    = "bac4";
     this.bac4.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac4.StylePriority.UseFont          = false;
     this.bac4.StylePriority.UsePadding       = false;
     this.bac4.StylePriority.UseTextAlignment = false;
     this.bac4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac4.Weight        = 0.30634226769128431D;
     //
     // bac5
     //
     this.bac5.Dpi     = 254F;
     this.bac5.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac5.Name    = "bac5";
     this.bac5.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac5.StylePriority.UseFont          = false;
     this.bac5.StylePriority.UsePadding       = false;
     this.bac5.StylePriority.UseTextAlignment = false;
     this.bac5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac5.Weight        = 0.30634226769128431D;
     //
     // bac6
     //
     this.bac6.Dpi     = 254F;
     this.bac6.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac6.Name    = "bac6";
     this.bac6.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac6.StylePriority.UseFont          = false;
     this.bac6.StylePriority.UsePadding       = false;
     this.bac6.StylePriority.UseTextAlignment = false;
     this.bac6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac6.Weight        = 0.30634226769128431D;
     //
     // bac7
     //
     this.bac7.Dpi     = 254F;
     this.bac7.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac7.Name    = "bac7";
     this.bac7.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac7.StylePriority.UseFont          = false;
     this.bac7.StylePriority.UsePadding       = false;
     this.bac7.StylePriority.UseTextAlignment = false;
     this.bac7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac7.Weight        = 0.30634226769128431D;
     //
     // bac8
     //
     this.bac8.Dpi     = 254F;
     this.bac8.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bac8.Name    = "bac8";
     this.bac8.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.bac8.StylePriority.UseFont          = false;
     this.bac8.StylePriority.UsePadding       = false;
     this.bac8.StylePriority.UseTextAlignment = false;
     this.bac8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.bac8.Weight        = 0.34682136412082032D;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.luong1,
         this.luong2,
         this.luog3,
         this.luong4,
         this.luong5,
         this.luong6,
         this.luong7,
         this.luong8
     });
     this.xrTableRow3.Dpi    = 254F;
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Dpi     = 254F;
     this.xrTableCell3.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell3.Name    = "xrTableCell3";
     this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UsePadding       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Hệ số lương";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight        = 0.54926185846972542D;
     //
     // luong1
     //
     this.luong1.Dpi     = 254F;
     this.luong1.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong1.Name    = "luong1";
     this.luong1.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong1.StylePriority.UseFont          = false;
     this.luong1.StylePriority.UsePadding       = false;
     this.luong1.StylePriority.UseTextAlignment = false;
     this.luong1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong1.Weight        = 0.30634226769128431D;
     //
     // luong2
     //
     this.luong2.Dpi     = 254F;
     this.luong2.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong2.Name    = "luong2";
     this.luong2.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong2.StylePriority.UseFont          = false;
     this.luong2.StylePriority.UsePadding       = false;
     this.luong2.StylePriority.UseTextAlignment = false;
     this.luong2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong2.Weight        = 0.30634226769128431D;
     //
     // luog3
     //
     this.luog3.Dpi     = 254F;
     this.luog3.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luog3.Name    = "luog3";
     this.luog3.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luog3.StylePriority.UseFont          = false;
     this.luog3.StylePriority.UsePadding       = false;
     this.luog3.StylePriority.UseTextAlignment = false;
     this.luog3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luog3.Weight        = 0.30634226769128431D;
     //
     // luong4
     //
     this.luong4.Dpi  = 254F;
     this.luong4.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong4.Name = "luong4";
     this.luong4.StylePriority.UseFont          = false;
     this.luong4.StylePriority.UseTextAlignment = false;
     this.luong4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong4.Weight        = 0.30634226769128431D;
     //
     // luong5
     //
     this.luong5.Dpi     = 254F;
     this.luong5.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong5.Name    = "luong5";
     this.luong5.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong5.StylePriority.UseFont          = false;
     this.luong5.StylePriority.UsePadding       = false;
     this.luong5.StylePriority.UseTextAlignment = false;
     this.luong5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong5.Weight        = 0.30634226769128431D;
     //
     // luong6
     //
     this.luong6.Dpi     = 254F;
     this.luong6.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong6.Name    = "luong6";
     this.luong6.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong6.StylePriority.UseFont          = false;
     this.luong6.StylePriority.UsePadding       = false;
     this.luong6.StylePriority.UseTextAlignment = false;
     this.luong6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong6.Weight        = 0.30634226769128431D;
     //
     // luong7
     //
     this.luong7.Dpi     = 254F;
     this.luong7.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong7.Name    = "luong7";
     this.luong7.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong7.StylePriority.UseFont          = false;
     this.luong7.StylePriority.UsePadding       = false;
     this.luong7.StylePriority.UseTextAlignment = false;
     this.luong7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong7.Weight        = 0.30634226769128431D;
     //
     // luong8
     //
     this.luong8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.luong8.Dpi     = 254F;
     this.luong8.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.luong8.Name    = "luong8";
     this.luong8.Padding = new DevExpress.XtraPrinting.PaddingInfo(8, 8, 8, 8, 254F);
     this.luong8.StylePriority.UseBorders       = false;
     this.luong8.StylePriority.UseFont          = false;
     this.luong8.StylePriority.UsePadding       = false;
     this.luong8.StylePriority.UseTextAlignment = false;
     this.luong8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.luong8.Weight        = 0.34682136412082032D;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 21F;
     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       = 29F;
     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.xrLabel36,
         this.xrTable1
     });
     this.PageHeader.Dpi     = 254F;
     this.PageHeader.HeightF = 249F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel36
     //
     this.xrLabel36.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel36.Dpi                            = 254F;
     this.xrLabel36.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel36.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel36.Multiline                      = true;
     this.xrLabel36.Name                           = "xrLabel36";
     this.xrLabel36.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel36.SizeF                          = new System.Drawing.SizeF(1680F, 58.42F);
     this.xrLabel36.StylePriority.UseBorders       = false;
     this.xrLabel36.StylePriority.UseFont          = false;
     this.xrLabel36.StylePriority.UseTextAlignment = false;
     this.xrLabel36.Text                           = "- Quá trình lương của bản thân:";
     this.xrLabel36.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // sub_ProcessSalary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader
     });
     this.Dpi          = 254F;
     this.Margins      = new System.Drawing.Printing.Margins(60, 60, 21, 29);
     this.PageHeight   = 2970;
     this.PageWidth    = 2100;
     this.PaperKind    = System.Drawing.Printing.PaperKind.A4;
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.Version      = "15.1";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.XtraReport1_BeforePrint);
     ((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 = "RepParcelasRetrato.resx";
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12            = new DevExpress.XtraReports.UI.XRLabel();
     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.xrLabel12,
         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       = 424.4419F;
     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);
     //
     // xrLabel12
     //
     this.xrLabel12.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.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(209.7708F, 168.0126F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(135.625F, 14.00002F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = ", na Praça do Município de ";
     //
     // 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(107.7709F, 70.76263F);
     this.lpagamento.Name                  = "lpagamento";
     this.lpagamento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lpagamento.SizeF                 = new System.Drawing.SizeF(237.6249F, 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(15.77073F, 70.76257F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(92.00007F, 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(485.4374F, 120.0126F);
     this.lemitentecpf.Name          = "lemitentecpf";
     this.lemitentecpf.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemitentecpf.SizeF         = new System.Drawing.SizeF(117.3541F, 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(335.9789F, 120.0126F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(149.4585F, 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(107.7708F, 279.6169F);
     this.lvalorpagamento.Name                  = "lvalorpagamento";
     this.lvalorpagamento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorpagamento.SizeF                 = new System.Drawing.SizeF(102F, 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(15.77073F, 279.6168F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(92.00007F, 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(15.77071F, 247.6168F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(92.00009F, 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(107.7708F, 247.6168F);
     this.lvaloracrescimos.Name                  = "lvaloracrescimos";
     this.lvaloracrescimos.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvaloracrescimos.SizeF                 = new System.Drawing.SizeF(102F, 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(107.7708F, 263.6168F);
     this.lvalordesconto.Name                  = "lvalordesconto";
     this.lvalordesconto.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalordesconto.SizeF                 = new System.Drawing.SizeF(102F, 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(15.77071F, 263.6167F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(92.00009F, 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(107.7708F, 231.6168F);
     this.lvalorparcela.Name                  = "lvalorparcela";
     this.lvalorparcela.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorparcela.SizeF                 = new System.Drawing.SizeF(102F, 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(15.77071F, 231.6168F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(92.00009F, 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(239.3957F, 348.8459F);
     this.lnomeempresa.Name                  = "lnomeempresa";
     this.lnomeempresa.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnomeempresa.SizeF                 = new System.Drawing.SizeF(411.6043F, 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(73.2708F, 120.0126F);
     this.lemitentenome.Name          = "lemitentenome";
     this.lemitentenome.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lemitentenome.SizeF         = new System.Drawing.SizeF(262.7081F, 14.00001F);
     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(15.77069F, 120.0126F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(57.50011F, 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(239.3957F, 260.3459F);
     this.lemissaoextenso.Name                  = "lemissaoextenso";
     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(345.3958F, 168.0126F);
     this.lcidadeestadoextenso.Name          = "lcidadeestadoextenso";
     this.lcidadeestadoextenso.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcidadeestadoextenso.SizeF         = new System.Drawing.SizeF(351.3752F, 14.00006F);
     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(15.77068F, 136.0126F);
     this.lvalorextenso1.Name          = "lvalorextenso1";
     this.lvalorextenso1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso1.SizeF         = new System.Drawing.SizeF(681.0003F, 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(207.7708F, 168.0126F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(2.000015F, 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(15.77065F, 152.0126F);
     this.lvalorextenso2.Name          = "lvalorextenso2";
     this.lvalorextenso2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvalorextenso2.SizeF         = new System.Drawing.SizeF(681.0004F, 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(239.3957F, 363.8459F);
     this.lcnpjempresa.Name                  = "lcnpjempresa";
     this.lcnpjempresa.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcnpjempresa.SizeF                 = new System.Drawing.SizeF(411.6043F, 14F);
     this.lcnpjempresa.StylePriority.UseFont = false;
     this.lcnpjempresa.Text                  = "lcnpjempresa";
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(239.3957F, 326.9709F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(411.6043F, 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(385.5625F, 38.76267F);
     this.lvinculo1.Name                  = "lvinculo1";
     this.lvinculo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo1.SizeF                 = new System.Drawing.SizeF(311.2085F, 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(385.5625F, 70.76264F);
     this.lvinculo3.Name                  = "lvinculo3";
     this.lvinculo3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo3.SizeF                 = new System.Drawing.SizeF(311.2085F, 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(385.5625F, 54.76266F);
     this.lvinculo2.Name                  = "lvinculo2";
     this.lvinculo2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvinculo2.SizeF                 = new System.Drawing.SizeF(311.2085F, 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(107.7708F, 54.76265F);
     this.lvencimento.Name                  = "lvencimento";
     this.lvencimento.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lvencimento.SizeF                 = new System.Drawing.SizeF(237.6251F, 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(15.77069F, 54.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.00011F, 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(15.77069F, 38.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.00011F, 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(107.7708F, 38.76262F);
     this.lnumero.Name                  = "lnumero";
     this.lnumero.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lnumero.SizeF                 = new System.Drawing.SizeF(102F, 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(15.77073F, 168.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(602.7914F, 120.0126F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(93.97955F, 13.99998F);
     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(586.0417F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(120.9583F, 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(182.7708F, 45.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(376.4166F, 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(529.2919F, 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(177.7082F, 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(615.0418F, 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(91.95819F, 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(182.7708F, 19F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(376.4166F, 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 - Retrato";
     //
     // RepParcelasRetrato
     //
     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.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     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.RepParcelasRetrato_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>
    private void InitializeComponent()
    {
        string resourceFileName = "Att_PartialLeaveReport.resx";

        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.xrTableCell8       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell19      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell20      = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin          = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin       = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1       = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable1           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4       = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageFooter         = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo2        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo1        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.attendanceDataSet1 = new AttendanceDataSet();
        this.sp_Att_ScheduleDescription_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_ScheduleDescription_ReportTableAdapter();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
        this.xrCompAddress = new DevExpress.XtraReports.UI.XRLabel();
        this.xrTitle       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrCompName    = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        this.sp_Set_Employee_Holiday_ReportTableAdapter1     = new AttendanceDataSetTableAdapters.sp_Set_Employee_Holiday_ReportTableAdapter();
        this.sp_Set_Att_Employee_Leave_ReportTableAdapter1   = new AttendanceDataSetTableAdapters.sp_Set_Att_Employee_Leave_ReportTableAdapter();
        this.sp_Att_ScheduleDescription_ReportTableAdapter2  = new AttendanceDataSetTableAdapters.sp_Att_ScheduleDescription_ReportTableAdapter();
        this.sp_Att_PartialLeave_Request_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_PartialLeave_Request_ReportTableAdapter();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 14.99999F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Verdana", 8F);
        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(763.0001F, 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.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell19,
            this.xrTableCell20
        });
        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, "sp_Att_PartialLeave_Request_Report.Partial_Leave_Date")
        });
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Leave Name";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrTableCell5.Weight        = 1.1323483091843514;
        this.xrTableCell5.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell5_BeforePrint);
        //
        // xrTableCell6
        //
        this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Request_Date_Time")
        });
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Total Leave";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell6.Weight        = 0.963764631444882;
        this.xrTableCell6.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell6_BeforePrint);
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Approved_Date_Time")
        });
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Paid Leave";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell8.Weight        = 0.97481436300569657;
        this.xrTableCell8.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell8_BeforePrint);
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.From_Time")
        });
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "Schedule Type";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell9.Weight        = 0.83827984891602325;
        //
        // xrTableCell10
        //
        this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.To_Time")
        });
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "Is Year Carry";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell10.Weight        = 0.98253465554595687;
        //
        // xrTableCell19
        //
        this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Partial_Leave_Type")
        });
        this.xrTableCell19.Name         = "xrTableCell19";
        this.xrTableCell19.Text         = "xrTableCell19";
        this.xrTableCell19.Weight       = 1.0127222733083456;
        this.xrTableCell19.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell19_BeforePrint);
        //
        // xrTableCell20
        //
        this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Is_Confirmed")
        });
        this.xrTableCell20.Name   = "xrTableCell20";
        this.xrTableCell20.Text   = "xrTableCell20";
        this.xrTableCell20.Weight = 0.73091286363881436;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 0F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 0F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 14.99999F;
        this.GroupHeader1.Name    = "GroupHeader1";
        this.GroupHeader1.StylePriority.UseTextAlignment = false;
        this.GroupHeader1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(763.0001F, 14.99999F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Patial Leave Date";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrTableCell7.Weight        = 1.0814442767108354;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Multiline = true;
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.Text      = "Request Date";
        this.xrTableCell11.Weight    = 0.92043965139292849;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name   = "xrTableCell12";
        this.xrTableCell12.Text   = "Approved Date";
        this.xrTableCell12.Weight = 0.92043965139292849;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "From Time";
        this.xrTableCell1.Weight = 0.81114800494139971;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "To Time";
        this.xrTableCell2.Weight = 0.93836572926832407;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Leave Type";
        this.xrTableCell3.Weight = 0.96719656949396149;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Status";
        this.xrTableCell4.Weight = 0.698054519293664;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 23.95833F;
        this.PageFooter.Name    = "PageFooter";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Format        = "Page{0}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(467.7918F, 0F);
        this.xrPageInfo2.Name          = "xrPageInfo2";
        this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(295.2082F, 23F);
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(344.7917F, 23F);
        //
        // attendanceDataSet1
        //
        this.attendanceDataSet1.DataSetName             = "AttendanceDataSet";
        this.attendanceDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // sp_Att_ScheduleDescription_ReportTableAdapter1
        //
        this.sp_Att_ScheduleDescription_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.ReportHeader.HeightF = 75F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrPanel1
        //
        this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrCompAddress,
            this.xrTitle,
            this.xrPictureBox1,
            this.xrCompName
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(7.947286E-06F, 0F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(763F, 75F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrCompAddress
        //
        this.xrCompAddress.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompAddress.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompAddress.LocationFloat            = new DevExpress.Utils.PointFloat(3F, 28F);
        this.xrCompAddress.Name                     = "xrCompAddress";
        this.xrCompAddress.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompAddress.SizeF                    = new System.Drawing.SizeF(353.125F, 22.04167F);
        this.xrCompAddress.StylePriority.UseBorders = false;
        this.xrCompAddress.StylePriority.UseFont    = false;
        this.xrCompAddress.Text                     = "xrCompAddress";
        //
        // xrTitle
        //
        this.xrTitle.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTitle.Font                           = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(150F, 54F);
        this.xrTitle.Name                           = "xrTitle";
        this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTitle.SizeF                          = new System.Drawing.SizeF(487.8803F, 16F);
        this.xrTitle.StylePriority.UseBorders       = false;
        this.xrTitle.StylePriority.UseFont          = false;
        this.xrTitle.StylePriority.UseTextAlignment = false;
        this.xrTitle.Text                           = "xrTitle";
        this.xrTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(659.5F, 2F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(100F, 45.04167F);
        this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrCompName
        //
        this.xrCompName.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompName.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompName.LocationFloat            = new DevExpress.Utils.PointFloat(3F, 3F);
        this.xrCompName.Name                     = "xrCompName";
        this.xrCompName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompName.SizeF                    = new System.Drawing.SizeF(353.125F, 23F);
        this.xrCompName.StylePriority.UseBorders = false;
        this.xrCompName.StylePriority.UseFont    = false;
        this.xrCompName.Text                     = "xrCompName";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 15.625F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(763.0001F, 14.99999F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18,
            this.xrTableCell15
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "ID";
        this.xrTableCell13.Weight = 0.3645834350585937;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = ":";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell14.Weight        = 0.13541648864746092;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Emp_Code")
        });
        this.xrTableCell16.Name   = "xrTableCell16";
        this.xrTableCell16.Text   = "xrTableCell16";
        this.xrTableCell16.Weight = 0.96875007629394538;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = "Name";
        this.xrTableCell17.Weight = 0.49263153076171884;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell18.Name = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text          = ":";
        this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell18.Weight        = 0.15929840087890612;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_PartialLeave_Request_Report.Emp_Name")
        });
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseBorders = false;
        this.xrTableCell15.Text   = "xrTableCell15";
        this.xrTableCell15.Weight = 5.509320678710937;
        //
        // sp_Set_Employee_Holiday_ReportTableAdapter1
        //
        this.sp_Set_Employee_Holiday_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // sp_Set_Att_Employee_Leave_ReportTableAdapter1
        //
        this.sp_Set_Att_Employee_Leave_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // sp_Att_ScheduleDescription_ReportTableAdapter2
        //
        this.sp_Att_ScheduleDescription_ReportTableAdapter2.ClearBeforeFill = true;
        //
        // sp_Att_PartialLeave_Request_ReportTableAdapter1
        //
        this.sp_Att_PartialLeave_Request_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // Att_PartialLeaveReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.PageFooter,
            this.ReportHeader,
            this.GroupHeader2
        });
        this.DataAdapter = this.sp_Att_PartialLeave_Request_ReportTableAdapter1;
        this.DataMember  = "sp_Att_PartialLeave_Request_Report";
        this.DataSource  = this.attendanceDataSet1;
        this.Font        = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins     = new System.Drawing.Printing.Margins(24, 53, 0, 0);
        this.Version     = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #38
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_BusinessOccupation.resx";

        this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellWorkingDate   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellOccupation    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellJobTitle      = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleReport     = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.lblHRDepartment     = new DevExpress.XtraReports.UI.XRLabel();
        this.lblCreator          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1         = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrCellIndex,
            this.xrCellEmployeeCode,
            this.xrCellFullName,
            this.xrCellPosition,
            this.xrCellDepartment,
            this.xrCellWorkingDate,
            this.xrCellOccupation,
            this.xrCellJobTitle
        });
        this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow2.Name    = "xrTableRow2";
        this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UsePadding       = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrCellIndex
        //
        this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellIndex.Name    = "xrCellIndex";
        this.xrCellIndex.StylePriority.UseBorders       = false;
        this.xrCellIndex.StylePriority.UseFont          = false;
        this.xrCellIndex.StylePriority.UseTextAlignment = false;
        this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellIndex.Weight        = 0.085904575222086443D;
        this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrCellEmployeeCode
        //
        this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
        this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
        this.xrCellEmployeeCode.StylePriority.UseFont          = false;
        this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
        this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellEmployeeCode.Weight        = 0.21374657676649594D;
        //
        // xrCellFullName
        //
        this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellFullName.Name    = "xrCellFullName";
        this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellFullName.StylePriority.UseBorders       = false;
        this.xrCellFullName.StylePriority.UseFont          = false;
        this.xrCellFullName.StylePriority.UsePadding       = false;
        this.xrCellFullName.StylePriority.UseTextAlignment = false;
        this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellFullName.Weight        = 0.53697645004598071D;
        //
        // xrCellPosition
        //
        this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellPosition.Name    = "xrCellPosition";
        this.xrCellPosition.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellPosition.StylePriority.UseBorders       = false;
        this.xrCellPosition.StylePriority.UseFont          = false;
        this.xrCellPosition.StylePriority.UsePadding       = false;
        this.xrCellPosition.StylePriority.UseTextAlignment = false;
        this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellPosition.Weight        = 0.36279730777622732D;
        //
        // xrCellDepartment
        //
        this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellDepartment.Name    = "xrCellDepartment";
        this.xrCellDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellDepartment.StylePriority.UseBorders       = false;
        this.xrCellDepartment.StylePriority.UseFont          = false;
        this.xrCellDepartment.StylePriority.UsePadding       = false;
        this.xrCellDepartment.StylePriority.UseTextAlignment = false;
        this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellDepartment.Weight        = 0.479278257776865D;
        //
        // xrCellWorkingDate
        //
        this.xrCellWorkingDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellWorkingDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellWorkingDate.Name    = "xrCellWorkingDate";
        this.xrCellWorkingDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellWorkingDate.StylePriority.UseBorders       = false;
        this.xrCellWorkingDate.StylePriority.UseFont          = false;
        this.xrCellWorkingDate.StylePriority.UsePadding       = false;
        this.xrCellWorkingDate.StylePriority.UseTextAlignment = false;
        this.xrCellWorkingDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellWorkingDate.Weight        = 0.29075979682708863D;
        //
        // xrCellOccupation
        //
        this.xrCellOccupation.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellOccupation.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellOccupation.Name    = "xrCellOccupation";
        this.xrCellOccupation.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellOccupation.StylePriority.UseBorders       = false;
        this.xrCellOccupation.StylePriority.UseFont          = false;
        this.xrCellOccupation.StylePriority.UsePadding       = false;
        this.xrCellOccupation.StylePriority.UseTextAlignment = false;
        this.xrCellOccupation.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellOccupation.Weight        = 0.3649814717239282D;
        //
        // xrCellJobTitle
        //
        this.xrCellJobTitle.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellJobTitle.Name    = "xrCellJobTitle";
        this.xrCellJobTitle.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellJobTitle.StylePriority.UseFont          = false;
        this.xrCellJobTitle.StylePriority.UsePadding       = false;
        this.xrCellJobTitle.StylePriority.UseTextAlignment = false;
        this.xrCellJobTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellJobTitle.Weight        = 0.28492564621183081D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 46F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 61F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 50F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002066294F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell9,
            this.xrTableCell6,
            this.xrTableCell16,
            this.xrTableCell3,
            this.xrTableCell5
        });
        this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow1.Name    = "xrTableRow1";
        this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow1.StylePriority.UseFont          = false;
        this.xrTableRow1.StylePriority.UsePadding       = false;
        this.xrTableRow1.StylePriority.UseTextAlignment = false;
        this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow1.Weight        = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.090293512609720988D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBorders       = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã NV";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.22466849704325181D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.56441461324327691D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBorders       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "CHỨC VỤ";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.38133527424923896D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseBorders       = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "PHÒNG BAN";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 0.5037681195332433D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseBorders       = false;
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "NGÀY VÀO LÀM VIỆC";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 0.30561652344941664D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseBorders       = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "NGHỀ NGHIỆP";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.38363144440642716D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseBorders       = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "CHỨC DANH CHUYÊN MÔN";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.299484514259669D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblReportDate,
            this.xrl_TitleReport
        });
        this.ReportHeader.HeightF = 95.08333F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // lblReportDate
        //
        this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
        this.lblReportDate.Name                           = "lblReportDate";
        this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblReportDate.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblReportDate.StylePriority.UseFont          = false;
        this.lblReportDate.StylePriority.UseTextAlignment = false;
        this.lblReportDate.Text                           = "(Thời gian cập nhật {0}/{1}/{2})";
        this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_TitleReport
        //
        this.xrl_TitleReport.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_TitleReport.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.xrl_TitleReport.Name                           = "xrl_TitleReport";
        this.xrl_TitleReport.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TitleReport.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.xrl_TitleReport.StylePriority.UseFont          = false;
        this.xrl_TitleReport.StylePriority.UseTextAlignment = false;
        this.xrl_TitleReport.Text                           = "DANH SÁCH THỐNG KÊ NGHỀ NGHIỆP";
        this.xrl_TitleReport.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblHRDepartment,
            this.lblCreator,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 226F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // lblHRDepartment
        //
        this.lblHRDepartment.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblHRDepartment.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
        this.lblHRDepartment.Name                           = "lblHRDepartment";
        this.lblHRDepartment.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblHRDepartment.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
        this.lblHRDepartment.StylePriority.UseFont          = false;
        this.lblHRDepartment.StylePriority.UseTextAlignment = false;
        this.lblHRDepartment.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblCreator
        //
        this.lblCreator.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblCreator.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
        this.lblCreator.Name                           = "lblCreator";
        this.lblCreator.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblCreator.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
        this.lblCreator.StylePriority.UseFont          = false;
        this.lblCreator.StylePriority.UseTextAlignment = false;
        this.lblCreator.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_footer3
        //
        this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
        this.xrl_footer3.Multiline                      = true;
        this.xrl_footer3.Name                           = "xrl_footer3";
        this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "NGƯỜI LẬP\r\n";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
        this.xrl_footer1.Name                           = "xrl_footer1";
        this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "PHÒNG NHÂN SỰ";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_GroupDepartment
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrt_GroupDepartment
        //
        this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
        this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
        this.xrt_GroupDepartment.StylePriority.UseFont          = false;
        this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
        this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
        this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_GroupDepartment.Weight        = 2D;
        this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
        //
        // rp_BusinessOccupation
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.ReportHeader,
            this.ReportFooter,
            this.GroupHeader1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "15.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptBanHang.resx";
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.header = new DevExpress.XtraReports.UI.XRSubreport();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
         this.dsBaoCaoBanHang1 = new dsBaoCaoBanHang();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sdfsdfsdf = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrDiscount01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.thanhtienafterdis01 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrBarCode1 = new DevExpress.XtraReports.UI.XRBarCode();
         this.pTongTien = new DevExpress.XtraReports.UI.CalculatedField();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.sale_InvoiceToPrintTableAdapter1 = new dsBaoCaoBanHangTableAdapters.sale_InvoiceToPrintTableAdapter();
         this.Thanhtien = new DevExpress.XtraReports.UI.CalculatedField();
         this.percentDiscount1 = new DevExpress.XtraReports.UI.CalculatedField();
         this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrPictureBox5 = new DevExpress.XtraReports.UI.XRPictureBox();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.Detail.HeightF = 30F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseFont = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrTable2
         //
         this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable2.BorderWidth = 1F;
         this.xrTable2.Font = new System.Drawing.Font("MS Reference Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 5, 100F);
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.xrTable2.SizeF = new System.Drawing.SizeF(748.96F, 30F);
         this.xrTable2.StylePriority.UseBorderDashStyle = false;
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseBorderWidth = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UsePadding = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.colHangHoa,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell31});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UsePadding = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "STT";
         this.xrTableCell7.Weight = 0.36458328247070315D;
         this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
         //
         // colHangHoa
         //
         this.colHangHoa.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.productname")});
         this.colHangHoa.Name = "colHangHoa";
         this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.colHangHoa.StylePriority.UseBorders = false;
         this.colHangHoa.StylePriority.UsePadding = false;
         this.colHangHoa.StylePriority.UseTextAlignment = false;
         this.colHangHoa.Text = "colHangHoa";
         this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.colHangHoa.Weight = 4.052847185033353D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentPrice", "{0:n0}")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UsePadding = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:0.00 VND}";
         this.xrTableCell11.Summary = xrSummary1;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell11.Weight = 0.99829627768477114D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Quantity", "{0:n0}")});
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UsePadding = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Text = "xrTableCell30";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell30.Weight = 0.782191345631486D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Total", "{0:n0}")});
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UsePadding = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Text = "xrTableCell31";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell31.Weight = 0.97617918250893376D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 0F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 14F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // PageHeader
         //
         this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.PageHeader.HeightF = 25F;
         this.PageHeader.Name = "PageHeader";
         this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader;
         //
         // xrTable4
         //
         this.xrTable4.BackColor = System.Drawing.Color.Snow;
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.BorderWidth = 1F;
         this.xrTable4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable4.SizeF = new System.Drawing.SizeF(748.96F, 25F);
         this.xrTable4.StylePriority.UseBackColor = false;
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseBorderWidth = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell16,
         this.xrTableCell19});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "STT";
         this.xrTableCell3.Weight = 0.36560020791428305D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "Tên Hàng Hoá";
         this.xrTableCell13.Weight = 4.0641524463652621D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "Đơn giá";
         this.xrTableCell14.Weight = 1.0010809425008556D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "Số lượng\r\n";
         this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell16.Weight = 0.78437319053638133D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.Text = "Thành tiền";
         this.xrTableCell19.Weight = 0.97890222513473879D;
         //
         // header
         //
         this.header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.header.Name = "header";
         this.header.SizeF = new System.Drawing.SizeF(750F, 29.625F);
         //
         // xrLabel10
         //
         this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.InvoiceNo", "Mã đơn : {0}")});
         this.xrLabel10.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Italic);
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 75.54163F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 26.41667F);
         this.xrLabel10.StylePriority.UseFont = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "xrLabel10";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold);
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 32.74995F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(748.9583F, 42.79168F);
         this.xrLabel13.StylePriority.UseFont = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 173.75F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(69.79163F, 16F);
         this.xrLabel17.StylePriority.UseFont = false;
         this.xrLabel17.Text = "Ghi chú: ";
         //
         // GroupHeader2
         //
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("TenKhachHang", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 0F;
         this.GroupHeader2.Name = "GroupHeader2";
         //
         // xrTable7
         //
         this.xrTable7.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(7.249959F, 101.9583F);
         this.xrTable7.Name = "xrTable7";
         this.xrTable7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 4, 4, 100F);
         this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
         this.xrTable7.SizeF = new System.Drawing.SizeF(741.7084F, 54.75F);
         this.xrTable7.StylePriority.UseFont = false;
         this.xrTable7.StylePriority.UsePadding = false;
         this.xrTable7.StylePriority.UseTextAlignment = false;
         this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell20,
         this.xrTableCell18,
         this.xrTableCell25,
         this.xrTableCell24});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 1D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseFont = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "Khách hàng: ";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell6.Weight = 1.0520836686849815D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Customer")});
         this.xrTableCell23.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseFont = false;
         this.xrTableCell23.Text = "xrTableCell23";
         this.xrTableCell23.Weight = 2.5880258821406894D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseFont = false;
         this.xrTableCell20.Text = "Ngày :";
         this.xrTableCell20.Weight = 0.5894757719221223D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentDate", "{0:dd/MM/yyyy}")});
         this.xrTableCell18.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseFont = false;
         this.xrTableCell18.Weight = 1.0417734816221154D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseFont = false;
         this.xrTableCell25.StylePriority.UseTextAlignment = false;
         this.xrTableCell25.Text = "Điện thoại:";
         this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell25.Weight = 0.90503245148400147D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Phone")});
         this.xrTableCell24.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseFont = false;
         this.xrTableCell24.Text = "xrTableCell24";
         this.xrTableCell24.Weight = 1.2406931607105067D;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseFont = false;
         this.xrTableCell26.Text = "Địa chỉ : ";
         this.xrTableCell26.Weight = 0.73958367866282337D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CustomerAddress")});
         this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseFont = false;
         this.xrTableCell27.Weight = 6.6775007379015943D;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Snow;
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable1.BorderWidth = 1F;
         this.xrTable1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 183.4722F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.xrTable1.SizeF = new System.Drawing.SizeF(748.9583F, 25F);
         this.xrTable1.StylePriority.UseBackColor = false;
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseBorderWidth = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell5});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "STT";
         this.xrTableCell1.Weight = 0.36560020791428305D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.Text = "Tên Hàng Hoá";
         this.xrTableCell2.Weight = 4.0641554790407382D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.Text = "Đơn giá";
         this.xrTableCell4.Weight = 1.0011300565736081D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell21.Multiline = true;
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "Số lượng\r\n";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.78432104378815293D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.Text = "Thành tiền";
         this.xrTableCell5.Weight = 0.97895618222477876D;
         //
         // formattingRule1
         //
         this.formattingRule1.DataMember = null;
         //
         //
         //
         this.formattingRule1.Formatting.BackColor = System.Drawing.Color.Gray;
         this.formattingRule1.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(50, 50, 50, 50, 100F);
         this.formattingRule1.Name = "formattingRule1";
         //
         // dsBaoCaoBanHang1
         //
         this.dsBaoCaoBanHang1.DataSetName = "dsBaoCaoBanHang";
         this.dsBaoCaoBanHang1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrTable3,
         this.xrTable6,
         this.xrLabel17});
         this.GroupFooter1.HeightF = 192.4583F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // xrLabel4
         //
         this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Notes")});
         this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(70.83334F, 173.75F);
         this.xrLabel4.Name = "xrLabel4";
         this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel4.SizeF = new System.Drawing.SizeF(329.0094F, 16F);
         this.xrLabel4.StylePriority.UseFont = false;
         //
         // xrTable3
         //
         this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.xrTable3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
         this.xrTable3.BorderWidth = 1F;
         this.xrTable3.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow7,
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable3.SizeF = new System.Drawing.SizeF(749F, 124.1666F);
         this.xrTable3.StylePriority.UseBorderDashStyle = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseBorderWidth = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.xrTableCell10,
         this.xrSum});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.Weight = 4.6116583633422845D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseFont = false;
         this.xrTableCell10.StylePriority.UsePadding = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "Tổng cộng";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell10.Weight = 1.4052649307250975D;
         //
         // xrSum
         //
         this.xrSum.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.FinalTotal", "{0:n0}")});
         this.xrSum.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrSum.Name = "xrSum";
         this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrSum.StylePriority.UseBorders = false;
         this.xrSum.StylePriority.UseFont = false;
         this.xrSum.StylePriority.UsePadding = false;
         this.xrSum.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:n0}";
         this.xrSum.Summary = xrSummary2;
         this.xrSum.Text = "xrSum";
         this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrSum.Weight = 1.4730767059326171D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell28,
         this.xrTableCell29});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseBorders = false;
         this.xrTableCell22.Weight = 4.6116583633422845D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseFont = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Text = "Chiết khấu 1";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell28.Weight = 1.4052649307250975D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount", "{0:n0}")});
         this.xrTableCell29.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseFont = false;
         this.xrTableCell29.StylePriority.UsePadding = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell29.Weight = 1.4730767059326171D;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.Weight = 4.6116583633422845D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseFont = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "Chiết khấu 2";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell33.Weight = 1.4052649307250975D;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.sdfsdfsdf,
         this.xrDiscount01});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Weight = 4.6116586875915528D;
         //
         // sdfsdfsdf
         //
         this.sdfsdfsdf.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.sdfsdfsdf.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.sdfsdfsdf.Multiline = true;
         this.sdfsdfsdf.Name = "sdfsdfsdf";
         this.sdfsdfsdf.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.sdfsdfsdf.StylePriority.UseBorders = false;
         this.sdfsdfsdf.StylePriority.UseFont = false;
         this.sdfsdfsdf.StylePriority.UsePadding = false;
         this.sdfsdfsdf.StylePriority.UseTextAlignment = false;
         this.sdfsdfsdf.Text = "Phí giao hàng\r\n";
         this.sdfsdfsdf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sdfsdfsdf.Weight = 1.4052652549743652D;
         //
         // xrDiscount01
         //
         this.xrDiscount01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrDiscount01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.ShipFees", "{0:n0}")});
         this.xrDiscount01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrDiscount01.Name = "xrDiscount01";
         this.xrDiscount01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrDiscount01.StylePriority.UseBorders = false;
         this.xrDiscount01.StylePriority.UseFont = false;
         this.xrDiscount01.StylePriority.UsePadding = false;
         this.xrDiscount01.StylePriority.UseTextAlignment = false;
         this.xrDiscount01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrDiscount01.Weight = 1.473076057434082D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell48,
         this.thanhtienafterdis01});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.Weight = 4.6116583824157713D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseFont = false;
         this.xrTableCell48.StylePriority.UsePadding = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Thành tiền";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell48.Weight = 1.4052649497985839D;
         //
         // thanhtienafterdis01
         //
         this.thanhtienafterdis01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.thanhtienafterdis01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Payment", "{0:n0}")});
         this.thanhtienafterdis01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.thanhtienafterdis01.Name = "thanhtienafterdis01";
         this.thanhtienafterdis01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.thanhtienafterdis01.StylePriority.UseBorders = false;
         this.thanhtienafterdis01.StylePriority.UseFont = false;
         this.thanhtienafterdis01.StylePriority.UsePadding = false;
         this.thanhtienafterdis01.StylePriority.UseTextAlignment = false;
         this.thanhtienafterdis01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.thanhtienafterdis01.Weight = 1.4730766677856444D;
         this.thanhtienafterdis01.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.thanhtienafterdis01_BeforePrint);
         //
         // xrTable6
         //
         this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 137.6666F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseFont = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 1.4999997049967446D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:0.00 VND}";
         this.xrTableCell9.Summary = xrSummary3;
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 5.0000002950032547D;
         //
         // lbchu
         //
         this.lbchu.Font = new System.Drawing.Font("Arial", 12F);
         this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(2.499835F, 0F);
         this.lbchu.Name = "lbchu";
         this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.lbchu.SizeF = new System.Drawing.SizeF(573.4233F, 20F);
         this.lbchu.StylePriority.UseFont = false;
         this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
         //
         // xrLine1
         //
         this.xrLine1.BorderWidth = 5F;
         this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
         this.xrLine1.LineWidth = 2;
         this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F);
         this.xrLine1.Name = "xrLine1";
         this.xrLine1.SizeF = new System.Drawing.SizeF(750.0001F, 11.54169F);
         this.xrLine1.StylePriority.UseBorderWidth = false;
         //
         // xrPictureBox1
         //
         this.xrPictureBox1.ImageUrl = "~\\img\\logohdk.png";
         this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 24.54169F);
         this.xrPictureBox1.Name = "xrPictureBox1";
         this.xrPictureBox1.SizeF = new System.Drawing.SizeF(171.875F, 61.49998F);
         this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel5
         //
         this.xrLabel5.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Italic);
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 115.2917F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(480.514F, 31.33333F);
         this.xrLabel5.StylePriority.UseFont = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Mã giảm giá bên có thời hạn từ 01-05-2015 đến ngày 30-05-2015.";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 86.04166F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(480.514F, 18.83333F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "TẶNG BẠN MÃ GIẢM GIÁ 10% CHO LẦN MUA HÀNG TIẾP THEO";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 22F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(419.7918F, 36.20841F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(240.6251F, 36.37494F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "CẢM ƠN BẠN !";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrBarCode1
         //
         this.xrBarCode1.AutoModule = true;
         this.xrBarCode1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDotDot;
         this.xrBarCode1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrBarCode1.Font = new System.Drawing.Font("Microsoft YaHei", 16F, System.Drawing.FontStyle.Bold);
         this.xrBarCode1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
         this.xrBarCode1.FormattingRules.Add(this.formattingRule1);
         this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(23.95846F, 24.54169F);
         this.xrBarCode1.Module = 8F;
         this.xrBarCode1.Name = "xrBarCode1";
         this.xrBarCode1.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 10, 20, 10, 100F);
         this.xrBarCode1.SizeF = new System.Drawing.SizeF(196.8751F, 215.7501F);
         this.xrBarCode1.StylePriority.UseBorderDashStyle = false;
         this.xrBarCode1.StylePriority.UseBorders = false;
         this.xrBarCode1.StylePriority.UseFont = false;
         this.xrBarCode1.StylePriority.UseForeColor = false;
         this.xrBarCode1.StylePriority.UsePadding = false;
         this.xrBarCode1.StylePriority.UseTextAlignment = false;
         qrCodeGenerator1.ErrorCorrectionLevel = DevExpress.XtraPrinting.BarCode.QRCodeErrorCorrectionLevel.M;
         qrCodeGenerator1.Version = DevExpress.XtraPrinting.BarCode.QRCodeVersion.Version1;
         this.xrBarCode1.Symbology = qrCodeGenerator1;
         this.xrBarCode1.Text = "GGHKBD";
         this.xrBarCode1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // pTongTien
         //
         this.pTongTien.Expression = "[TongTien]+[Thue]+[ShipFees]-[GiamGia]";
         this.pTongTien.Name = "pTongTien";
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.header,
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.xrTable1});
         this.ReportHeader.HeightF = 208.4722F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // sale_InvoiceToPrintTableAdapter1
         //
         this.sale_InvoiceToPrintTableAdapter1.ClearBeforeFill = true;
         //
         // Thanhtien
         //
         this.Thanhtien.Expression = "[sale_InvoiceToPrint.FinalTotal] - [sale_InvoiceToPrint.ShipFees]";
         this.Thanhtien.Name = "Thanhtien";
         //
         // percentDiscount1
         //
         this.percentDiscount1.Expression = "[sale_InvoiceToPrint.ShipFees]/[sale_InvoiceToPrint.FinalTotal]*100";
         this.percentDiscount1.Name = "percentDiscount1";
         //
         // PageFooter
         //
         this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrPictureBox4,
         this.xrLabel2,
         this.xrPictureBox5,
         this.xrLine1,
         this.xrBarCode1,
         this.xrPictureBox1,
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel5});
         this.PageFooter.HeightF = 245.8333F;
         this.PageFooter.Name = "PageFooter";
         //
         // xrLabel11
         //
         this.xrLabel11.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(279.4574F, 182.3125F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(181.7084F, 23F);
         this.xrLabel11.StylePriority.UseFont = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "www.hongdiepkhang.com";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox4
         //
         this.xrPictureBox4.ImageUrl = "~\\images\\icon-webapp.png";
         this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(254.4574F, 181.3125F);
         this.xrPictureBox4.Name = "xrPictureBox4";
         this.xrPictureBox4.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox4.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Underline);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(495.0408F, 182.3125F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(211.515F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.StylePriority.UseTextAlignment = false;
         this.xrLabel2.Text = "facebook.com/hongdiepkhang";
         this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrPictureBox5
         //
         this.xrPictureBox5.ImageUrl = "~\\images\\circle-social_facebook_outline_stroke-128.png";
         this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(468.0409F, 180.3125F);
         this.xrPictureBox5.Name = "xrPictureBox5";
         this.xrPictureBox5.SizeF = new System.Drawing.SizeF(24F, 24F);
         this.xrPictureBox5.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount2", "{0:n0}")});
         this.xrTableCell34.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F);
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseFont = false;
         this.xrTableCell34.StylePriority.UsePadding = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell34.Weight = 1.4730767059326171D;
         //
         // rptBanHang
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader,
         this.PageFooter});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.pTongTien,
         this.Thanhtien,
         this.percentDiscount1});
         this.DataAdapter = this.sale_InvoiceToPrintTableAdapter1;
         this.DataMember = "sale_InvoiceToPrint";
         this.DataSource = this.dsBaoCaoBanHang1;
         this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1});
         this.Margins = new System.Drawing.Printing.Margins(49, 51, 0, 14);
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_NhanVienThuViec.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.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.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrl_TenCongTy    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NgayBaoCao   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC      = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15    = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter     = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_ten3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer2      = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrl_tenphongban  = new DevExpress.XtraReports.UI.XRTableCell();
        this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25.41666F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        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.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(1071.5F, 25.41666F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UsePadding = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrtstt,
            this.xrtmanhanvien,
            this.xrthoten,
            this.xrt_ngaysinh,
            this.xrtgioitinh,
            this.xrtdiachi,
            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.75022237384069546D;
        //
        // 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.2507787682106779D;
        //
        // 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.714019488592859D;
        //
        // 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.53263773884485277D;
        //
        // 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.9861665611570718D;
        //
        // 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.1016420686709785D;
        //
        // 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.4113269749886375D;
        //
        // 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.6338582386491096D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 51F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 47F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_TenCongTy,
            this.xrl_NgayBaoCao,
            this.xrl_TitleBC
        });
        this.ReportHeader.HeightF = 123F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrl_TenCongTy
        //
        this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 25F);
        this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
        this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(438.5417F, 23F);
        this.xrl_TenCongTy.StylePriority.UseFont          = false;
        this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
        this.xrl_TenCongTy.Text                           = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ";
        this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_NgayBaoCao
        //
        this.xrl_NgayBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_NgayBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0.5000432F, 89.99999F);
        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(1071.5F, 23.00001F);
        this.xrl_NgayBaoCao.StylePriority.UseFont          = false;
        this.xrl_NgayBaoCao.StylePriority.UseTextAlignment = false;
        this.xrl_NgayBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TitleBC
        //
        this.xrl_TitleBC.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_TitleBC.LocationFloat                  = new DevExpress.Utils.PointFloat(0.5000432F, 64.99999F);
        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(1071.5F, 23F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH NHÂN VIÊN THỬ VIỆC";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 48.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.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(1071.5F, 48.33333F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell3,
            this.xrTableCell5,
            this.xrTableCell6,
            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.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
        this.xrTableRow1.StylePriority.UseFont          = false;
        this.xrTableRow1.StylePriority.UsePadding       = false;
        this.xrTableRow1.StylePriority.UseTextAlignment = false;
        this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow1.Weight        = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.35416665980020634D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Multiline = true;
        this.xrTableCell2.Name      = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã \r\nnhân viên";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.75023152746237332D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Họ tên";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 1.25076981170557D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày sinh";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.7140264970401129D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Giới tính";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.53263067668854824D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Địa chỉ";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 2.9861662648209522D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Multiline = true;
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Ngày thử việc";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 1.1016420451433482D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.Text          = "Vị trí công việc";
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell12.Weight        = 1.4113275588114178D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseTextAlignment = false;
        this.xrTableCell15.Text          = "Chức vụ";
        this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell15.Weight        = 1.6338578312825594D;
        //
        // 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 = 228F;
        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(789.0832F, 147.5F);
        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(282.4167F, 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(376.5831F, 147.5F);
        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.583099F, 147.5F);
        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(789.5833F, 22.50004F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(282.4167F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Hà Nội, ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(2.083333F, 47.50004F);
        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(789.5833F, 47.50004F);
        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(281.9166F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "GIÁM ĐỐC";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer2
        //
        this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(377.0833F, 47.50004F);
        this.xrl_footer2.Name                           = "xrl_footer2";
        this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "PHÒNG TCHC";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 26F;
        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(0.4999558F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(1071.5F, 25.41666F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UsePadding = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrl_tenphongban
        });
        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;
        //
        // xrl_tenphongban
        //
        this.xrl_tenphongban.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrl_tenphongban.Name    = "xrl_tenphongban";
        this.xrl_tenphongban.Padding = new DevExpress.XtraPrinting.PaddingInfo(11, 3, 3, 3, 100F);
        this.xrl_tenphongban.StylePriority.UseFont          = false;
        this.xrl_tenphongban.StylePriority.UsePadding       = false;
        this.xrl_tenphongban.StylePriority.UseTextAlignment = false;
        this.xrl_tenphongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrl_tenphongban.Weight        = 10.73481887275509D;
        //
        // GroupFooter1
        //
        this.GroupFooter1.Name = "GroupFooter1";
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        this.PageFooter.Name = "PageFooter";
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrPageInfo1.Format                         = "Trang {0} của {1}";
        this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(945.4581F, 39.58333F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0417F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // rp_NhanVienThuViec
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader,
            this.ReportFooter,
            this.GroupHeader1,
            this.GroupFooter1,
            this.PageFooter
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(12, 16, 51, 47);
        this.PageHeight = 850;
        this.PageWidth  = 1100;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
 public void GivenTheReportHasAnotherXRLabelNamedDontChangeMeInHeader()
 {
     _dontChangeMeLabel = new XRLabel {Name = "DontChangeMe"};
     _report.Bands[BandKind.ReportHeader].Controls.Add(_dontChangeMeLabel);
 }
Example #42
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(rptInvitation));
            DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1 = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
            this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
            this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
            this.efDataSource1 = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // TopMargin
            // 
            this.TopMargin.HeightF = 20F;
            this.TopMargin.Name = "TopMargin";
            // 
            // BottomMargin
            // 
            this.BottomMargin.HeightF = 20F;
            this.BottomMargin.Name = "BottomMargin";
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel16,
            this.xrLabel15,
            this.xrLabel14,
            this.xrLabel11,
            this.xrLabel10,
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel13,
            this.xrLine1,
            this.xrLabel12,
            this.xrLabel7,
            this.xrLabel6,
            this.xrPageBreak1,
            this.xrLabel5});
            this.Detail.HeightF = 930.2086F;
            this.Detail.Name = "Detail";
            // 
            // xrLabel16
            // 
            this.xrLabel16.Font = new System.Drawing.Font("Arial", 9F);
            this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 665.8333F);
            this.xrLabel16.Multiline = true;
            this.xrLabel16.Name = "xrLabel16";
            this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel16.SizeF = new System.Drawing.SizeF(90.62498F, 19F);
            this.xrLabel16.StylePriority.UseFont = false;
            this.xrLabel16.StylePriority.UseTextAlignment = false;
            this.xrLabel16.Text = "Respondent/s:";
            this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel15
            // 
            this.xrLabel15.Font = new System.Drawing.Font("Arial", 9F);
            this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 696.0416F);
            this.xrLabel15.Multiline = true;
            this.xrLabel15.Name = "xrLabel15";
            this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel15.SizeF = new System.Drawing.SizeF(65F, 90F);
            this.xrLabel15.StylePriority.UseFont = false;
            this.xrLabel15.StylePriority.UseTextAlignment = false;
            this.xrLabel15.Text = "______ 1) \r\n______ 2) \r\n______ 3) \r\n\r\n______ 4)";
            this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel14
            // 
            this.xrLabel14.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 911.2086F);
            this.xrLabel14.Multiline = true;
            this.xrLabel14.Name = "xrLabel14";
            this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel14.SizeF = new System.Drawing.SizeF(252.0833F, 19F);
            this.xrLabel14.StylePriority.UseFont = false;
            this.xrLabel14.StylePriority.UseTextAlignment = false;
            this.xrLabel14.Text = "Barangay Copy";
            this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            // 
            // xrLabel11
            // 
            this.xrLabel11.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 892.2086F);
            this.xrLabel11.Multiline = true;
            this.xrLabel11.Name = "xrLabel11";
            this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel11.SizeF = new System.Drawing.SizeF(252.0833F, 19F);
            this.xrLabel11.StylePriority.UseFont = false;
            this.xrLabel11.StylePriority.UseTextAlignment = false;
            this.xrLabel11.Text = "_______________  Date/Time ___________";
            this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            // 
            // xrLabel10
            // 
            this.xrLabel10.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 847.2498F);
            this.xrLabel10.Multiline = true;
            this.xrLabel10.Name = "xrLabel10";
            this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel10.SizeF = new System.Drawing.SizeF(252.0833F, 19F);
            this.xrLabel10.StylePriority.UseFont = false;
            this.xrLabel10.StylePriority.UseTextAlignment = false;
            this.xrLabel10.Text = "(Signature over printed name)";
            this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrLabel9
            // 
            this.xrLabel9.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 828.2498F);
            this.xrLabel9.Multiline = true;
            this.xrLabel9.Name = "xrLabel9";
            this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF = new System.Drawing.SizeF(252.0833F, 19F);
            this.xrLabel9.StylePriority.UseFont = false;
            this.xrLabel9.StylePriority.UseTextAlignment = false;
            this.xrLabel9.Text = "Received by Respondents or / Reprsentative/s";
            this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrLabel8
            // 
            this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(561.4583F, 828.2498F);
            this.xrLabel8.Multiline = true;
            this.xrLabel8.Name = "xrLabel8";
            this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel8.SizeF = new System.Drawing.SizeF(150F, 19F);
            this.xrLabel8.StylePriority.UseFont = false;
            this.xrLabel8.StylePriority.UseTextAlignment = false;
            this.xrLabel8.Text = "OFFICER";
            this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrLabel13
            // 
            this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Concat(\'I served this letter upon respondent \', [Complaint].[ResidentRespondents]" +
                    ".[FullName],\' on the ____ day of __________, to be settled on [SettlementDate].\'" +
                    ")")});
            this.xrLabel13.Font = new System.Drawing.Font("Arial", 9F);
            this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(220F, 615.4166F);
            this.xrLabel13.Multiline = true;
            this.xrLabel13.Name = "xrLabel13";
            this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel13.SizeF = new System.Drawing.SizeF(510F, 38F);
            this.xrLabel13.StylePriority.UseFont = false;
            this.xrLabel13.StylePriority.UseTextAlignment = false;
            this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
            // 
            // xrLine1
            // 
            this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(538.7499F, 826.2498F);
            this.xrLine1.Name = "xrLine1";
            this.xrLine1.SizeF = new System.Drawing.SizeF(187.5F, 2F);
            // 
            // xrLabel12
            // 
            this.xrLabel12.Font = new System.Drawing.Font("Arial", 9F);
            this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(283.7501F, 696.0416F);
            this.xrLabel12.Multiline = true;
            this.xrLabel12.Name = "xrLabel12";
            this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel12.SizeF = new System.Drawing.SizeF(445F, 90.00006F);
            this.xrLabel12.StylePriority.UseFont = false;
            this.xrLabel12.StylePriority.UseTextAlignment = false;
            this.xrLabel12.Text = resources.GetString("xrLabel12.Text");
            this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel7
            // 
            this.xrLabel7.Font = new System.Drawing.Font("Arial", 8F);
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(218.7501F, 571.5833F);
            this.xrLabel7.Multiline = true;
            this.xrLabel7.Name = "xrLabel7";
            this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF = new System.Drawing.SizeF(510.0001F, 23F);
            this.xrLabel7.StylePriority.UseFont = false;
            this.xrLabel7.StylePriority.UseTextAlignment = false;
            this.xrLabel7.Text = "OFFICERS RETURN";
            this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            // 
            // xrLabel6
            // 
            this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[LetterContent]")});
            this.xrLabel6.Font = new System.Drawing.Font("Arial", 9F);
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(220F, 499.9166F);
            this.xrLabel6.Multiline = true;
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(510F, 23.00002F);
            this.xrLabel6.StylePriority.UseFont = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.Text = "xrLabel5";
            this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
            // 
            // xrPageBreak1
            // 
            this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 351.0417F);
            this.xrPageBreak1.Name = "xrPageBreak1";
            // 
            // xrLabel5
            // 
            this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[LetterContent]")});
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(220F, 150F);
            this.xrLabel5.Multiline = true;
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(510F, 23.00002F);
            this.xrLabel5.Text = "xrLabel5";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1,
            this.xrLabel4,
            this.xrPictureBox4,
            this.xrPictureBox3,
            this.xrLabel3,
            this.xrLine2});
            this.PageHeader.HeightF = 995F;
            this.PageHeader.Name = "PageHeader";
            this.PageHeader.PrintAcrossBands = true;
            // 
            // xrPanel1
            // 
            this.xrPanel1.BorderColor = System.Drawing.Color.OrangeRed;
            this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel2,
            this.xrLabel1});
            this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 125F);
            this.xrPanel1.Name = "xrPanel1";
            this.xrPanel1.SizeF = new System.Drawing.SizeF(170F, 870F);
            this.xrPanel1.StylePriority.UseBorderColor = false;
            this.xrPanel1.StylePriority.UseBorders = false;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel2.Font = new System.Drawing.Font("Arial Narrow", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(5.000003F, 30.00002F);
            this.xrLabel2.Multiline = true;
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(155F, 829.7916F);
            this.xrLabel2.StylePriority.UseBorders = false;
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text = resources.GetString("xrLabel2.Text");
            this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
            this.xrLabel1.Multiline = true;
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(60F, 16F);
            this.xrLabel1.StylePriority.UseBorders = false;
            this.xrLabel1.Text = "VISION";
            // 
            // xrLabel4
            // 
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(251.25F, 75.00002F);
            this.xrLabel4.Multiline = true;
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(260F, 23F);
            this.xrLabel4.Text = " OFFICE OF THE PUNONG BARANGAY\r\n";
            // 
            // xrPictureBox4
            // 
            this.xrPictureBox4.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox4.ImageSource"));
            this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(538.75F, 0F);
            this.xrPictureBox4.Name = "xrPictureBox4";
            this.xrPictureBox4.SizeF = new System.Drawing.SizeF(80F, 90F);
            this.xrPictureBox4.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
            // 
            // xrPictureBox3
            // 
            this.xrPictureBox3.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox3.ImageSource"));
            this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(126.25F, 0F);
            this.xrPictureBox3.Name = "xrPictureBox3";
            this.xrPictureBox3.SizeF = new System.Drawing.SizeF(80F, 90F);
            this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
            // 
            // xrLabel3
            // 
            this.xrLabel3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(263.75F, 0F);
            this.xrLabel3.Multiline = true;
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(230F, 70F);
            this.xrLabel3.StylePriority.UseFont = false;
            this.xrLabel3.StylePriority.UseTextAlignment = false;
            this.xrLabel3.Text = "REPUBLIC OF THE PHILIPPINES\r\nProvince of Nueva Vizcaya\r\nMunicipality of Quezon\r\nB" +
    "ARANGAY RUNRUNO\r\n3713";
            this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            // 
            // xrLine2
            // 
            this.xrLine2.ForeColor = System.Drawing.Color.OrangeRed;
            this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(50F, 98F);
            this.xrLine2.Name = "xrLine2";
            this.xrLine2.SizeF = new System.Drawing.SizeF(650F, 2F);
            this.xrLine2.StylePriority.UseForeColor = false;
            // 
            // efDataSource1
            // 
            efConnectionParameters1.ConnectionString = "";
            efConnectionParameters1.ConnectionStringName = "BrgyMgmtEntities";
            efConnectionParameters1.Source = typeof(BrgyMgmt.Web.Models.BrgyMgmtEntities);
            this.efDataSource1.ConnectionParameters = efConnectionParameters1;
            this.efDataSource1.Name = "efDataSource1";
            // 
            // rptInvitation
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.TopMargin,
            this.BottomMargin,
            this.Detail,
            this.PageHeader});
            this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.efDataSource1});
            this.DataMember = "Settlements";
            this.DataSource = this.efDataSource1;
            this.Font = new System.Drawing.Font("Arial", 9.75F);
            this.Margins = new System.Drawing.Printing.Margins(50, 50, 20, 20);
            this.Version = "20.1";
            ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

    }
	/// <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()
    {
        string resourceFileName = "rpwg_HopDongChinhThuc.resx";

        System.Resources.ResourceManager resources = global::Resources.rpwg_HopDongChinhThuc.ResourceManager;
        this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
        this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrRichText3  = new DevExpress.XtraReports.UI.XRRichText();
        this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrRichText2  = new DevExpress.XtraReports.UI.XRRichText();
        this.xrRichText1  = new DevExpress.XtraReports.UI.XRRichText();
        this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrRichText4  = new DevExpress.XtraReports.UI.XRRichText();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrRichText4,
            this.xrLabel2,
            this.xrRichText3,
            this.xrLabel1,
            this.xrRichText2,
            this.xrRichText1
        });
        this.Detail.HeightF       = 1886F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel2
        //
        this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 113.625F);
        this.xrLabel2.Name          = "xrLabel2";
        this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF         = new System.Drawing.SizeF(296.8751F, 23F);
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text          = "Số: ";
        this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrRichText3
        //
        this.xrRichText3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 147.875F);
        this.xrRichText3.Name                  = "xrRichText3";
        this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
        this.xrRichText3.SizeF                 = new System.Drawing.SizeF(731.9583F, 22.99998F);
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic);
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(352.0835F, 50.08335F);
        this.xrLabel1.Name                           = "xrLabel1";
        this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                          = new System.Drawing.SizeF(379.875F, 23F);
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "{0}";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrRichText2
        //
        this.xrRichText2.LocationFloat         = new DevExpress.Utils.PointFloat(352.0835F, 0F);
        this.xrRichText2.Name                  = "xrRichText2";
        this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
        this.xrRichText2.SizeF                 = new System.Drawing.SizeF(379.8751F, 50.08334F);
        //
        // xrRichText1
        //
        this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
        this.xrRichText1.Name                  = "xrRichText1";
        this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
        this.xrRichText1.SizeF                 = new System.Drawing.SizeF(296.875F, 113.625F);
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 33F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 43F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrRichText4
        //
        this.xrRichText4.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 187.4583F);
        this.xrRichText4.Name                  = "xrRichText4";
        this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
        this.xrRichText4.SizeF                 = new System.Drawing.SizeF(733F, 1697.625F);
        //
        // rpwg_HopDongChinhThuc
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin
        });
        this.Margins = new System.Drawing.Printing.Margins(63, 52, 33, 43);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #45
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource3 = new System.Windows.Forms.BindingSource(this.components);
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel2,
     this.xrLabel1});
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // bindingSource3
     //
     this.bindingSource3.DataSource = typeof(anyproject.Form1.Taxi);
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType")});
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 47.91667F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType", "Заказанная машина:")});
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 10.00001F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text = "xrLabel1";
     //
     // TaxiReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.topMarginBand1,
     this.detailBand1,
     this.bottomMarginBand1});
     this.DataSource = this.bindingSource3;
     this.Version = "13.2";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellSpecialist    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellStartDate     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEndDate       = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuration         = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle      = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblCreatedByName    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle   = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrCellEmployeeCode,
         this.xrCellFullName,
         this.xrCellSpecialist,
         this.xrCellDepartment,
         this.xrCellStartDate,
         this.xrCellEndDate
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellIndex.Name    = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseBorders       = false;
     this.xrCellIndex.StylePriority.UseFont          = false;
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.11506288983747758D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrCellEmployeeCode
     //
     this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
     this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
     this.xrCellEmployeeCode.StylePriority.UseFont          = false;
     this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
     this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEmployeeCode.Weight        = 0.29857088197994475D;
     //
     // xrCellFullName
     //
     this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellFullName.Name    = "xrCellFullName";
     this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellFullName.StylePriority.UseBorders       = false;
     this.xrCellFullName.StylePriority.UseFont          = false;
     this.xrCellFullName.StylePriority.UsePadding       = false;
     this.xrCellFullName.StylePriority.UseTextAlignment = false;
     this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellFullName.Weight        = 0.66421267895776315D;
     //
     // xrCellSpecialist
     //
     this.xrCellSpecialist.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellSpecialist.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellSpecialist.Name    = "xrCellSpecialist";
     this.xrCellSpecialist.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellSpecialist.StylePriority.UseBorders       = false;
     this.xrCellSpecialist.StylePriority.UseFont          = false;
     this.xrCellSpecialist.StylePriority.UsePadding       = false;
     this.xrCellSpecialist.StylePriority.UseTextAlignment = false;
     this.xrCellSpecialist.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellSpecialist.Weight        = 0.50063678344124873D;
     //
     // xrCellDepartment
     //
     this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDepartment.Name    = "xrCellDepartment";
     this.xrCellDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellDepartment.StylePriority.UseBorders       = false;
     this.xrCellDepartment.StylePriority.UseFont          = false;
     this.xrCellDepartment.StylePriority.UsePadding       = false;
     this.xrCellDepartment.StylePriority.UseTextAlignment = false;
     this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDepartment.Weight        = 0.43686594050172423D;
     //
     // xrCellStartDate
     //
     this.xrCellStartDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellStartDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellStartDate.Name    = "xrCellStartDate";
     this.xrCellStartDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellStartDate.StylePriority.UseBorders       = false;
     this.xrCellStartDate.StylePriority.UseFont          = false;
     this.xrCellStartDate.StylePriority.UsePadding       = false;
     this.xrCellStartDate.StylePriority.UseTextAlignment = false;
     this.xrCellStartDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellStartDate.Weight        = 0.48691599310462336D;
     //
     // xrCellEndDate
     //
     this.xrCellEndDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEndDate.Name    = "xrCellEndDate";
     this.xrCellEndDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellEndDate.StylePriority.UseFont          = false;
     this.xrCellEndDate.StylePriority.UsePadding       = false;
     this.xrCellEndDate.StylePriority.UseTextAlignment = false;
     this.xrCellEndDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEndDate.Weight        = 0.41399137666848512D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 46F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 61F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 25F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002066294F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell9,
         this.xrTableCell6,
         this.xrTableCell16,
         this.xrTableCell5
     });
     this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow1.Name    = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow1.StylePriority.UseFont          = false;
     this.xrTableRow1.StylePriority.UsePadding       = false;
     this.xrTableRow1.StylePriority.UseTextAlignment = false;
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow1.Weight        = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "STT";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.12094174037649176D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã NV";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.31382700456275531D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 0.69815225577549667D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "CHUYÊN NGÀNH ĐÀO TẠO";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.5262178237727958D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "PHÒNG BAN";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.45918884766360762D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseBorders       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "NGÀY CỬ ĐI";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight        = 0.51179614501167758D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "NGÀY KẾT THÚC";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 0.43514585839338715D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuration,
         this.lblReportTitle
     });
     this.ReportHeader.HeightF = 95.08333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày {0} đến ngày {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "DANH SÁCH CBCNV ĐƯỢC CỬ ĐI ĐÀO TẠO";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportDate,
         this.lblCreatedByName,
         this.lblSignedByName,
         this.lblSignedByTitle,
         this.lblCreatedByTitle
     });
     this.ReportFooter.HeightF = 226F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
     this.lblSignedByTitle.Multiline                      = true;
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "NGƯỜI LẬP\r\n";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "PHÒNG NHÂN SỰ";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable3
     //
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrt_GroupDepartment
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrt_GroupDepartment
     //
     this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
     this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
     this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
     this.xrt_GroupDepartment.StylePriority.UseFont          = false;
     this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
     this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
     this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_GroupDepartment.Weight        = 2D;
     this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(566.0578F, 22.91667F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0} tháng {1} năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // rpHRM_EmployeeTraining
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 private void InsertGroupBand(GridColumn gridColumn, int i)
 {
     GroupHeaderBand gb = new GroupHeaderBand();
     gb.Height = 25;
     gb.RepeatEveryPage = true;
     XRLabel l = new XRLabel();
     l.DataBindings.Add("Text", this.DataSource, gridColumn.FieldName);
     l.Size = new Size(300, 25);
     l.Location = new Point(0 + i * 20, 0);
     l.BackColor = Color.Beige;
     gb.Controls.Add(l);
     GroupField gf;
     if (gridColumn.SortOrder == ColumnSortOrder.Ascending)
     {
         gf = new GroupField(gridColumn.FieldName, XRColumnSortOrder.Ascending);
         m_count_group_col += 1;
     }
     else
     {
         gf = new GroupField(gridColumn.FieldName, XRColumnSortOrder.Descending);
         m_count_group_col += 1;
     }
     l.BackColor = Color.White;
     l.Font = new Font(l.Font.FontFamily, 12, FontStyle.Bold);
     gb.GroupFields.Add(gf);
     gb.StylePriority.UseBackColor = true;
     gb.BackColor = Color.Maroon;
     this.Bands.Add(gb);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
         DevExpress.DataAccess.Sql.StoredProcQuery storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
         System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptReporteAsistencia));
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
         this.groupHeaderBand2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
         this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
         this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
         this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
         this.pEvento = new DevExpress.XtraReports.Parameters.Parameter();
         this.pTipo = new DevExpress.XtraReports.Parameters.Parameter();
         this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel17,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel24,
         this.xrLabel25});
         this.Detail.HeightF = 23F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StyleName = "DataField";
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel15
         //
         this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Confirmado")});
         this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(616.8115F, 0F);
         this.xrLabel15.Name = "xrLabel15";
         this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel15.SizeF = new System.Drawing.SizeF(84.2738F, 15F);
         this.xrLabel15.StylePriority.UseTextAlignment = false;
         this.xrLabel15.Text = "xrLabel15";
         this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Estado")});
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(701.0853F, 0F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(87.28574F, 15F);
         this.xrLabel17.StylePriority.UseTextAlignment = false;
         this.xrLabel17.Text = "xrLabel17";
         this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel19
         //
         this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.FechaAsistencia", "{0:H:mm:ss}")});
         this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 0F);
         this.xrLabel19.Name = "xrLabel19";
         this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel19.SizeF = new System.Drawing.SizeF(114.4802F, 15F);
         this.xrLabel19.StylePriority.UseTextAlignment = false;
         this.xrLabel19.Text = "xrLabel19";
         this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel20
         //
         this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.IdAsociado")});
         this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLabel20.Name = "xrLabel20";
         this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel20.SizeF = new System.Drawing.SizeF(71.17064F, 15F);
         this.xrLabel20.Text = "xrLabel20";
         //
         // xrLabel22
         //
         this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Nombre")});
         this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(77.17071F, 0F);
         this.xrLabel22.Name = "xrLabel22";
         this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel22.SizeF = new System.Drawing.SizeF(241.8293F, 15F);
         this.xrLabel22.Text = "xrLabel22";
         //
         // xrLabel23
         //
         this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.NumeroCedula")});
         this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(319.0001F, 0F);
         this.xrLabel23.Name = "xrLabel23";
         this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel23.SizeF = new System.Drawing.SizeF(93.54164F, 15F);
         this.xrLabel23.StylePriority.UseTextAlignment = false;
         this.xrLabel23.Text = "xrLabel23";
         this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel24
         //
         this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Presente")});
         this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 0F);
         this.xrLabel24.Name = "xrLabel24";
         this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel24.SizeF = new System.Drawing.SizeF(61.62891F, 15F);
         this.xrLabel24.StylePriority.UseTextAlignment = false;
         this.xrLabel24.Text = "xrLabel24";
         this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel25
         //
         this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Telefono")});
         this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 0F);
         this.xrLabel25.Name = "xrLabel25";
         this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel25.SizeF = new System.Drawing.SizeF(89.78967F, 15F);
         this.xrLabel25.StylePriority.UseTextAlignment = false;
         this.xrLabel25.Text = "xrLabel25";
         this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 71.875F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 100F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // sqlDataSource1
         //
         this.sqlDataSource1.ConnectionName = "DBEventos";
         this.sqlDataSource1.Name = "sqlDataSource1";
         storedProcQuery1.Name = "sp_Reportes_Read";
         queryParameter1.Name = "@IdEvento";
         queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.pEvento]", typeof(int));
         queryParameter2.Name = "@Tipo";
         queryParameter2.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.pTipo]", typeof(string));
         storedProcQuery1.Parameters.Add(queryParameter1);
         storedProcQuery1.Parameters.Add(queryParameter2);
         storedProcQuery1.StoredProcName = "sp_Reportes_Read";
         this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1});
         this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
         //
         // groupHeaderBand2
         //
         this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel5,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel13});
         this.groupHeaderBand2.HeightF = 39.37499F;
         this.groupHeaderBand2.Name = "groupHeaderBand2";
         this.groupHeaderBand2.StyleName = "FieldCaption";
         //
         // xrLabel3
         //
         this.xrLabel3.BackColor = System.Drawing.Color.Blue;
         this.xrLabel3.ForeColor = System.Drawing.Color.White;
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(616.8114F, 5.999994F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(84.2738F, 20F);
         this.xrLabel3.StylePriority.UseBackColor = false;
         this.xrLabel3.StylePriority.UseForeColor = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "Confirmado";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel5
         //
         this.xrLabel5.BackColor = System.Drawing.Color.Blue;
         this.xrLabel5.ForeColor = System.Drawing.Color.White;
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(701.0852F, 5.999994F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(87.28574F, 20F);
         this.xrLabel5.StylePriority.UseBackColor = false;
         this.xrLabel5.StylePriority.UseForeColor = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Estado";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel7
         //
         this.xrLabel7.BackColor = System.Drawing.Color.Blue;
         this.xrLabel7.ForeColor = System.Drawing.Color.White;
         this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 5.999994F);
         this.xrLabel7.Name = "xrLabel7";
         this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel7.SizeF = new System.Drawing.SizeF(114.4801F, 20F);
         this.xrLabel7.StylePriority.UseBackColor = false;
         this.xrLabel7.StylePriority.UseForeColor = false;
         this.xrLabel7.StylePriority.UseTextAlignment = false;
         this.xrLabel7.Text = "Hora Asistencia";
         this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel8
         //
         this.xrLabel8.BackColor = System.Drawing.Color.Blue;
         this.xrLabel8.ForeColor = System.Drawing.Color.White;
         this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 5.999994F);
         this.xrLabel8.Name = "xrLabel8";
         this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel8.SizeF = new System.Drawing.SizeF(71.17064F, 20F);
         this.xrLabel8.StylePriority.UseBackColor = false;
         this.xrLabel8.StylePriority.UseForeColor = false;
         this.xrLabel8.StylePriority.UseTextAlignment = false;
         this.xrLabel8.Text = "Id";
         this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel10
         //
         this.xrLabel10.BackColor = System.Drawing.Color.Blue;
         this.xrLabel10.ForeColor = System.Drawing.Color.White;
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(77.17064F, 6.00001F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(241.8294F, 20F);
         this.xrLabel10.StylePriority.UseBackColor = false;
         this.xrLabel10.StylePriority.UseForeColor = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "Nombre";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel11
         //
         this.xrLabel11.BackColor = System.Drawing.Color.Blue;
         this.xrLabel11.ForeColor = System.Drawing.Color.White;
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(319F, 5.999994F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(93.54164F, 20F);
         this.xrLabel11.StylePriority.UseBackColor = false;
         this.xrLabel11.StylePriority.UseForeColor = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "Cédula";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel12
         //
         this.xrLabel12.BackColor = System.Drawing.Color.Blue;
         this.xrLabel12.ForeColor = System.Drawing.Color.White;
         this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 5.999994F);
         this.xrLabel12.Name = "xrLabel12";
         this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel12.SizeF = new System.Drawing.SizeF(61.62897F, 20F);
         this.xrLabel12.StylePriority.UseBackColor = false;
         this.xrLabel12.StylePriority.UseForeColor = false;
         this.xrLabel12.StylePriority.UseTextAlignment = false;
         this.xrLabel12.Text = "Presente";
         this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.BackColor = System.Drawing.Color.Blue;
         this.xrLabel13.ForeColor = System.Drawing.Color.White;
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 6.00001F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(89.78967F, 20F);
         this.xrLabel13.StylePriority.UseBackColor = false;
         this.xrLabel13.StylePriority.UseForeColor = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "Teléfono";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // pageFooterBand1
         //
         this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrPageInfo1,
         this.xrPageInfo2});
         this.pageFooterBand1.HeightF = 31F;
         this.pageFooterBand1.Name = "pageFooterBand1";
         //
         // xrLine2
         //
         this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLine2.Name = "xrLine2";
         this.xrLine2.SizeF = new System.Drawing.SizeF(844F, 8F);
         //
         // xrPageInfo1
         //
         this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 8F);
         this.xrPageInfo1.Name = "xrPageInfo1";
         this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
         this.xrPageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo1.StyleName = "PageInfo";
         //
         // xrPageInfo2
         //
         this.xrPageInfo2.Format = "Página {0} de {1}";
         this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(536.9999F, 8F);
         this.xrPageInfo2.Name = "xrPageInfo2";
         this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo2.StyleName = "PageInfo";
         this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
         //
         // reportHeaderBand1
         //
         this.reportHeaderBand1.HeightF = 78.08336F;
         this.reportHeaderBand1.Name = "reportHeaderBand1";
         //
         // Title
         //
         this.Title.BackColor = System.Drawing.Color.Transparent;
         this.Title.BorderColor = System.Drawing.Color.Black;
         this.Title.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.Title.BorderWidth = 1F;
         this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.Title.ForeColor = System.Drawing.Color.Navy;
         this.Title.Name = "Title";
         //
         // FieldCaption
         //
         this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
         this.FieldCaption.BorderColor = System.Drawing.Color.Black;
         this.FieldCaption.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.FieldCaption.BorderWidth = 1F;
         this.FieldCaption.Font = new System.Drawing.Font("Times New Roman", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.FieldCaption.ForeColor = System.Drawing.Color.Navy;
         this.FieldCaption.Name = "FieldCaption";
         //
         // PageInfo
         //
         this.PageInfo.BackColor = System.Drawing.Color.Transparent;
         this.PageInfo.BorderColor = System.Drawing.Color.Black;
         this.PageInfo.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.PageInfo.BorderWidth = 1F;
         this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.PageInfo.ForeColor = System.Drawing.Color.Navy;
         this.PageInfo.Name = "PageInfo";
         //
         // DataField
         //
         this.DataField.BackColor = System.Drawing.Color.Transparent;
         this.DataField.BorderColor = System.Drawing.Color.Black;
         this.DataField.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.DataField.BorderWidth = 1F;
         this.DataField.Font = new System.Drawing.Font("Arial", 8F);
         this.DataField.ForeColor = System.Drawing.Color.Black;
         this.DataField.Name = "DataField";
         //
         // pEvento
         //
         this.pEvento.Description = "Seleccione un evento";
         this.pEvento.Name = "pEvento";
         this.pEvento.Type = typeof(int);
         this.pEvento.ValueInfo = "0";
         this.pEvento.Visible = false;
         //
         // pTipo
         //
         this.pTipo.Description = "Seleccione un tipo";
         this.pTipo.Name = "pTipo";
         this.pTipo.Visible = false;
         //
         // PageHeader
         //
         this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine3,
         this.xrLine4,
         this.xrLabel27});
         this.PageHeader.HeightF = 60.41667F;
         this.PageHeader.Name = "PageHeader";
         //
         // xrLine3
         //
         this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 58.41667F);
         this.xrLine3.Name = "xrLine3";
         this.xrLine3.SizeF = new System.Drawing.SizeF(843.9999F, 2F);
         //
         // xrLine4
         //
         this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrLine4.Name = "xrLine4";
         this.xrLine4.SizeF = new System.Drawing.SizeF(843.9999F, 16.00001F);
         //
         // xrLabel27
         //
         this.xrLabel27.BackColor = System.Drawing.Color.Blue;
         this.xrLabel27.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrLabel27.ForeColor = System.Drawing.Color.White;
         this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.00001F);
         this.xrLabel27.Name = "xrLabel27";
         this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel27.SizeF = new System.Drawing.SizeF(843.9999F, 34.16666F);
         this.xrLabel27.StyleName = "Title";
         this.xrLabel27.StylePriority.UseBackColor = false;
         this.xrLabel27.StylePriority.UseFont = false;
         this.xrLabel27.StylePriority.UseForeColor = false;
         this.xrLabel27.StylePriority.UseTextAlignment = false;
         this.xrLabel27.Text = "REPORTE DE ASISTENCIA";
         this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // RptReporteAsistencia
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.groupHeaderBand2,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.PageHeader});
         this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1});
         this.DataMember = "sp_Reportes_Read";
         this.DataSource = this.sqlDataSource1;
         this.Margins = new System.Drawing.Printing.Margins(0, 0, 72, 100);
         this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.pEvento,
         this.pTipo});
         this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField});
         this.Version = "15.2";
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptMultiInvoicesToPrint.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.header = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrOrderNum = new DevExpress.XtraReports.UI.XRTableCell();
     this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
     this.colDonVi = new DevExpress.XtraReports.UI.XRTableCell();
     this.colSoLuong = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPercent = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrDiscount = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPayment = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.dsMultiInvoicesToPrint1 = new dsMultiInvoicesToPrint();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.invoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.InvoicesSelectByWhereTableAdapter();
     this.productsInInvoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.ProductsInInvoicesSelectByWhereTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.header});
     this.Detail.HeightF = 106.2084F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoiceNo", "Số: {0}")});
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 27.50006F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 16F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.9580771F, 43.50004F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(746.9168F, 20F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable7
     //
     this.xrTable7.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(9.999903F, 70.20839F);
     this.xrTable7.Name = "xrTable7";
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
     this.xrTable7.SizeF = new System.Drawing.SizeF(731.7083F, 36F);
     this.xrTable7.StylePriority.UseFont = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell25,
         this.xrTableCell24,
         this.xrTableCell7,
         this.xrTableCell19});
     this.xrTableRow8.Name = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "Khách hàng: ";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight = 0.76041707714783124D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.Weight = 1.6354165423495146D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseFont = false;
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "Điện thoại:";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell25.Weight = 0.62583404093619488D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Phone")});
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.Text = "xrTableCell24";
     this.xrTableCell24.Weight = 1.1164577939005926D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text = "Địa chỉ: ";
     this.xrTableCell7.Weight = 0.51395781087784642D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CustomerAddress")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.Weight = 2.6649996045159052D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27,
         this.xrTableCell28,
         this.xrTableCell29});
     this.xrTableRow9.Name = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.StylePriority.UseFont = false;
     this.xrTableCell26.Text = "Địa chỉ: ";
     this.xrTableCell26.Weight = 0.76041707714783124D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.DeliveryAddress")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.Weight = 3.377708655696229D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.StylePriority.UsePadding = false;
     this.xrTableCell28.Text = "Ngày: ";
     this.xrTableCell28.Weight = 0.51395721385922755D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CurrentDate", "{0:dd/MM/yyyy}")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.Weight = 2.664999923024598D;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.Snow;
     this.xrTable1.BorderColor = System.Drawing.Color.Black;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.BorderWidth = 1;
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(749.5835F, 25F);
     this.xrTable1.StylePriority.UseBackColor = false;
     this.xrTable1.StylePriority.UseBorderColor = false;
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseBorderWidth = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell22,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell20,
         this.xrTableCell17,
         this.xrTableCell5});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "STT";
     this.xrTableCell1.Weight = 0.36560024648643036D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders = false;
     this.xrTableCell2.Text = "Tên Hàng Hoá";
     this.xrTableCell2.Weight = 2.3565548083905545D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.Text = "Trọng lượng";
     this.xrTableCell22.Weight = 0.78342919997407734D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders = false;
     this.xrTableCell3.Text = "ĐVT";
     this.xrTableCell3.Weight = 0.47005750662449247D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Text = "Đơn giá bán";
     this.xrTableCell4.Weight = 0.78969598039839828D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "Số lượng bán";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.85288598746242816D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.Text = "Tặng";
     this.xrTableCell20.Weight = 0.44682014695324773D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Text = "Thành tiền";
     this.xrTableCell5.Weight = 1.0048792922737211D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 0F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.HeightF = 5.625057F;
     this.PageHeader.Name = "PageHeader";
     //
     // header
     //
     this.header.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 0F);
     this.header.Name = "header";
     this.header.SizeF = new System.Drawing.SizeF(748.9584F, 27.50006F);
     //
     // xrTable2
     //
     this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth = 1;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(749.5835F, 20F);
     this.xrTable2.StylePriority.UseBorderDashStyle = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrOrderNum,
         this.colHangHoa,
         this.colDonVi,
         this.colSoLuong,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell12,
         this.xrTableCell35,
         this.xrTableCell31});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrOrderNum
     //
     this.xrOrderNum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrOrderNum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.RowIn" +
                 "dex")});
     this.xrOrderNum.Name = "xrOrderNum";
     this.xrOrderNum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrOrderNum.StylePriority.UseBorders = false;
     this.xrOrderNum.StylePriority.UsePadding = false;
     this.xrOrderNum.StylePriority.UseTextAlignment = false;
     this.xrOrderNum.Text = "xrOrderNum";
     this.xrOrderNum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrOrderNum.Weight = 0.36458328247070315D;
     //
     // colHangHoa
     //
     this.colHangHoa.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.produ" +
                 "ctname")});
     this.colHangHoa.Name = "colHangHoa";
     this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colHangHoa.StylePriority.UseBorders = false;
     this.colHangHoa.StylePriority.UsePadding = false;
     this.colHangHoa.StylePriority.UseTextAlignment = false;
     this.colHangHoa.Text = "colHangHoa";
     this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.colHangHoa.Weight = 2.3499999233670534D;
     //
     // colDonVi
     //
     this.colDonVi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colDonVi.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Style" +
                 "")});
     this.colDonVi.Name = "colDonVi";
     this.colDonVi.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colDonVi.StylePriority.UseBorders = false;
     this.colDonVi.StylePriority.UsePadding = false;
     this.colDonVi.Text = "colDonVi";
     this.colDonVi.Weight = 0.78125038790315038D;
     //
     // colSoLuong
     //
     this.colSoLuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colSoLuong.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Unit")});
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colSoLuong.StylePriority.UseBorders = false;
     this.colSoLuong.StylePriority.UsePadding = false;
     this.colSoLuong.Text = "colSoLuong";
     this.colSoLuong.Weight = 0.46875033858450066D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Curre" +
                 "ntPrice", "{0:n0}")});
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UseBorders = false;
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:0.00 VND}";
     this.xrTableCell11.Summary = xrSummary1;
     this.xrTableCell11.Text = "xrTableCell11";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.Weight = 0.78749918670705688D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Quant" +
                 "ity", "{0:n0}")});
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell30.StylePriority.UsePadding = false;
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.Text = "xrTableCell30";
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell30.Weight = 0.85051490427718135D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Bonus" +
                 "", "{0:n0}")});
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight = 0.4455766067495005D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total" +
                 "", "{0:n0}")});
     this.xrTableCell31.Name = "xrTableCell31";
     this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell31.StylePriority.UsePadding = false;
     this.xrTableCell31.StylePriority.UseTextAlignment = false;
     this.xrTableCell31.Text = "[InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total]";
     this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell31.Weight = 1.0020843341075598D;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Notes")});
     this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(9.041818F, 111.7916F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(578.4171F, 16F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // xrTable3
     //
     this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth = 1;
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow4,
         this.xrTableRow5});
     this.xrTable3.SizeF = new System.Drawing.SizeF(749.5835F, 60F);
     this.xrTable3.StylePriority.UseBorderDashStyle = false;
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseBorderWidth = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell10,
         this.xrSum});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.Weight = 5.6337398317540881D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Weight = 0.89610777590259483D;
     //
     // xrSum
     //
     this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.FinalTotal", "{0:n0}")});
     this.xrSum.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrSum.Name = "xrSum";
     this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrSum.StylePriority.UseFont = false;
     this.xrSum.StylePriority.UsePadding = false;
     this.xrSum.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:n0}";
     this.xrSum.Summary = xrSummary2;
     this.xrSum.Text = "xrSum";
     this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrSum.Weight = 1.0076542233980046D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrPercent,
         this.xrTableCell13,
         this.xrDiscount});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseFont = false;
     this.xrTableCell18.Text = "Chiết khấu:";
     this.xrTableCell18.Weight = 4.7784974502941386D;
     //
     // xrPercent
     //
     this.xrPercent.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPercent.Name = "xrPercent";
     this.xrPercent.StylePriority.UseFont = false;
     this.xrPercent.StylePriority.UseTextAlignment = false;
     this.xrPercent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPercent.Weight = 0.855243157122188D;
     this.xrPercent.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrPercent_BeforePrint);
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 0.89610592194689409D;
     //
     // xrDiscount
     //
     this.xrDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Discount", "{0:n0}")});
     this.xrDiscount.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrDiscount.Name = "xrDiscount";
     this.xrDiscount.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrDiscount.StylePriority.UseFont = false;
     this.xrDiscount.StylePriority.UsePadding = false;
     this.xrDiscount.StylePriority.UseTextAlignment = false;
     this.xrDiscount.Text = "xrDiscount";
     this.xrDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrDiscount.Weight = 1.0076553016914669D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell36,
         this.xrTableCell34,
         this.xrPayment});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseFont = false;
     this.xrTableCell32.Text = "Số tiền phải thanh toán:";
     this.xrTableCell32.Weight = 4.7784974502941386D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.Weight = 0.85524315712218835D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.Weight = 0.89610592533963673D;
     //
     // xrPayment
     //
     this.xrPayment.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Payment", "{0:n0}")});
     this.xrPayment.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPayment.Name = "xrPayment";
     this.xrPayment.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrPayment.StylePriority.UseFont = false;
     this.xrPayment.StylePriority.UsePadding = false;
     this.xrPayment.StylePriority.UseTextAlignment = false;
     this.xrPayment.Text = "[InvoicesSelectByWhere.Payment]";
     this.xrPayment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPayment.Weight = 1.0076552982987241D;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 132.7916F);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text = "Nhân viên bán hàng";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(8.208816F, 91.79157F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(64.58333F, 16.00001F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.Text = "Ghi chú: ";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Seller")});
     this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 192.5001F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(130F, 16.00002F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.SellerPhone")});
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(593.0836F, 208.5001F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(129.0001F, 16F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable6
     //
     this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 60.00001F);
     this.xrTable6.Name = "xrTable6";
     this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
     this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
     this.xrTable6.StylePriority.UseBorders = false;
     this.xrTable6.StylePriority.UseFont = false;
     this.xrTable6.StylePriority.UseTextAlignment = false;
     this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight = 1.0847216847737626D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
     this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:0.00 VND}";
     this.xrTableCell9.Summary = xrSummary3;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight = 5.4152783152262369D;
     //
     // lbchu
     //
     this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.lbchu.Name = "lbchu";
     this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbchu.SizeF = new System.Drawing.SizeF(623.7981F, 20F);
     this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
     //
     // GroupFooter2
     //
     this.GroupFooter2.HeightF = 20.45835F;
     this.GroupFooter2.Name = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 132.7916F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text = "Nhân viên giao hàng";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.DeliverPhone")});
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 208.5001F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Deliver")});
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 192.5001F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(72.79218F, 91.79156F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(514.6667F, 16F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "- Vui lòng kiểm tra kỹ hàng trước khi nhận. Nhân viên bán hàng không được nhận ti" +
         "ền và hàng hóa.";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238F);
     this.xrPageBreak1.Name = "xrPageBreak1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 132.7916F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "Khách hàng";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 208.5001F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // dsMultiInvoicesToPrint1
     //
     this.dsMultiInvoicesToPrint1.DataSetName = "dsMultiInvoicesToPrint";
     this.dsMultiInvoicesToPrint1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2,
         this.GroupFooter3});
     this.DetailReport.DataMember = "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere";
     this.DetailReport.DataSource = this.dsMultiInvoicesToPrint1;
     this.DetailReport.Level = 0;
     this.DetailReport.Name = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail1.HeightF = 20F;
     this.Detail1.Name = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel17,
         this.xrLabel4,
         this.xrTable3,
         this.xrLabel20,
         this.xrLabel3,
         this.xrLabel5,
         this.xrPageBreak1,
         this.xrLabel1,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel9,
         this.xrLabel11});
     this.GroupFooter3.HeightF = 250F;
     this.GroupFooter3.Name = "GroupFooter3";
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.Text = "CK(%)";
     this.xrTableCell17.Weight = 0.44682014695324773D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Disco" +
                 "unt", "{0:n2}")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell35.StylePriority.UsePadding = false;
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell35.Weight = 0.4455766067495005D;
     //
     // invoicesSelectByWhereTableAdapter1
     //
     this.invoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // productsInInvoicesSelectByWhereTableAdapter1
     //
     this.productsInInvoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // rptMultiInvoicesToPrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupFooter2,
         this.DetailReport});
     this.DataAdapter = this.productsInInvoicesSelectByWhereTableAdapter1;
     this.DataMember = "InvoicesSelectByWhere";
     this.DataSource = this.dsMultiInvoicesToPrint1;
     this.Margins = new System.Drawing.Printing.Margins(49, 50, 20, 0);
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #50
0
 void InitGroupHeaders(ASPxGridView aspxGridView1)
 {
     ReadOnlyCollection<GridViewDataColumn> groupedColumns = aspxGridView1.GetGroupedColumns();
     for (int i = groupedColumns.Count - 1; i >= 0; i--)
     {
         {
             GridViewDataColumn groupedColumn = groupedColumns[i];
             GroupHeaderBand gb = new GroupHeaderBand();
             gb.Height = bandHeight;
             XRLabel l = new XRLabel();
             l.Text = groupedColumn.FieldName + ": [" + groupedColumn.FieldName + "]";
             l.LocationF = new PointF(initialGroupOffset + i * 10, 0);
             l.BackColor = Color.Beige;
             l.SizeF = new SizeF((report.PageWidth - (report.Margins.Left + report.Margins.Right)) - (initialGroupOffset + i * subGroupOffset), bandHeight);
             gb.Controls.Add(l);
             gb.RepeatEveryPage = shouldRepeatGroupHeadersOnEveryPage;
             GroupField gf = new GroupField(groupedColumn.FieldName, groupedColumn.SortOrder == ColumnSortOrder.Ascending ? XRColumnSortOrder.Ascending : XRColumnSortOrder.Descending);
             gb.GroupFields.Add(gf);
             report.Bands.Add(gb);
         }
     }
 }
Example #51
0
        private void addFooter()
        {
            var xrPageInfo1 = new XRPageInfo();
            var xrPageInfo2 = new XRPageInfo();
            var xrLabel1 = new XRLabel();
            var xrLine1 = new XRLine();

            // 
            // PageFooter
            // 
            _pageFooterBand.Controls.AddRange(new XRControl[] {
            xrLine1,
            xrLabel1,
            xrPageInfo1,
            xrPageInfo2});
            _pageFooterBand.Font = new Font("Arial", 8F, FontStyle.Italic);
            if (!string.IsNullOrEmpty(_impostazioniReport.PageInfoFontName) && _impostazioniReport.PageInfoFontSize != null && _impostazioniReport.PageInfoFontSize.GetValueOrDefault() > 0)
                _pageFooterBand.Font = new Font(_impostazioniReport.PageInfoFontName, _impostazioniReport.PageInfoFontSize.Value, getFontStyle(_impostazioniReport.PageInfoFontStyle));

            _pageFooterBand.Name = "PageFooter";
            _pageFooterBand.HeightF = 39F;
            _pageFooterBand.StylePriority.UseFont = false;

            var dateTimeFormat = getDateTimeFormat();
            if (!string.IsNullOrEmpty(dateTimeFormat))
            {
                // 
                // xrPageInfo1
                // 
                xrPageInfo1.Format = getDateTimeFormat();
                xrPageInfo1.LocationFloat = new PointFloat(95F, 10F);
                xrPageInfo1.Name = "xrPageInfo1";
                xrPageInfo1.Padding = new PaddingInfo(2, 2, 0, 0, 96F);
                xrPageInfo1.PageInfo = PageInfo.DateTime;
                xrPageInfo1.SizeF = new SizeF(150F, 23F);
            }
            else
            {
                xrPageInfo1.Visible = false;
            }

            // 
            // xrPageInfo2
            // 
            xrPageInfo2.LocationFloat = new PointFloat(40F, 10F);
            xrPageInfo2.Name = "xrPageInfo2";
            xrPageInfo2.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo2.SizeF = new SizeF(35F, 23F);
            // 
            // xrLabel1
            // 
            xrLabel1.LocationFloat = new PointFloat(9F, 10F);
            xrLabel1.Name = "xrLabel1";
            xrLabel1.Padding = new PaddingInfo(2, 2, 0, 0, 96F);
            xrLabel1.SizeF = new SizeF(30.20833F, 23F);
            xrLabel1.Text = "Pag.";

            // 
            // xrLine1
            // 
            xrLine1.LocationFloat = new PointFloat(0F, 0F);
            xrLine1.Name = "xrLine1";
            xrLine1.SizeF = new SizeF(650F, 11.54167F);
        }
Example #52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellJobTitle      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellVYUJoinDate   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellSalary        = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuration         = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle      = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByName    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle   = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrCellEmployeeCode,
         this.xrCellFullName,
         this.xrCellPosition,
         this.xrCellJobTitle,
         this.xrCellVYUJoinDate,
         this.xrCellSalary
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellIndex.Name    = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseBorders       = false;
     this.xrCellIndex.StylePriority.UseFont          = false;
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.12506072694774251D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrCellEmployeeCode
     //
     this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
     this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
     this.xrCellEmployeeCode.StylePriority.UseFont          = false;
     this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
     this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEmployeeCode.Weight        = 0.39245113447596242D;
     //
     // xrCellFullName
     //
     this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellFullName.Name    = "xrCellFullName";
     this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellFullName.StylePriority.UseBorders       = false;
     this.xrCellFullName.StylePriority.UseFont          = false;
     this.xrCellFullName.StylePriority.UsePadding       = false;
     this.xrCellFullName.StylePriority.UseTextAlignment = false;
     this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellFullName.Weight        = 0.8950865717965506D;
     //
     // xrCellPosition
     //
     this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellPosition.Name    = "xrCellPosition";
     this.xrCellPosition.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellPosition.StylePriority.UseBorders       = false;
     this.xrCellPosition.StylePriority.UseFont          = false;
     this.xrCellPosition.StylePriority.UsePadding       = false;
     this.xrCellPosition.StylePriority.UseTextAlignment = false;
     this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellPosition.Weight        = 0.61447933622806428D;
     //
     // xrCellJobTitle
     //
     this.xrCellJobTitle.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellJobTitle.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellJobTitle.Name    = "xrCellJobTitle";
     this.xrCellJobTitle.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellJobTitle.StylePriority.UseBorders       = false;
     this.xrCellJobTitle.StylePriority.UseFont          = false;
     this.xrCellJobTitle.StylePriority.UsePadding       = false;
     this.xrCellJobTitle.StylePriority.UseTextAlignment = false;
     this.xrCellJobTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellJobTitle.Weight        = 0.71064988089333281D;
     //
     // xrCellVYUJoinDate
     //
     this.xrCellVYUJoinDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellVYUJoinDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellVYUJoinDate.Name    = "xrCellVYUJoinDate";
     this.xrCellVYUJoinDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellVYUJoinDate.StylePriority.UseBorders       = false;
     this.xrCellVYUJoinDate.StylePriority.UseFont          = false;
     this.xrCellVYUJoinDate.StylePriority.UsePadding       = false;
     this.xrCellVYUJoinDate.StylePriority.UseTextAlignment = false;
     this.xrCellVYUJoinDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellVYUJoinDate.Weight        = 0.63001035601146771D;
     //
     // xrCellSalary
     //
     this.xrCellSalary.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellSalary.Name    = "xrCellSalary";
     this.xrCellSalary.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellSalary.StylePriority.UseFont          = false;
     this.xrCellSalary.StylePriority.UsePadding       = false;
     this.xrCellSalary.StylePriority.UseTextAlignment = false;
     this.xrCellSalary.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrCellSalary.Weight        = 0.49332719519551721D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 46F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 61F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 25F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002066294F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell9,
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell16
     });
     this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow1.Name    = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow1.StylePriority.UseFont          = false;
     this.xrTableRow1.StylePriority.UsePadding       = false;
     this.xrTableRow1.StylePriority.UseTextAlignment = false;
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow1.Weight        = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "STT";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.13794402789827243D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã NV";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.432882493038738D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 0.98730037172636465D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "CHỨC VỤ";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.67778469838473032D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "CHỨC DANH CHUYÊN MÔN";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.78386326969732978D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "NGÀY VÀO ĐOÀN";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.6949152169570052D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseBorders       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "MỨC LƯƠNG BHXH";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight        = 0.54415199399632463D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuration,
         this.lblReportTitle
     });
     this.ReportHeader.HeightF = 95.08333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày {0} đến ngày {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "DANH SÁCH ĐOÀN VIÊN TRONG CÔNG TY";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportDate,
         this.lblCreatedByName,
         this.lblSignedByName,
         this.lblSignedByTitle,
         this.lblCreatedByTitle
     });
     this.ReportFooter.HeightF = 226F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0576F, 40.54168F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(569.9426F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0} tháng {1} năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
     this.lblSignedByTitle.Multiline                      = true;
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "NGƯỜI LẬP\r\n";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "PHÒNG NHÂN SỰ";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable3
     //
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrt_GroupDepartment
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrt_GroupDepartment
     //
     this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
     this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
     this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
     this.xrt_GroupDepartment.StylePriority.UseFont          = false;
     this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
     this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
     this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_GroupDepartment.Weight        = 2D;
     this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
     //
     // rpHRM_UnionMember
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_BaoCaoNhanVienCoNguoiPhuThuoc.resx";

        this.topMarginBand    = new DevExpress.XtraReports.UI.TopMarginBand();
        this.xrl_TenCongTy    = new DevExpress.XtraReports.UI.XRLabel();
        this.detailBand       = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_STT          = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_macb         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtHoTen         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtChucVu        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrtSoNguoi       = new DevExpress.XtraReports.UI.XRTableCell();
        this.bottomMarginBand = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader      = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrt_TenPhongBan  = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
        this.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrNgayBaoCao     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TitleBC      = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter     = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_footer1      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer2      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3      = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // topMarginBand
        //
        this.topMarginBand.HeightF = 50F;
        this.topMarginBand.Name    = "topMarginBand";
        //
        // 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(0.7912636F, 42.29171F);
        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(737.2084F, 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.MiddleLeft;
        //
        // detailBand
        //
        this.detailBand.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.detailBand.HeightF = 25F;
        this.detailBand.Name    = "detailBand";
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(737.9999F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_STT,
            this.xrt_macb,
            this.xrtHoTen,
            this.xrtChucVu,
            this.xrtSoNguoi
        });
        this.xrTableRow2.Name = "xrTableRow2";
        this.xrTableRow2.StylePriority.UseBorders = false;
        this.xrTableRow2.Weight = 1D;
        //
        // xrt_STT
        //
        this.xrt_STT.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_STT.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrt_STT.Name    = "xrt_STT";
        this.xrt_STT.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_STT.StylePriority.UseBorders       = false;
        this.xrt_STT.StylePriority.UseFont          = false;
        this.xrt_STT.StylePriority.UsePadding       = false;
        this.xrt_STT.StylePriority.UseTextAlignment = false;
        this.xrt_STT.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrt_STT.Weight        = 0.5661495163423087D;
        this.xrt_STT.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrt_macb
        //
        this.xrt_macb.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_macb.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrt_macb.Name    = "xrt_macb";
        this.xrt_macb.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrt_macb.StylePriority.UseBorders       = false;
        this.xrt_macb.StylePriority.UseFont          = false;
        this.xrt_macb.StylePriority.UsePadding       = false;
        this.xrt_macb.StylePriority.UseTextAlignment = false;
        this.xrt_macb.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_macb.Weight        = 0.98158845547474038D;
        //
        // xrtHoTen
        //
        this.xrtHoTen.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtHoTen.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtHoTen.Name    = "xrtHoTen";
        this.xrtHoTen.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtHoTen.StylePriority.UseBorders       = false;
        this.xrtHoTen.StylePriority.UseFont          = false;
        this.xrtHoTen.StylePriority.UsePadding       = false;
        this.xrtHoTen.StylePriority.UseTextAlignment = false;
        this.xrtHoTen.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtHoTen.Weight        = 2.0671607384165842D;
        //
        // xrtChucVu
        //
        this.xrtChucVu.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtChucVu.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtChucVu.Name    = "xrtChucVu";
        this.xrtChucVu.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtChucVu.StylePriority.UseBorders       = false;
        this.xrtChucVu.StylePriority.UseFont          = false;
        this.xrtChucVu.StylePriority.UsePadding       = false;
        this.xrtChucVu.StylePriority.UseTextAlignment = false;
        this.xrtChucVu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrtChucVu.Weight        = 1.8067393535756369D;
        //
        // xrtSoNguoi
        //
        this.xrtSoNguoi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrtSoNguoi.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrtSoNguoi.Name    = "xrtSoNguoi";
        this.xrtSoNguoi.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrtSoNguoi.StylePriority.UseBorders       = false;
        this.xrtSoNguoi.StylePriority.UseFont          = false;
        this.xrtSoNguoi.StylePriority.UsePadding       = false;
        this.xrtSoNguoi.StylePriority.UseTextAlignment = false;
        this.xrtSoNguoi.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrtSoNguoi.Weight        = 1.1122151558218731D;
        //
        // bottomMarginBand
        //
        this.bottomMarginBand.HeightF = 28F;
        this.bottomMarginBand.Name    = "bottomMarginBand";
        //
        // GroupHeader
        //
        this.GroupHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader.HeightF = 25.41666F;
        this.GroupHeader.Name    = "GroupHeader";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(738F, 25.41666F);
        this.xrTable3.StylePriority.UseBorders       = false;
        this.xrTable3.StylePriority.UseTextAlignment = false;
        this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell10,
            this.xrt_TenPhongBan
        });
        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;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseBorders = false;
        this.xrTableCell10.Weight = 0.093749659522817774D;
        //
        // xrt_TenPhongBan
        //
        this.xrt_TenPhongBan.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_TenPhongBan.Name    = "xrt_TenPhongBan";
        this.xrt_TenPhongBan.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
        this.xrt_TenPhongBan.StylePriority.UseBorders       = false;
        this.xrt_TenPhongBan.StylePriority.UseFont          = false;
        this.xrt_TenPhongBan.StylePriority.UsePadding       = false;
        this.xrt_TenPhongBan.StylePriority.UseTextAlignment = false;
        this.xrt_TenPhongBan.Text          = "Phòng lập trình";
        this.xrt_TenPhongBan.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_TenPhongBan.Weight        = 9.76155540166222D;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 32.29166F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(7.947286E-06F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(738F, 32.29166F);
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell7,
            this.xrTableCell4,
            this.xrTableCell6
        });
        this.xrTableRow1.Name = "xrTableRow1";
        this.xrTableRow1.StylePriority.UseBorders = false;
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont = false;
        this.xrTableCell1.Text   = "STT";
        this.xrTableCell1.Weight = 0.53125D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseFont = false;
        this.xrTableCell2.Text   = "Mã cán bộ";
        this.xrTableCell2.Weight = 0.92638155452899262D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont = false;
        this.xrTableCell7.Text   = "Họ và tên";
        this.xrTableCell7.Weight = 1.9508976308430799D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseFont = false;
        this.xrTableCell4.Text   = "Chức vụ";
        this.xrTableCell4.Weight = 1.7081813965869064D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseFont = false;
        this.xrTableCell6.Text   = "Số người giảm trừ";
        this.xrTableCell6.Weight = 1.0496624481541756D;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 38F;
        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(601.9583F, 9.999974F);
        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;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrNgayBaoCao,
            this.xrl_TitleBC,
            this.xrl_TenCongTy
        });
        this.ReportHeader.HeightF = 142F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrNgayBaoCao
        //
        this.xrNgayBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrNgayBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0.7912636F, 101.4167F);
        this.xrNgayBaoCao.Name                           = "xrNgayBaoCao";
        this.xrNgayBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrNgayBaoCao.SizeF                          = new System.Drawing.SizeF(737.2084F, 22.99999F);
        this.xrNgayBaoCao.StylePriority.UseFont          = false;
        this.xrNgayBaoCao.StylePriority.UseTextAlignment = false;
        this.xrNgayBaoCao.Text                           = "Ngày báo cáo : ";
        this.xrNgayBaoCao.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, 76.33333F);
        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(738F, 25.08335F);
        this.xrl_TitleBC.StylePriority.UseFont          = false;
        this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
        this.xrl_TitleBC.Text                           = "DANH SÁCH NHÂN VIÊN CÓ NGƯỜI GIẢM TRỪ GIA CẢNH";
        this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_footer1,
            this.xrl_ten1,
            this.xrtngayketxuat,
            this.xrl_footer2,
            this.xrl_ten2,
            this.xrl_ten3,
            this.xrl_footer3
        });
        this.ReportFooter.HeightF = 196F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // 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(9.536743E-05F, 61.45833F);
        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(161.9514F, 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_ten1
        //
        this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 150F);
        this.xrl_ten1.Name                           = "xrl_ten1";
        this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(161.9514F, 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);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(472.9167F, 27.00001F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(265.0829F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = ", ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // 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(225.0001F, 61.45833F);
        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(222.7652F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "KẾ TOÁN TRƯỞNG";
        this.xrl_footer2.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(225F, 150F);
        this.xrl_ten2.Name                           = "xrl_ten2";
        this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(222.7653F, 23F);
        this.xrl_ten2.StylePriority.UseFont          = false;
        this.xrl_ten2.StylePriority.UseTextAlignment = false;
        this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten3
        //
        this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(500F, 150F);
        this.xrl_ten3.Name                           = "xrl_ten3";
        this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(238F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.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(499.0001F, 61.45833F);
        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(238F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "PHÒNG HCNS";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // rp_BaoCaoNhanVienCoNguoiPhuThuoc
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.topMarginBand,
            this.detailBand,
            this.bottomMarginBand,
            this.GroupHeader,
            this.PageHeader,
            this.PageFooter,
            this.ReportHeader,
            this.ReportFooter
        });
        this.Margins    = new System.Drawing.Printing.Margins(47, 42, 50, 28);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepAReceberClientes.resx";
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.lcodigo          = new DevExpress.XtraReports.UI.XRLabel();
     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.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcodigo,
         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;
     //
     // lcodigo
     //
     this.lcodigo.Font          = new System.Drawing.Font("Calibri", 6.5F);
     this.lcodigo.ForeColor     = System.Drawing.Color.Black;
     this.lcodigo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.lcodigo.Name          = "lcodigo";
     this.lcodigo.NullValueText = " ";
     this.lcodigo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcodigo.SizeF         = new System.Drawing.SizeF(42.18216F, 10F);
     this.lcodigo.StylePriority.UseBackColor     = false;
     this.lcodigo.StylePriority.UseFont          = false;
     this.lcodigo.StylePriority.UseTextAlignment = false;
     this.lcodigo.Text          = "lcodigo";
     this.lcodigo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.lcodigo.WordWrap      = false;
     //
     // 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(748.7546F, 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(818.0469F, 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(109.546F, 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(767.7549F, 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(124.2152F, 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(648.8309F, 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(546.3821F, 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(326.8137F, 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(219.5684F, 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(42.18216F, 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(82.033F, 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 CLIENTES CADASTRO";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // grupocabecalho
     //
     this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         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;
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel1.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     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(42.18216F, 13F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorderColor   = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Código";
     this.xrLabel1.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(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(818.0469F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(109.5459F, 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(767.7548F, 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(748.7547F, 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(546.3824F, 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(648.8309F, 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(42.18216F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(84.6315F, 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(326.8137F, 0F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(219.5688F, 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(126.8137F, 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.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 ->Contas a Receber ->Relatório Clientes Cadastro";
     //
     // RepAReceberClientes
     //
     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.RepAReceberClientes_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #55
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_BusinessTrainee.resx";

        this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellStartTraining = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrCellEndTraining   = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
        this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3        = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
        this.lblTitle            = new DevExpress.XtraReports.UI.XRLabel();
        this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.lblHRDepartment     = new DevExpress.XtraReports.UI.XRLabel();
        this.lblCreator          = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3         = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1         = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 25F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrCellIndex,
            this.xrCellEmployeeCode,
            this.xrCellFullName,
            this.xrCellPosition,
            this.xrCellDepartment,
            this.xrCellStartTraining,
            this.xrCellEndTraining
        });
        this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow2.Name    = "xrTableRow2";
        this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow2.StylePriority.UseFont          = false;
        this.xrTableRow2.StylePriority.UsePadding       = false;
        this.xrTableRow2.StylePriority.UseTextAlignment = false;
        this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow2.Weight        = 1D;
        //
        // xrCellIndex
        //
        this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellIndex.Name    = "xrCellIndex";
        this.xrCellIndex.StylePriority.UseBorders       = false;
        this.xrCellIndex.StylePriority.UseFont          = false;
        this.xrCellIndex.StylePriority.UseTextAlignment = false;
        this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellIndex.Weight        = 0.049460032922055974D;
        this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
        //
        // xrCellEmployeeCode
        //
        this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
        this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
        this.xrCellEmployeeCode.StylePriority.UseFont          = false;
        this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
        this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellEmployeeCode.Weight        = 0.12709927305365387D;
        //
        // xrCellFullName
        //
        this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellFullName.Name    = "xrCellFullName";
        this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellFullName.StylePriority.UseBorders       = false;
        this.xrCellFullName.StylePriority.UseFont          = false;
        this.xrCellFullName.StylePriority.UsePadding       = false;
        this.xrCellFullName.StylePriority.UseTextAlignment = false;
        this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrCellFullName.Weight        = 0.34042770332405548D;
        //
        // xrCellPosition
        //
        this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellPosition.Name    = "xrCellPosition";
        this.xrCellPosition.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellPosition.StylePriority.UseBorders       = false;
        this.xrCellPosition.StylePriority.UseFont          = false;
        this.xrCellPosition.StylePriority.UsePadding       = false;
        this.xrCellPosition.StylePriority.UseTextAlignment = false;
        this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellPosition.Weight        = 0.23498597773423327D;
        //
        // xrCellDepartment
        //
        this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellDepartment.Name    = "xrCellDepartment";
        this.xrCellDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellDepartment.StylePriority.UseBorders       = false;
        this.xrCellDepartment.StylePriority.UseFont          = false;
        this.xrCellDepartment.StylePriority.UsePadding       = false;
        this.xrCellDepartment.StylePriority.UseTextAlignment = false;
        this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellDepartment.Weight        = 0.2577373628812919D;
        //
        // xrCellStartTraining
        //
        this.xrCellStartTraining.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellStartTraining.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellStartTraining.Name    = "xrCellStartTraining";
        this.xrCellStartTraining.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellStartTraining.StylePriority.UseBorders       = false;
        this.xrCellStartTraining.StylePriority.UseFont          = false;
        this.xrCellStartTraining.StylePriority.UsePadding       = false;
        this.xrCellStartTraining.StylePriority.UseTextAlignment = false;
        this.xrCellStartTraining.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellStartTraining.Weight        = 0.23594214599094326D;
        //
        // xrCellEndTraining
        //
        this.xrCellEndTraining.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrCellEndTraining.Font    = new System.Drawing.Font("Times New Roman", 10F);
        this.xrCellEndTraining.Name    = "xrCellEndTraining";
        this.xrCellEndTraining.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
        this.xrCellEndTraining.StylePriority.UseBorders       = false;
        this.xrCellEndTraining.StylePriority.UseFont          = false;
        this.xrCellEndTraining.StylePriority.UsePadding       = false;
        this.xrCellEndTraining.StylePriority.UseTextAlignment = false;
        this.xrCellEndTraining.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrCellEndTraining.Weight        = 0.25031031636778039D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 46F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 61F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 50F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002066294F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell9,
            this.xrTableCell6,
            this.xrTableCell3,
            this.xrTableCell5
        });
        this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrTableRow1.Name    = "xrTableRow1";
        this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
        this.xrTableRow1.StylePriority.UseFont          = false;
        this.xrTableRow1.StylePriority.UsePadding       = false;
        this.xrTableRow1.StylePriority.UseTextAlignment = false;
        this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableRow1.Weight        = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "STT";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell1.Weight        = 0.049286877321332551D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseBorders       = false;
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Mã NV";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.12665500329161894D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.33923746102834329D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseBorders       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "CHỨC VỤ";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.23416492626246363D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseBorders       = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "PHÒNG BAN";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 0.2568365253625069D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseBorders       = false;
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "NGÀY THỬ VIỆC";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.23511734764729431D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseBorders       = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "NGÀY HẾT THỬ VIỆC";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.24943530111302203D;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblReportDate,
            this.lblTitle
        });
        this.ReportHeader.HeightF = 95.08333F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // lblReportDate
        //
        this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
        this.lblReportDate.Name                           = "lblReportDate";
        this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblReportDate.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblReportDate.StylePriority.UseFont          = false;
        this.lblReportDate.StylePriority.UseTextAlignment = false;
        this.lblReportDate.Text                           = "(Thời gian cập nhật {0}/{1}/{2})";
        this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblTitle
        //
        this.lblTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
        this.lblTitle.Name                           = "lblTitle";
        this.lblTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
        this.lblTitle.StylePriority.UseFont          = false;
        this.lblTitle.StylePriority.UseTextAlignment = false;
        this.lblTitle.Text                           = "BÁO CÁO CBCNV ĐANG TRONG THỜI GIAN THỬ VIỆC";
        this.lblTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblHRDepartment,
            this.lblCreator,
            this.xrl_footer3,
            this.xrl_footer1
        });
        this.ReportFooter.HeightF = 226F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // lblHRDepartment
        //
        this.lblHRDepartment.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblHRDepartment.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
        this.lblHRDepartment.Name                           = "lblHRDepartment";
        this.lblHRDepartment.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblHRDepartment.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
        this.lblHRDepartment.StylePriority.UseFont          = false;
        this.lblHRDepartment.StylePriority.UseTextAlignment = false;
        this.lblHRDepartment.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // lblCreator
        //
        this.lblCreator.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.lblCreator.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
        this.lblCreator.Name                           = "lblCreator";
        this.lblCreator.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.lblCreator.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
        this.lblCreator.StylePriority.UseFont          = false;
        this.lblCreator.StylePriority.UseTextAlignment = false;
        this.lblCreator.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_footer3
        //
        this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
        this.xrl_footer3.Multiline                      = true;
        this.xrl_footer3.Name                           = "xrl_footer3";
        this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "NGƯỜI LẬP\r\n";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 63.54167F);
        this.xrl_footer1.Name                           = "xrl_footer1";
        this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "PHÒNG NHÂN SỰ";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader1.HeightF = 25F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrt_GroupDepartment
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrt_GroupDepartment
        //
        this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
        this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
        this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
        this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
        this.xrt_GroupDepartment.StylePriority.UseFont          = false;
        this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
        this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
        this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrt_GroupDepartment.Weight        = 2D;
        this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
        //
        // rp_BusinessTrainee
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader,
            this.ReportHeader,
            this.ReportFooter,
            this.GroupHeader1
        });
        this.Landscape  = true;
        this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
        this.PageHeight = 827;
        this.PageWidth  = 1169;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "15.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_austfeed_BaoCaoDSNhanVienCuaCacDVThanhVien.resx";

        System.Resources.ResourceManager resources = global::Resources.rp_austfeed_BaoCaoDSNhanVienCuaCacDVThanhVien.ResourceManager;
        this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
        this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrLabel4       = 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.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
        this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_ten3       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer2    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 33.75F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F, 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(797.125F, 33.75F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name         = "xrTableCell7";
        this.xrTableCell7.Weight       = 0.17118159905306696D;
        this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
        //
        // xrTableCell8
        //
        this.xrTableCell8.Multiline = true;
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.Weight    = 0.43833852478594232D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name    = "xrTableCell9";
        this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 6, 6, 100F);
        this.xrTableCell9.StylePriority.UsePadding       = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell9.Weight        = 0.82933427084341138D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 6, 6, 100F);
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
        this.xrTableCell10.Weight        = 0.5305728026587897D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Multiline = true;
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.Weight    = 0.5305728026587897D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Multiline = true;
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.Weight    = 0.5D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 34F;
        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       = 46F;
        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.xrLabel3,
            this.xrLabel2,
            this.xrLabel1,
            this.xrPictureBox1
        });
        this.ReportHeader.HeightF = 132F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 98.16666F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(797.125F, 27.16667F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Ngày báo cáo:";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 65.79167F);
        this.xrLabel2.Name                           = "xrLabel2";
        this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                          = new System.Drawing.SizeF(797.125F, 32.37498F);
        this.xrLabel2.StylePriority.UseFont          = false;
        this.xrLabel2.StylePriority.UseTextAlignment = false;
        this.xrLabel2.Text                           = "BÁO CÁO DANH SÁCH  NHÂN VIÊN CỦA CÁC ĐƠN VỊ THÀNH VIÊN";
        this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(27.08333F, 42.79168F);
        this.xrLabel1.Name                  = "xrLabel1";
        this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                 = new System.Drawing.SizeF(333.3333F, 23F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "CÔNG TY CỔ PHẦN AUSTFEED VIỆT NAM";
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(55.29165F, 0F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(129.1667F, 42.79167F);
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel4
        });
        this.GroupHeader1.HeightF = 35F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrLabel4
        //
        this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 5, 5, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(797.125F, 35F);
        this.xrLabel4.StylePriority.UseBorders       = false;
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UsePadding       = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.PageHeader.HeightF = 36.875F;
        this.PageHeader.Name    = "PageHeader";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(797.125F, 36.875F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell4,
            this.xrTableCell2,
            this.xrTableCell6,
            this.xrTableCell5,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "STT";
        this.xrTableCell1.Weight = 0.17118159905306696D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Multiline = true;
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.Text      = "Mã nhân viên";
        this.xrTableCell4.Weight    = 0.43833852478594232D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UsePadding = false;
        this.xrTableCell2.Text   = "Họ và tên";
        this.xrTableCell2.Weight = 0.82933427084341138D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UsePadding = false;
        this.xrTableCell6.Text   = "Chức vụ";
        this.xrTableCell6.Weight = 0.5305728026587897D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Multiline = true;
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.Text      = "Ngày ký HĐLĐ";
        this.xrTableCell5.Weight    = 0.53057291068969259D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Multiline = true;
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.Text      = "Ngày kết thúc HĐLĐ";
        this.xrTableCell3.Weight    = 0.49999989196909711D;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_ten3,
            this.xrl_ten2,
            this.xrl_ten1,
            this.xrl_footer3,
            this.xrl_footer1,
            this.xrl_footer2,
            this.xrtngayketxuat
        });
        this.ReportFooter.HeightF = 178F;
        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(583.7758F, 135.4166F);
        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(182.0992F, 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(270.8333F, 135.4167F);
        this.xrl_ten2.Name                           = "xrl_ten2";
        this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(179.4477F, 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(9.999998F, 135.4167F);
        this.xrl_ten1.Name                           = "xrl_ten1";
        this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(188.8227F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.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(583.7756F, 31.25F);
        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(182.0994F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "Trưởng phòng HCNS";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 31.25F);
        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(190.8236F, 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_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(270.8333F, 31.25F);
        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(181.4485F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "Kế toán trưởng";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(583.7756F, 6.25F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(182.0992F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = "Hà Nội, ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // rp_austfeed_BaoCaoDSNhanVienCuaCacDVThanhVien
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.GroupHeader1,
            this.PageHeader,
            this.ReportFooter
        });
        this.Margins    = new System.Drawing.Printing.Margins(11, 12, 34, 46);
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Example #57
0
        public anexo4(string id)
        {
            InitializeComponent();

            PointF point = new PointF(0, 115);

            bdanexoDataSet.expedienteDataTable exp = expedienteTableAdapter1.ExpedienteById(Convert.ToInt16(id));
            int idexpediente = ((bdanexoDataSet.expedienteRow)exp.Rows[0]).Id;

            bdanexoDataSet.usuarioDataTable item = usuarioTableAdapter1.UsuarioById(((bdanexoDataSet.expedienteRow)exp.Rows[0]).idusuario);

            xrtempresa.Text = "ALIMATIC";
            xrtusuario.Text = ((bdanexoDataSet.usuarioRow)item.Rows[0]).usuario;
            xrtarea.Text = ((bdanexoDataSet.usuarioRow)item.Rows[0]).area;
            xrtfecha.Text = DateTime.Today.ToShortDateString();

            //Obtencion del Equipo si existe.
            bdanexoDataSet.equipoDataTable equipo = equipoTableAdapter1.GetEquipoByUsuario(idexpediente);
            if (equipo.Count > 0)
            {
                xrtinventario.Text = ((bdanexoDataSet.equipoRow)equipo.Rows[0]).noinventario;
                xrtobservaciones.Text = ((bdanexoDataSet.equipoRow)equipo.Rows[0]).observaciones;
                xrtequipo.Text = ((bdanexoDataSet.equipoRow)equipo.Rows[0]).nombre;
                xrtdominiored.Text = ((bdanexoDataSet.equipoRow)equipo.Rows[0]).dominiored;
                xrtserie.Text = ((bdanexoDataSet.equipoRow)equipo.Rows[0]).noserie;
            }

            //Obtencion del Configuracion si existe.
            bdanexoDataSet.configuracionDataTable configuaracion = configuracionTableAdapter1.GetConfiguracionByUsuario(idexpediente);
            if (configuaracion.Count > 0)
            {
                XRSubreport xrsubrepor = new XRSubreport();
                xrsubrepor.ReportSource = new configReport(((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).placabase,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).procesador,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).noserieplaca,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).cantidad,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).memoria,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).tarjetared,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).tarjetasonido,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).tarjetagrafica,
                ((bdanexoDataSet.configuracionRow)configuaracion.Rows[0]).velocidad);

                Detail.Controls.Add(xrsubrepor);
                xrsubrepor.Visible = true;
                xrsubrepor.LocationF = point;

                xrsubrepor.SizeF = new SizeF(624, 172.01F);
                point.Y += 172.01F;
            }
            //Obtencion de los accesorios si existe.
            bdanexoDataSet.accesoriosDataTable accesorios = accesoriosTableAdapter1.GetAccesoriosByUsuario(idexpediente);
            if (accesorios.Count > 0)
            {
                XRSubreport xrsubrepor = new XRSubreport();
                xrsubrepor.ReportSource = new accesoriosReport(((bdanexoDataSet.accesoriosRow)accesorios.Rows[0]).mouse, ((bdanexoDataSet.accesoriosRow)accesorios.Rows[0]).bocinas,
                    ((bdanexoDataSet.accesoriosRow)accesorios.Rows[0]).teclado);
                Detail.Controls.Add(xrsubrepor);
                xrsubrepor.LocationF = point;

                xrsubrepor.Visible = true;
                xrsubrepor.SizeF = new SizeF(624, 122.3F);
                point.Y += 122.3F;
            }

            //Obtencion de los cd/dvd si existe.
            //Obtencion de los discoduro si existe.
            //Obtencion de los disquete si existe.

            bdanexoDataSet.disqueteDataTable disquete = disqueteTableAdapter1.GetDisqueteByUsuario(idexpediente);
            bdanexoDataSet.discoduroDataTable discoduro = discoduroTableAdapter1.GetDiscoDuroByUsuario(idexpediente);
            bdanexoDataSet.cdroomDataTable cddvd = cdroomTableAdapter1.GetDVDByUsuario(idexpediente);

            if (disquete.Count > 0 || discoduro.Count > 0 || cddvd.Count > 0)
            {
                almacenamientoReport almacReport = new almacenamientoReport();

                if (disquete.Count > 0)
                {
                    almacReport.nombreDisquete = ((bdanexoDataSet.disqueteRow)disquete.Rows[0]).nombre;
                    almacReport.noseriedisquete = ((bdanexoDataSet.disqueteRow)disquete.Rows[0]).noserie;
                }

                if (cddvd.Count > 0)
                {
                    almacReport.nombreCdDvd = ((bdanexoDataSet.cdroomRow)cddvd.Rows[0]).nombre;
                    almacReport.noserieCdDvd = ((bdanexoDataSet.cdroomRow)cddvd.Rows[0]).noserie;
                }

                if (discoduro.Count > 0)
                {
                    List<DiscoDuro> list = new List<DiscoDuro>();
                    foreach (var discoitem in discoduro.Rows)
                    {
                        DiscoDuro dd = new DiscoDuro();
                        dd.descripcion = ((bdanexoDataSet.discoduroRow)discoduro.Rows[0]).descripcion;
                        dd.capacidad = ((bdanexoDataSet.discoduroRow)discoduro.Rows[0]).capacidad;
                        dd.noserie = ((bdanexoDataSet.discoduroRow)discoduro.Rows[0]).noserie;
                        dd.estado = ((bdanexoDataSet.discoduroRow)discoduro.Rows[0]).estado;
                        list.Add(dd);
                    }
                    almacReport.discosduros = list;

                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = almacReport;
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 188.14F);
                    point.Y += 188.14F;
                }
                //Obtencion de los escanner si existe.
                bdanexoDataSet.escannerDataTable escanner = escannerTableAdapter1.GetScannerByUsuario(idexpediente);
                if (escanner.Count > 0)
                {

                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new escanerReport(((bdanexoDataSet.escannerRow)escanner.Rows[0]).marca, ((bdanexoDataSet.escannerRow)escanner.Rows[0]).modelo,
                       ((bdanexoDataSet.escannerRow)escanner.Rows[0]).noserie, ((bdanexoDataSet.escannerRow)escanner.Rows[0]).noinventario);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los fax si existe.
                bdanexoDataSet.faxDataTable fax = faxTableAdapter1.GetFaxByUsuario(idexpediente);
                if (fax.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new faxReport(((bdanexoDataSet.faxRow)fax.Rows[0]).marca,
                    ((bdanexoDataSet.faxRow)fax.Rows[0]).modelo, ((bdanexoDataSet.faxRow)fax.Rows[0]).noinventario, ((bdanexoDataSet.faxRow)fax.Rows[0]).noserie);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los impresora si existe.
                bdanexoDataSet.impresoraDataTable impresora = impresoraTableAdapter1.GetImpresoraByUsuario(idexpediente);
                if (impresora.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new impresoraReport(((bdanexoDataSet.impresoraRow)impresora.Rows[0]).modelo,
                        ((bdanexoDataSet.impresoraRow)impresora.Rows[0]).noserie, ((bdanexoDataSet.impresoraRow)impresora.Rows[0]).noinventario,
                        ((bdanexoDataSet.impresoraRow)impresora.Rows[0]).marca);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los monitor si existe.
                bdanexoDataSet.monitorDataTable monitor = monitorTableAdapter1.GetMonitorByUsuario(idexpediente);
                if (monitor.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new monitorReport(((bdanexoDataSet.monitorRow)monitor.Rows[0]).modelo, ((bdanexoDataSet.monitorRow)monitor.Rows[0]).noserie,
                        ((bdanexoDataSet.monitorRow)monitor.Rows[0]).noinventario, ((bdanexoDataSet.monitorRow)monitor.Rows[0]).marca);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los ups si existe.
                bdanexoDataSet.upsDataTable ups = upsTableAdapter1.GetUpsByUsuario(idexpediente);
                if (ups.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new upsReport(((bdanexoDataSet.upsRow)ups.Rows[0]).modelo, ((bdanexoDataSet.upsRow)ups.Rows[0]).noserie,
                        ((bdanexoDataSet.upsRow)ups.Rows[0]).noinventario, ((bdanexoDataSet.upsRow)ups.Rows[0]).marca);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los switch si existe.
                bdanexoDataSet.switchDataTable swt = switchTableAdapter1.GetSwitchByUsuario(idexpediente);
                if (swt.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new SwReport(((bdanexoDataSet.switchRow)swt.Rows[0]).modelo, ((bdanexoDataSet.switchRow)swt.Rows[0]).noserie,
                        ((bdanexoDataSet.switchRow)swt.Rows[0]).noinventario, ((bdanexoDataSet.switchRow)swt.Rows[0]).marca);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                //Obtencion de los fotocopiadora si existe.
                bdanexoDataSet.fotocopiadoraDataTable ft = fotocopiadoraTableAdapter1.GetFotocopiadoraByUsuario(idexpediente);
                if (ft.Count > 0)
                {
                    XRSubreport xrsubrepor = new XRSubreport();
                    xrsubrepor.ReportSource = new fotocopiadoraReport(((bdanexoDataSet.fotocopiadoraRow)ft.Rows[0]).modelo, ((bdanexoDataSet.fotocopiadoraRow)ft.Rows[0]).noserie,
                        ((bdanexoDataSet.fotocopiadoraRow)ft.Rows[0]).noinventario, ((bdanexoDataSet.fotocopiadoraRow)ft.Rows[0]).marca);
                    Detail.Controls.Add(xrsubrepor);
                    xrsubrepor.LocationF = point;

                    xrsubrepor.Visible = true;
                    xrsubrepor.SizeF = new SizeF(624, 80.72F);
                    point.Y += 80.72F;
                }

                XRLabel label1 = new XRLabel();
                label1.Text = "Elaborado por: ";
                Detail.Controls.Add(label1);
                label1.Visible = true;
                point.Y += 15;
                label1.LocationF = point;

                XRLine line1 = new XRLine();
                line1.LineWidth = 1;
                line1.SizeF = new System.Drawing.SizeF(358, 23);
                line1.Visible = true;
                PointF pontLine = new PointF();
                pontLine.X = point.X + 90;
                pontLine.Y = point.Y;
                line1.LocationF = pontLine;
                Detail.Controls.Add(line1);

                XRLabel label2 = new XRLabel();
                label2.Text = "Firma: ";
                Detail.Controls.Add(label2);
                label2.Visible = true;
                point.Y += 23;
                label2.LocationF = point;

                XRLine line2 = new XRLine();
                line2.LineWidth = 1;
                line2.SizeF = new System.Drawing.SizeF(358, 23);
                line2.Visible = true;
                Detail.Controls.Add(line2);
                pontLine.Y = point.Y;
                line2.LocationF = pontLine;

                XRLabel label3 = new XRLabel();
                label3.Text = "Usuario: ";
                Detail.Controls.Add(label3);
                label3.Visible = true;
                point.Y += 23;
                label3.LocationF = point;

                XRLine line3 = new XRLine();
                line3.LineWidth = 1;
                line3.SizeF = new System.Drawing.SizeF(358, 23);
                line3.Visible = true;
                Detail.Controls.Add(line3);
                pontLine.Y = point.Y;
                line3.LocationF = pontLine;

            }
        }
Example #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellRank          = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDegree        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellPoliticLevel  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellJoinArmyDate  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellLeaveArmyDate = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellPhoneNumber   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuration         = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle      = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByName    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle   = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrCellEmployeeCode,
         this.xrCellFullName,
         this.xrCellRank,
         this.xrCellDegree,
         this.xrCellPoliticLevel,
         this.xrCellJoinArmyDate,
         this.xrCellLeaveArmyDate,
         this.xrCellPhoneNumber
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellIndex.Name    = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseBorders       = false;
     this.xrCellIndex.StylePriority.UseFont          = false;
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.12638645986161673D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrCellEmployeeCode
     //
     this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
     this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
     this.xrCellEmployeeCode.StylePriority.UseFont          = false;
     this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
     this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEmployeeCode.Weight        = 0.32795344615039D;
     //
     // xrCellFullName
     //
     this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellFullName.Name    = "xrCellFullName";
     this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellFullName.StylePriority.UseBorders       = false;
     this.xrCellFullName.StylePriority.UseFont          = false;
     this.xrCellFullName.StylePriority.UsePadding       = false;
     this.xrCellFullName.StylePriority.UseTextAlignment = false;
     this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellFullName.Weight        = 0.609182438798497D;
     //
     // xrCellRank
     //
     this.xrCellRank.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellRank.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellRank.Name    = "xrCellRank";
     this.xrCellRank.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellRank.StylePriority.UseBorders       = false;
     this.xrCellRank.StylePriority.UseFont          = false;
     this.xrCellRank.StylePriority.UsePadding       = false;
     this.xrCellRank.StylePriority.UseTextAlignment = false;
     this.xrCellRank.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellRank.Weight        = 0.418307674109494D;
     //
     // xrCellDegree
     //
     this.xrCellDegree.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDegree.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDegree.Name    = "xrCellDegree";
     this.xrCellDegree.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellDegree.StylePriority.UseBorders       = false;
     this.xrCellDegree.StylePriority.UseFont          = false;
     this.xrCellDegree.StylePriority.UsePadding       = false;
     this.xrCellDegree.StylePriority.UseTextAlignment = false;
     this.xrCellDegree.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellDegree.Weight        = 0.45900474482241216D;
     //
     // xrCellPoliticLevel
     //
     this.xrCellPoliticLevel.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellPoliticLevel.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellPoliticLevel.Name    = "xrCellPoliticLevel";
     this.xrCellPoliticLevel.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellPoliticLevel.StylePriority.UseBorders       = false;
     this.xrCellPoliticLevel.StylePriority.UseFont          = false;
     this.xrCellPoliticLevel.StylePriority.UsePadding       = false;
     this.xrCellPoliticLevel.StylePriority.UseTextAlignment = false;
     this.xrCellPoliticLevel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellPoliticLevel.Weight        = 0.57673705041483159D;
     //
     // xrCellJoinArmyDate
     //
     this.xrCellJoinArmyDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellJoinArmyDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellJoinArmyDate.Name    = "xrCellJoinArmyDate";
     this.xrCellJoinArmyDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellJoinArmyDate.StylePriority.UseBorders       = false;
     this.xrCellJoinArmyDate.StylePriority.UseFont          = false;
     this.xrCellJoinArmyDate.StylePriority.UsePadding       = false;
     this.xrCellJoinArmyDate.StylePriority.UseTextAlignment = false;
     this.xrCellJoinArmyDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellJoinArmyDate.Weight        = 0.46891327948222095D;
     //
     // xrCellLeaveArmyDate
     //
     this.xrCellLeaveArmyDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellLeaveArmyDate.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellLeaveArmyDate.Name    = "xrCellLeaveArmyDate";
     this.xrCellLeaveArmyDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellLeaveArmyDate.StylePriority.UseBorders       = false;
     this.xrCellLeaveArmyDate.StylePriority.UseFont          = false;
     this.xrCellLeaveArmyDate.StylePriority.UsePadding       = false;
     this.xrCellLeaveArmyDate.StylePriority.UseTextAlignment = false;
     this.xrCellLeaveArmyDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellLeaveArmyDate.Weight        = 0.475896322489542D;
     //
     // xrCellPhoneNumber
     //
     this.xrCellPhoneNumber.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellPhoneNumber.Name    = "xrCellPhoneNumber";
     this.xrCellPhoneNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellPhoneNumber.StylePriority.UseFont          = false;
     this.xrCellPhoneNumber.StylePriority.UsePadding       = false;
     this.xrCellPhoneNumber.StylePriority.UseTextAlignment = false;
     this.xrCellPhoneNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellPhoneNumber.Weight        = 0.39868473033402552D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 46F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 61F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 50F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002066294F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell9,
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell16,
         this.xrTableCell3,
         this.xrTableCell5
     });
     this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow1.Name    = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow1.StylePriority.UseFont          = false;
     this.xrTableRow1.StylePriority.UsePadding       = false;
     this.xrTableRow1.StylePriority.UseTextAlignment = false;
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow1.Weight        = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "STT";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.13794402789827243D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã NV";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.35794558676372812D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 0.66489340007929165D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "CẤP BẬC";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.4565627887064248D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "BẰNG CẤP";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.5009818687034302D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "TRÌNH ĐỘ LÝ LUẬN CHÍNH TRỊ";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.62948112123445044D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseBorders       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "NGÀY NHẬP NGŨ";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight        = 0.51179614501167758D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "NGÀY XUẤT NGŨ";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 0.51941737570797475D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "SỐ ĐIỆN THOẠI";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 0.43514585839338715D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuration,
         this.lblReportTitle
     });
     this.ReportHeader.HeightF = 95.08333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày {0} đến ngày {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "DANH SÁCH NHÂN SỰ TỪNG LÀ QUÂN NHÂN";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportDate,
         this.lblCreatedByName,
         this.lblSignedByName,
         this.lblSignedByTitle,
         this.lblCreatedByTitle
     });
     this.ReportFooter.HeightF = 226F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 40.54165F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(569.9425F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0} tháng {1} năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0577F, 63.54167F);
     this.lblSignedByTitle.Multiline                      = true;
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(569.9422F, 23F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "NGƯỜI LẬP\r\n";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0.0002066294F, 63.54167F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "PHÒNG NHÂN SỰ";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable3
     //
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrt_GroupDepartment
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrt_GroupDepartment
     //
     this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
     this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
     this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
     this.xrt_GroupDepartment.StylePriority.UseFont          = false;
     this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
     this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
     this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_GroupDepartment.Weight        = 2D;
     this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
     //
     // rpHRM_MilitaryList
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Example #59
0
 void InitTotalSummaries(ASPxGridView aspxGridView1)
 {
     if (aspxGridView1.TotalSummary.Count > 0)
     {
         report.Bands.Add(new ReportFooterBand() { HeightF = bandHeight });
         foreach (ASPxSummaryItem item in aspxGridView1.TotalSummary)
         {
             GridViewColumn col = aspxGridView1.Columns[item.ShowInColumn == string.Empty ? item.FieldName : item.ShowInColumn];
             if (col != null)
             {
                 if (detailsInfo.Contains(col))
                 {
                     XRLabel label = new XRLabel();
                     label.LocationF = ((XRTableCell)detailsInfo[col]).LocationF;
                     label.SizeF = ((XRTableCell)detailsInfo[col]).SizeF;
                     label.DataBindings.Add("Text", null, ((GridViewDataColumn)col).FieldName);
                     label.Summary = new XRSummary() { Running = SummaryRunning.Report };
                     label.Summary.FormatString = item.DisplayFormat;
                     label.Summary.Func = GetSummaryFunc(item.SummaryType);
                     report.Bands[BandKind.ReportFooter].Controls.Add(label);
                 }
             }
         }
     }
 }
Example #60
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_austfeed_DanhSachCBNVCongTy.resx";

        this.Detail        = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable1      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10 = 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.xrTableRow1   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
        this.PageHeader    = new DevExpress.XtraReports.UI.PageHeaderBand();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.Detail.HeightF       = 26F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(627F, 26F);
        this.xrTable1.StylePriority.UseBorders       = false;
        this.xrTable1.StylePriority.UseFont          = false;
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name         = "xrTableCell6";
        this.xrTableCell6.Weight       = 0.22587723183496095D;
        this.xrTableCell6.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell6_BeforePrint);
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name    = "xrTableCell7";
        this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 6, 6, 100F);
        this.xrTableCell7.StylePriority.UsePadding       = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell7.Weight        = 0.77412276816503911D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name = "xrTableCell8";
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 0.5D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 0.56479242597589807D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name    = "xrTableCell10";
        this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 4, 0, 0, 100F);
        this.xrTableCell10.StylePriority.UsePadding       = false;
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        this.xrTableCell10.Weight        = 0.93520728198989D;
        //
        // TopMargin
        //
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1
        });
        this.ReportHeader.HeightF = 149F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(627F, 44.79167F);
        this.xrTable2.StylePriority.UseBorders       = false;
        this.xrTable2.StylePriority.UseFont          = false;
        this.xrTable2.StylePriority.UseTextAlignment = false;
        this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4,
            this.xrTableCell5
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "STT";
        this.xrTableCell1.Weight = 0.22587723183496095D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name = "xrTableCell2";
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "Họ và tên";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell2.Weight        = 0.77412276816503911D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "Ngày tháng năm sinh";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell3.Weight        = 0.5D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "Ngày ký hợp đồng lao động";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 0.564792571993004D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name = "xrTableCell5";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Loại hợp đồng";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 0.935207135972784D;
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 94.79166F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(627F, 23F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "DANH SÁCH CNCNV CÔNG TY";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel2
        //
        this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 41.25001F);
        this.xrLabel2.Name                  = "xrLabel2";
        this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                 = new System.Drawing.SizeF(387.5F, 23F);
        this.xrLabel2.StylePriority.UseFont = false;
        this.xrLabel2.Text                  = "Thị tứ Bô Thời, HồngTiến, Khoái Châu, Hưng Yên";
        //
        // xrLabel1
        //
        this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 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(311.4583F, 23F);
        this.xrLabel1.StylePriority.UseFont = false;
        this.xrLabel1.Text                  = "Công ty Cổ phần Austfeed Việt Nam";
        //
        // PageHeader
        //
        this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.PageHeader.HeightF = 44.79167F;
        this.PageHeader.Name    = "PageHeader";
        //
        // rp_austfeed_DanhSachCBNVCongTy
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.PageHeader
        });
        this.PageHeight = 1169;
        this.PageWidth  = 827;
        this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
        this.Version    = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }