コード例 #1
0
        private void CreateShiftPlanTables(XRControl parent, ShiftPlan_Report shiftPlan, IList <TrackedResource> trackedResources)
        {
            const float margin      = 4F;
            const float tableHeight = 25F;
            const float offset      = tableHeight + margin;

            float top        = margin;
            float tableWidth = parent.WidthF - (margin * 2);

            bool isFutureDate = shiftPlan.Date.Date > DateTime.Now.Date;

            parent.Controls.Clear();

            XRTable table = null;

            bool summaryView = false;
            var  res         = Boolean.TryParse(Parameters["SummaryView"].Value.ToString(), out summaryView);

            // task rows...
            if (shiftPlan.Tasks.Count > 0)
            {
                foreach (var task in shiftPlan.Tasks.Where(task => !summaryView || task.Important))
                {
                    XRPanel panel = new XRPanel {
                        WidthF = tableWidth, HeightF = 25F, TopF = top, LeftF = margin, CanGrow = true
                    };
                    panel.Controls.Add(CreateTasksTable(task, tableWidth));
                    parent.Controls.Add(panel);
                    top += offset;
                }
            }
        }
コード例 #2
0
        private void ReadPanel(XRPanel xtraControl, StiContainer parent)
        {
            StiPanel panel = new StiPanel();

            parent.Components.Add(panel);

            ReadComp(xtraControl, panel);

            ProcessControls(xtraControl.Controls, panel);
        }
コード例 #3
0
ファイル: ReportPainter.cs プロジェクト: 5509850/baumax
        public static XRPanel GetPanelControl(XRControl container)
        {
            XRPanel result = null;

            foreach (XRControl control in container.Controls)
            {
                result = control as XRPanel;
                if (result != null)
                {
                    result.Height = container.Height;
                    break;
                }
            }

            return(result);
        }
コード例 #4
0
        private void PrintDataCell(XRTableCell cell)
        {
            XRPanel panel = ReportPainter.GetPanelControl(cell);

            panel.Dock = XRDockStyle.Fill;
            panel.Controls.Clear();

            EmployeePlanningDay planningDay = ProcessDayCell(cell);

            if (planningDay.HasLongAbsence)
            {
                string s = _planningContext.GetLongTimeAbbreviation(planningDay.LongAbsenceId);
                if (!String.IsNullOrEmpty(s))
                {
                    XRLabel label = ReportPainter.AddLabelLine(panel, s, Color.Black, 0, false);

                    label.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                    int?color = _planningContext.GetLongTimeAbsenceColor(planningDay.LongAbsenceId);
                    if (color.HasValue)
                    {
                        label.BackColor = Color.FromArgb(color.Value);
                        cell.BackColor  = Color.FromArgb(color.Value);
                    }
                    //cell.Text = s;
                    //cell.ForeColor = Color.White;
                    //cell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                }
                return;
            }
            else
            {
                cell.ForeColor = Color.Black;
            }

            int y = 0;

            foreach (__TimeRange range in GetDayTimes(planningDay))
            {
                XRLabel label = ReportPainter.AddLabelLine(panel, range.AsTimeString, String.IsNullOrEmpty(range.AbsenceCode) ? Color.Black : range.BeginColor, y, false);
                y = y + label.Height + 1;
            }
        }
        private XtraReport BuildLabelReport(CustomLabelReportModel model)
        {
            var           report        = new XtraReport();
            PaperKindList paperKindList = InitPaperKindList(model, report);

            report.ReportUnit = model.MeasurementUnit == System.Drawing.GraphicsUnit.Millimeter ? ReportUnit.TenthsOfAMillimeter : ReportUnit.HundredthsOfAnInch;
            report.PaperKind  = paperKindList.PaperKind;
            report.Landscape  = paperKindList.Landscape;
            report.RollPaper  = false;
            float labelDpi = GraphicsDpi.UnitToDpi(model.MeasurementUnit);
            int   top      = (int)XRConvert.Convert(model.TopMargin, labelDpi, report.Dpi);
            int   left     = (int)XRConvert.Convert(model.LeftMargin, labelDpi, report.Dpi);
            int   right    = (int)XRConvert.Convert(model.RightMargin, labelDpi, report.Dpi);
            int   bottom   = (int)XRConvert.Convert(model.BottomMargin, labelDpi, report.Dpi);

            report.Margins = new Margins(left, right, top, bottom);
            float      labelWidth  = XRConvert.Convert(model.LabelWidth, labelDpi, report.Dpi);
            float      labelHeight = XRConvert.Convert(model.LabelHeight, labelDpi, report.Dpi);
            DetailBand detail      = new DetailBand();

            report.Bands.Add(detail);
            XRPanel panel = new XRPanel();

            panel.CanGrow = false;
            detail.Controls.Add(panel);
            panel.WidthF   = labelWidth;
            panel.HeightF  = labelHeight;
            panel.Borders  = BorderSide.All;
            detail.HeightF = XRConvert.Convert(model.VerticalPitch, labelDpi, report.Dpi);

            var labelInfo = DevExpress.XtraReports.Wizards.Builder.ReportInfoFactory.CreateLabelInfo(GetDefaultLabelReportMode(model));

            report.ReportPrintOptions.DetailCountOnEmptyDataSource = labelInfo.CalculateLabelCount(paperKindList.Size, paperKindList.UnitDpi);
            if (labelInfo.MoreOneColumnOnPage(paperKindList.Size, paperKindList.UnitDpi))
            {
                detail.MultiColumn.ColumnWidth   = XRConvert.Convert(labelInfo.LabelWidth, labelDpi, report.Dpi);
                detail.MultiColumn.ColumnSpacing = XRConvert.Convert(labelInfo.HPitch - labelInfo.LabelWidth, labelDpi, report.Dpi);
                detail.MultiColumn.Layout        = ColumnLayout.AcrossThenDown;
            }
            return(report);
        }
        private static ReportHeaderBand InitReportHeaderBand(float topIndent, XtraReport report)
        {
            ReportHeaderBand reportHeaderBand = report.Bands.OfType <ReportHeaderBand>().FirstOrDefault();
            XRPanel          indentPanel      = new XRPanel()
            {
                HeightF = topIndent, LocationF = new PointF(0, 0)
            };

            if (reportHeaderBand == null)
            {
                reportHeaderBand = new ReportHeaderBand();
                reportHeaderBand.Controls.Add(indentPanel);
            }
            else
            {
                reportHeaderBand.Controls.Add(indentPanel);
                reportHeaderBand.Controls.SetChildIndex(indentPanel, 0);
                reportHeaderBand.Controls[1].LocationF = new PointF(indentPanel.LocationF.X, indentPanel.BottomF);
            }
            return(reportHeaderBand);
        }
コード例 #7
0
        private void PrintPlannedDayCell(XRTableCell cell)
        {
            XRPanel panel = ReportPainter.GetPanelControl(cell);

            panel.Width = cell.Width;
            panel.Dock  = XRDockStyle.Fill;
            panel.Controls.Clear();

            EmployeeDay      employeeDay  = null;
            EmployeeWeekView employeeWeek = GetCurrentWeekView();
            StoreDay         storeDay     = _recordingContext.StoreDays[(DateTime)cell.Tag];

            if (employeeWeek != null && storeDay != null && employeeWeek.PlanningWeek != null)
            {
                employeeDay = employeeWeek.PlanningWeek.GetDay(storeDay.Date);
            }

            ReportPainter.ApplyEmployeeDayStyle(cell, storeDay, employeeDay, StoreToWorldID, _recordingContext);

            ReportPainter.PrintDayCellValues(panel, employeeDay, _recordingContext);
        }
コード例 #8
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "Att_InOutReport.resx";

        this.Detail             = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow2        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell27      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell30      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell29      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell28      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell20      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell19      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12      = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin          = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin       = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1       = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable1           = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1        = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell21      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell7       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell4       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell22      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell24      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell25      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell23      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell26      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3       = new DevExpress.XtraReports.UI.XRTableCell();
        this.PageFooter         = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo2        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo1        = new DevExpress.XtraReports.UI.XRPageInfo();
        this.attendanceDataSet1 = new AttendanceDataSet();
        this.sp_Att_ScheduleDescription_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_ScheduleDescription_ReportTableAdapter();
        this.ReportHeader  = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
        this.xrCompAddress = new DevExpress.XtraReports.UI.XRLabel();
        this.xrTitle       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrCompName    = new DevExpress.XtraReports.UI.XRLabel();
        this.GroupHeader2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
        this.sp_Att_AttendanceRegister_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_AttendanceRegister_ReportTableAdapter();
        this.GroupFooter1  = new DevExpress.XtraReports.UI.GroupFooterBand();
        this.xrTable5      = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow5   = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.Detail.HeightF       = 15.41665F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable2
        //
        this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(846.5417F, 15.41665F);
        this.xrTable2.StylePriority.UseBorders = false;
        this.xrTable2.StylePriority.UseFont    = false;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell27,
            this.xrTableCell30,
            this.xrTableCell29,
            this.xrTableCell28,
            this.xrTableCell20,
            this.xrTableCell19,
            this.xrTableCell5,
            this.xrTableCell8,
            this.xrTableCell10,
            this.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1;
        //
        // xrTableCell27
        //
        this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Code")
        });
        this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell27.Name = "xrTableCell27";
        this.xrTableCell27.StylePriority.UseFont = false;
        this.xrTableCell27.Text   = "xrTableCell27";
        this.xrTableCell27.Weight = 0.4999997711181639;
        //
        // xrTableCell30
        //
        this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Att_Date")
        });
        this.xrTableCell30.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell30.Name = "xrTableCell30";
        this.xrTableCell30.StylePriority.UseFont = false;
        this.xrTableCell30.Text         = "xrTableCell30";
        this.xrTableCell30.Weight       = 0.96874988555908215;
        this.xrTableCell30.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell30_BeforePrint);
        //
        // xrTableCell29
        //
        this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Shift_Name")
        });
        this.xrTableCell29.Font   = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell29.Name   = "xrTableCell29";
        this.xrTableCell29.Text   = "xrTableCell29";
        this.xrTableCell29.Weight = 1.0208333206176756;
        //
        // xrTableCell28
        //
        this.xrTableCell28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OnDuty_Time")
        });
        this.xrTableCell28.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell28.Name          = "xrTableCell28";
        this.xrTableCell28.Text          = "xrTableCell28";
        this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell28.Weight        = 0.63541610717773434;
        //
        // xrTableCell20
        //
        this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OffDuty_Time")
        });
        this.xrTableCell20.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell20.Name          = "xrTableCell20";
        this.xrTableCell20.Text          = "xrTableCell20";
        this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell20.Weight        = 0.67456237792968743;
        //
        // xrTableCell19
        //
        this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.In_Time")
        });
        this.xrTableCell19.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell19.Name          = "xrTableCell19";
        this.xrTableCell19.Text          = "xrTableCell19";
        this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell19.Weight        = 0.69382476806640625;
        //
        // xrTableCell5
        //
        this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Out_Time")
        });
        this.xrTableCell5.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell5.Name          = "xrTableCell5";
        this.xrTableCell5.Text          = "xrTableCell5";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell5.Weight        = 0.62500030517578153;
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.LateMin")
        });
        this.xrTableCell8.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell8.Name          = "xrTableCell8";
        this.xrTableCell8.Text          = "xrTableCell8";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell8.Weight        = 0.52398162841796925;
        this.xrTableCell8.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell8_BeforePrint);
        //
        // xrTableCell10
        //
        this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.EarlyMin")
        });
        this.xrTableCell10.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell10.Name          = "xrTableCell10";
        this.xrTableCell10.Text          = "xrTableCell10";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell10.Weight        = 0.57291687011718739;
        this.xrTableCell10.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell10_BeforePrint);
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.EffectiveWork_Min")
        });
        this.xrTableCell9.Font          = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell9.Name          = "xrTableCell9";
        this.xrTableCell9.Text          = "xrTableCell9";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell9.Weight        = 0.5723724365234375;
        this.xrTableCell9.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell9_BeforePrint);
        //
        // xrTableCell11
        //
        this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.OverTime_Min")
        });
        this.xrTableCell11.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell11.Name = "xrTableCell11";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "xrTableCell11";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell11.Weight        = 0.88281188964843693;
        this.xrTableCell11.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell11_BeforePrint);
        //
        // xrTableCell12
        //
        this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Field1")
        });
        this.xrTableCell12.Font = new System.Drawing.Font("Verdana", 8F);
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseTextAlignment = false;
        this.xrTableCell12.Text          = "xrTableCell12";
        this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell12.Weight        = 0.794948733033147;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 0F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 0F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // GroupHeader1
        //
        this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.GroupHeader1.HeightF = 18.54165F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrTable1
        //
        this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable1.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(36.45834F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(846.5417F, 18.54165F);
        this.xrTable1.StylePriority.UseBorders = false;
        this.xrTable1.StylePriority.UseFont    = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell21,
            this.xrTableCell7,
            this.xrTableCell6,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell1,
            this.xrTableCell22,
            this.xrTableCell24,
            this.xrTableCell25,
            this.xrTableCell23,
            this.xrTableCell26,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell21
        //
        this.xrTableCell21.Name   = "xrTableCell21";
        this.xrTableCell21.Text   = "ID";
        this.xrTableCell21.Weight = 0.43482135264705046;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name   = "xrTableCell7";
        this.xrTableCell7.Text   = "Date";
        this.xrTableCell7.Weight = 0.84246639449167837;
        //
        // xrTableCell6
        //
        this.xrTableCell6.Name   = "xrTableCell6";
        this.xrTableCell6.Text   = "Shift";
        this.xrTableCell6.Weight = 0.88776053973238311;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "On Duty ";
        this.xrTableCell2.Weight = 0.55258535928846564;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Off Duty ";
        this.xrTableCell4.Weight = 0.58662782725143692;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "In Time";
        this.xrTableCell1.Weight = 0.60338002583602923;
        //
        // xrTableCell22
        //
        this.xrTableCell22.Name   = "xrTableCell22";
        this.xrTableCell22.Text   = "Out Time";
        this.xrTableCell22.Weight = 0.54352680981884849;
        //
        // xrTableCell24
        //
        this.xrTableCell24.Name   = "xrTableCell24";
        this.xrTableCell24.Text   = "Late";
        this.xrTableCell24.Weight = 0.45567689520649723;
        //
        // xrTableCell25
        //
        this.xrTableCell25.Name   = "xrTableCell25";
        this.xrTableCell25.Text   = "Early";
        this.xrTableCell25.Weight = 0.49823307924366106;
        //
        // xrTableCell23
        //
        this.xrTableCell23.Name   = "xrTableCell23";
        this.xrTableCell23.Text   = "Work";
        this.xrTableCell23.Weight = 0.49775962447414274;
        //
        // xrTableCell26
        //
        this.xrTableCell26.Name   = "xrTableCell26";
        this.xrTableCell26.Text   = "Overtime";
        this.xrTableCell26.Weight = 0.76773174494671226;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Status";
        this.xrTableCell3.Weight = 0.69132030305227632;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.xrPageInfo1
        });
        this.PageFooter.HeightF = 23.95833F;
        this.PageFooter.Name    = "PageFooter";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Format        = "Page{0}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(587.7919F, 0F);
        this.xrPageInfo2.Name          = "xrPageInfo2";
        this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(295.2082F, 23F);
        this.xrPageInfo2.StylePriority.UseTextAlignment = false;
        this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(344.7917F, 23F);
        //
        // attendanceDataSet1
        //
        this.attendanceDataSet1.DataSetName             = "AttendanceDataSet";
        this.attendanceDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // sp_Att_ScheduleDescription_ReportTableAdapter1
        //
        this.sp_Att_ScheduleDescription_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.ReportHeader.HeightF = 77F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrPanel1
        //
        this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrCompAddress,
            this.xrTitle,
            this.xrPictureBox1,
            this.xrCompName
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(36.45833F, 5F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(846.5417F, 72F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrCompAddress
        //
        this.xrCompAddress.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompAddress.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompAddress.LocationFloat            = new DevExpress.Utils.PointFloat(4.041668F, 27F);
        this.xrCompAddress.Name                     = "xrCompAddress";
        this.xrCompAddress.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompAddress.SizeF                    = new System.Drawing.SizeF(353.125F, 22.04167F);
        this.xrCompAddress.StylePriority.UseBorders = false;
        this.xrCompAddress.StylePriority.UseFont    = false;
        this.xrCompAddress.Text                     = "xrCompAddress";
        //
        // xrTitle
        //
        this.xrTitle.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTitle.Font                           = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(208.7263F, 52F);
        this.xrTitle.Name                           = "xrTitle";
        this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTitle.SizeF                          = new System.Drawing.SizeF(450.1771F, 16F);
        this.xrTitle.StylePriority.UseBorders       = false;
        this.xrTitle.StylePriority.UseFont          = false;
        this.xrTitle.StylePriority.UseTextAlignment = false;
        this.xrTitle.Text                           = "xrTitle";
        this.xrTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(743.5417F, 2F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(100F, 47.04167F);
        this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrCompName
        //
        this.xrCompName.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrCompName.Font                     = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrCompName.LocationFloat            = new DevExpress.Utils.PointFloat(4.041668F, 2F);
        this.xrCompName.Name                     = "xrCompName";
        this.xrCompName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompName.SizeF                    = new System.Drawing.SizeF(353.125F, 23F);
        this.xrCompName.StylePriority.UseBorders = false;
        this.xrCompName.StylePriority.UseFont    = false;
        this.xrCompName.Text                     = "xrCompName";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 15.625F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(36.45825F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(846.5418F, 14.99999F);
        this.xrTable3.StylePriority.UseBorders = false;
        this.xrTable3.StylePriority.UseFont    = false;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18,
            this.xrTableCell15
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "ID";
        this.xrTableCell13.Weight = 0.3645834350585937;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell14.Name = "xrTableCell14";
        this.xrTableCell14.StylePriority.UseFont          = false;
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = ":";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell14.Weight        = 0.13541648864746092;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Code")
        });
        this.xrTableCell16.Name   = "xrTableCell16";
        this.xrTableCell16.Text   = "[Emp_Code]";
        this.xrTableCell16.Weight = 0.96875007629394538;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = "Name";
        this.xrTableCell17.Weight = 0.49263153076171884;
        //
        // xrTableCell18
        //
        this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell18.Name = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont          = false;
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text          = ":";
        this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell18.Weight        = 0.15929840087890612;
        //
        // xrTableCell15
        //
        this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Name")
        });
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseBorders = false;
        this.xrTableCell15.Text   = "xrTableCell15";
        this.xrTableCell15.Weight = 6.3447381591796876;
        //
        // sp_Att_AttendanceRegister_ReportTableAdapter1
        //
        this.sp_Att_AttendanceRegister_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // GroupFooter1
        //
        this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable5
        });
        this.GroupFooter1.HeightF = 20F;
        this.GroupFooter1.Name    = "GroupFooter1";
        //
        // xrTable5
        //
        this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable5.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(36.45831F, 0F);
        this.xrTable5.Name          = "xrTable5";
        this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow5
        });
        this.xrTable5.SizeF = new System.Drawing.SizeF(846.5417F, 20F);
        this.xrTable5.StylePriority.UseBorders = false;
        this.xrTable5.StylePriority.UseFont    = false;
        //
        // xrTableRow5
        //
        this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell36,
            this.xrTableCell32,
            this.xrTableCell33,
            this.xrTableCell34,
            this.xrTableCell35,
            this.xrTableCell37
        });
        this.xrTableRow5.Name   = "xrTableRow5";
        this.xrTableRow5.Weight = 1;
        //
        // xrTableCell36
        //
        this.xrTableCell36.Name = "xrTableCell36";
        this.xrTableCell36.StylePriority.UseTextAlignment = false;
        this.xrTableCell36.Text          = "Total ";
        this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell36.Weight        = 2.0018547344583935;
        //
        // xrTableCell32
        //
        this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell32.Name = "xrTableCell32";
        this.xrTableCell32.StylePriority.UseTextAlignment = false;
        this.xrTableCell32.Text          = "xrTableCell32";
        this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell32.Weight        = 0.20493458428833339;
        this.xrTableCell32.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell32_BeforePrint);
        //
        // xrTableCell33
        //
        this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell33.Name = "xrTableCell33";
        this.xrTableCell33.StylePriority.UseTextAlignment = false;
        this.xrTableCell33.Text          = "xrTableCell33";
        this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell33.Weight        = 0.22407351670249165;
        this.xrTableCell33.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell33_BeforePrint);
        //
        // xrTableCell34
        //
        this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell34.Name = "xrTableCell34";
        this.xrTableCell34.StylePriority.UseTextAlignment = false;
        this.xrTableCell34.Text          = "xrTableCell34";
        this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell34.Weight        = 0.22386105546104113;
        this.xrTableCell34.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell34_BeforePrint);
        //
        // xrTableCell35
        //
        this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_AttendanceRegister_Report.Emp_Id")
        });
        this.xrTableCell35.Name = "xrTableCell35";
        this.xrTableCell35.StylePriority.UseTextAlignment = false;
        this.xrTableCell35.Text          = "xrTableCell35";
        this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell35.Weight        = 0.345276499085476;
        this.xrTableCell35.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell35_BeforePrint);
        //
        // xrTableCell37
        //
        this.xrTableCell37.Name   = "xrTableCell37";
        this.xrTableCell37.Weight = 0.3109128341579464;
        //
        // Att_InOutReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.PageFooter,
            this.ReportHeader,
            this.GroupHeader2,
            this.GroupFooter1
        });
        this.DataAdapter = this.sp_Att_AttendanceRegister_ReportTableAdapter1;
        this.DataMember  = "sp_Att_AttendanceRegister_Report";
        this.DataSource  = this.attendanceDataSet1;
        this.Font        = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins     = new System.Drawing.Printing.Margins(7, 0, 0, 0);
        this.PageWidth   = 900;
        this.PaperKind   = System.Drawing.Printing.PaperKind.Custom;
        this.Version     = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.attendanceDataSet1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(CategoriesReport));
     this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.topMarginBand1           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.detailBand1              = 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.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "NWindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "CategoryID";
     table1.MetaSerializable            = null;
     table1.Name                  = "Categories";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "CategoryName";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Picture";
     columnExpression4.Table      = table1;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.MetaSerializable = null;
     selectQuery1.Name             = "Categories";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName        = "PageInfo";
     this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 60F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(638F, 26F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.Text          = "Categories Report";
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 48F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 28F);
     //
     // 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.StyleName = "DetailCaption3";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Category ID";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell1.Weight        = 0.26058631310096153D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.Text      = "Category Name";
     this.xrTableCell2.Weight    = 0.2006807326518093D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.Text      = "Description";
     this.xrTableCell3.Weight    = 0.36935182725654409D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "DetailCaption3";
     this.xrTableCell4.Text      = "Picture";
     this.xrTableCell4.Weight    = 0.169381103515625D;
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.detailBand1.HeightF = 25F;
     this.detailBand1.Name    = "detailBand1";
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // 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 = 11.5D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryID")
     });
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.StyleName = "DetailData3";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.26058631310096153D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryName")
     });
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.StyleName = "DetailData3";
     this.xrTableCell6.Text      = "xrTableCell6";
     this.xrTableCell6.Weight    = 0.2006807326518093D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.Description")
     });
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailData3";
     this.xrTableCell7.Text      = "xrTableCell7";
     this.xrTableCell7.Weight    = 0.36935182725654409D;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.AnchorHorizontal = ((DevExpress.XtraReports.UI.HorizontalAnchorStyles)((DevExpress.XtraReports.UI.HorizontalAnchorStyles.Left | DevExpress.XtraReports.UI.HorizontalAnchorStyles.Right)));
     this.xrPictureBox1.AnchorVertical   = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "Categories.Picture")
     });
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(110.0977F, 25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1
     });
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DetailData3";
     this.xrTableCell8.Text      = "xrTableCell8";
     this.xrTableCell8.Weight    = 0.169381103515625D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // CategoriesReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.bottomMarginBand1,
         this.reportHeaderBand1,
         this.groupHeaderBand1,
         this.detailBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Categories";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(en_EmployeeCard));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter8  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter9  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter10 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter11 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings3 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPanel1        = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel12       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8        = new DevExpress.XtraReports.UI.XRLabel();
     this.EmployeePicture = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9        = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName     = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel10       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel11       = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource2  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.MappingEmpIds   = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDeptIds  = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingJobIds   = new DevExpress.XtraReports.Parameters.Parameter();
     this.User            = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture         = new DevExpress.XtraReports.Parameters.Parameter();
     this.CompanyId       = new DevExpress.XtraReports.Parameters.Parameter();
     this.DeptIds         = new DevExpress.XtraReports.Parameters.Parameter();
     this.JobIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.EmpIds          = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name     = "SP_EmployeeCard";
     queryParameter1.Name      = "@Culture";
     queryParameter1.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value     = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name      = "@LoginedCompany";
     queryParameter2.Type      = typeof(string);
     queryParameter2.ValueInfo = "0";
     queryParameter3.Name      = "@EmpIds";
     queryParameter3.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingEmpIds]", typeof(string));
     queryParameter4.Name      = "@DeptIds";
     queryParameter4.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingDeptIds]", typeof(string));
     queryParameter5.Name      = "@JobId";
     queryParameter5.Type      = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value     = new DevExpress.DataAccess.Expression("[Parameters.MappingJobIds]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.StoredProcName = "SP_EmployeeCard";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.Detail.Dpi     = 254F;
     this.Detail.HeightF = 366.5556F;
     this.Detail.MultiColumn.ColumnSpacing = 25F;
     this.Detail.MultiColumn.ColumnWidth   = 902F;
     this.Detail.MultiColumn.Layout        = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail.MultiColumn.Mode          = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // receivePanel
     //
     this.xrPanel1.BackColor       = System.Drawing.Color.White;
     this.xrPanel1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPanel1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel1.BorderWidth = 2F;
     this.xrPanel1.CanGrow     = false;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLabel13,
         this.xrLabel8,
         this.EmployeePicture,
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel9,
         this.xrLabel10
     });
     this.xrPanel1.Dpi           = 254F;
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "receivePanel";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(902.0001F, 357.4306F);
     this.xrPanel1.StylePriority.UseBackColor       = false;
     this.xrPanel1.StylePriority.UseBorderDashStyle = false;
     this.xrPanel1.StylePriority.UseBorderWidth     = false;
     //
     // xrLabel12
     //
     this.xrLabel12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(240)))));
     this.xrLabel12.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_EmployeeCard.Age", "{0}")
     });
     this.xrLabel12.Dpi           = 254F;
     this.xrLabel12.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(229.2499F, 289.9274F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(178.1528F, 58.42001F);
     this.xrLabel12.StylePriority.UseBackColor     = false;
     this.xrLabel12.StylePriority.UseBorders       = false;
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(240)))));
     this.xrLabel13.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_EmployeeCard.JobName")
     });
     this.xrLabel13.Dpi           = 254F;
     this.xrLabel13.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(229.2499F, 217.118F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(372.1805F, 58.41991F);
     this.xrLabel13.StylePriority.UseBackColor     = false;
     this.xrLabel13.StylePriority.UseBorders       = false;
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(240)))));
     this.xrLabel8.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_EmployeeCard.Nationality")
     });
     this.xrLabel8.Dpi           = 254F;
     this.xrLabel8.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(462.4861F, 289.9274F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(414.5139F, 58.41998F);
     this.xrLabel8.StylePriority.UseBackColor     = false;
     this.xrLabel8.StylePriority.UseBorders       = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // EmployeePicture
     //
     this.EmployeePicture.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(197)))));
     this.EmployeePicture.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.EmployeePicture.BorderWidth     = 3F;
     this.EmployeePicture.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "SP_EmployeeCard.fs")
     });
     this.EmployeePicture.Dpi           = 254F;
     this.EmployeePicture.LocationFloat = new DevExpress.Utils.PointFloat(623.0001F, 77.34724F);
     this.EmployeePicture.Name          = "EmployeePicture";
     this.EmployeePicture.SizeF         = new System.Drawing.SizeF(254F, 198.1905F);
     this.EmployeePicture.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.EmployeePicture.StylePriority.UseBorderColor     = false;
     this.EmployeePicture.StylePriority.UseBorderDashStyle = false;
     this.EmployeePicture.StylePriority.UseBorderWidth     = false;
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(214)))), ((int)(((byte)(211)))));
     this.xrLabel1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(25.2778F, 77.34724F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(193.6666F, 58.41999F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Name : ";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(240)))));
     this.xrLabel2.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_EmployeeCard.EmpName")
     });
     this.xrLabel2.Dpi           = 254F;
     this.xrLabel2.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(229.2499F, 77.34724F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(372.1804F, 58.41999F);
     this.xrLabel2.StylePriority.UseBackColor     = false;
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(214)))), ((int)(((byte)(211)))));
     this.xrLabel3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.Dpi           = 254F;
     this.xrLabel3.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(25.00001F, 148.1144F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(193.6666F, 58.42F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseForeColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "Department :";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(240)))));
     this.xrLabel4.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_EmployeeCard.deptName")
     });
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(229.2499F, 148.1144F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(372.1804F, 58.42F);
     this.xrLabel4.StylePriority.UseBackColor     = false;
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(214)))), ((int)(((byte)(211)))));
     this.xrLabel5.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Dpi           = 254F;
     this.xrLabel5.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(24.99979F, 217.118F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(193.6668F, 58.41997F);
     this.xrLabel5.StylePriority.UseBackColor     = false;
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "Job :";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(232)))), ((int)(((byte)(220)))));
     this.xrLabel9.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(25.2778F, 6.00001F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(851.7222F, 58.41999F);
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseBorders       = false;
     this.xrLabel9.StylePriority.UseForeColor     = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // xrLabel10
     //
     this.xrLabel10.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(214)))), ((int)(((byte)(211)))));
     this.xrLabel10.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(25.00001F, 289.9274F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(193.6666F, 58.42004F);
     this.xrLabel10.StylePriority.UseBackColor     = false;
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseForeColor     = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "Age :";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11
     });
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 141F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.AutoWidth   = true;
     this.xrLabel11.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(214)))), ((int)(((byte)(211)))));
     this.xrLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.CanShrink   = true;
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.sqlDataSource2, "sp_ReportTitle.Column1")
     });
     this.xrLabel11.Dpi           = 254F;
     this.xrLabel11.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F);
     this.xrLabel11.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(5.382962E-05F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.RightToLeft   = DevExpress.XtraReports.UI.RightToLeft.Yes;
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(1829F, 127.1111F);
     this.xrLabel11.StylePriority.UseBackColor     = false;
     this.xrLabel11.StylePriority.UseBorderColor   = false;
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionName = "HrContext";
     this.sqlDataSource2.Name           = "sqlDataSource2";
     storedProcQuery2.Name = "sp_ReportTitle";
     queryParameter6.Name  = "@EmpIds";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingEmpIds]", typeof(string));
     queryParameter7.Name  = "@JobIds";
     queryParameter7.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingJobIds]", typeof(string));
     queryParameter8.Name  = "@deptIds";
     queryParameter8.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter8.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingDeptIds]", typeof(string));
     queryParameter9.Name  = "@culture";
     queryParameter9.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter9.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter10.Name = "@NationIds";
     queryParameter10.Type = typeof(string);
     queryParameter11.Name = "@ContractsIds";
     queryParameter11.Type = typeof(string);
     storedProcQuery2.Parameters.Add(queryParameter6);
     storedProcQuery2.Parameters.Add(queryParameter7);
     storedProcQuery2.Parameters.Add(queryParameter8);
     storedProcQuery2.Parameters.Add(queryParameter9);
     storedProcQuery2.Parameters.Add(queryParameter10);
     storedProcQuery2.Parameters.Add(queryParameter11);
     storedProcQuery2.StoredProcName = "sp_ReportTitle";
     this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery2
     });
     this.sqlDataSource2.ResultSchemaSerializable = "PERhdGFTZXQgTmFtZT0ic3FsRGF0YVNvdXJjZTIiPjxWaWV3IE5hbWU9InNwX1JlcG9ydFRpdGxlIj48R" +
                                                    "mllbGQgTmFtZT0iQ29sdW1uMSIgVHlwZT0iU3RyaW5nIiAvPjwvVmlldz48L0RhdGFTZXQ+";
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // MappingEmpIds
     //
     this.MappingEmpIds.Description = "MappingEmpIds";
     this.MappingEmpIds.Name        = "MappingEmpIds";
     this.MappingEmpIds.Visible     = false;
     //
     // MappingDeptIds
     //
     this.MappingDeptIds.Description = "MappingDeptIds";
     this.MappingDeptIds.Name        = "MappingDeptIds";
     this.MappingDeptIds.Visible     = false;
     //
     // MappingJobIds
     //
     this.MappingJobIds.Description = "MappingJobIds";
     this.MappingJobIds.Name        = "MappingJobIds";
     this.MappingJobIds.Visible     = false;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "en-GB";
     this.Culture.Visible     = false;
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // DeptIds
     //
     this.DeptIds.Description = "Department";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_EmployeeCard";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "deptName";
     dynamicListLookUpSettings1.ValueMember   = "deptId";
     this.DeptIds.LookUpSettings = dynamicListLookUpSettings1;
     this.DeptIds.MultiValue     = true;
     this.DeptIds.Name           = "DeptIds";
     this.DeptIds.Type           = typeof(int);
     //
     // JobIds
     //
     this.JobIds.Description = "Job";
     dynamicListLookUpSettings2.DataAdapter   = null;
     dynamicListLookUpSettings2.DataMember    = "SP_EmployeeCard";
     dynamicListLookUpSettings2.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings2.DisplayMember = "JobName";
     dynamicListLookUpSettings2.ValueMember   = "jobId";
     this.JobIds.LookUpSettings = dynamicListLookUpSettings2;
     this.JobIds.MultiValue     = true;
     this.JobIds.Name           = "JobIds";
     this.JobIds.Type           = typeof(int);
     //
     // EmpIds
     //
     this.EmpIds.Description = "Employee";
     dynamicListLookUpSettings3.DataAdapter   = null;
     dynamicListLookUpSettings3.DataMember    = "SP_EmployeeCard";
     dynamicListLookUpSettings3.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings3.DisplayMember = "EmpName";
     dynamicListLookUpSettings3.ValueMember   = "EmpId";
     this.EmpIds.LookUpSettings = dynamicListLookUpSettings3;
     this.EmpIds.MultiValue     = true;
     this.EmpIds.Name           = "EmpIds";
     this.EmpIds.Type           = typeof(int);
     //
     // en_EmployeeCard
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1,
         this.sqlDataSource2
     });
     this.DataMember = "SP_EmployeeCard";
     this.DataSource = this.sqlDataSource1;
     this.Dpi        = 254F;
     this.Font       = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins    = new System.Drawing.Printing.Margins(130, 141, 141, 0);
     this.PageHeight = 2970;
     this.PageWidth  = 2100;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.MappingEmpIds,
         this.MappingDeptIds,
         this.MappingJobIds,
         this.CompanyName,
         this.User,
         this.Culture,
         this.CompanyId,
         this.DeptIds,
         this.JobIds,
         this.EmpIds
     });
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12;
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.Version      = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(xReportInvoice));
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.objectDataSource1        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 26.08331F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1168F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell20
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceNumber")
     });
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.StyleName = "DetailData3";
     this.xrTableCell11.Text      = "xrTableCell11";
     this.xrTableCell11.Weight    = 0.164872987829957D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")
     });
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailData3";
     this.xrTableCell12.Text      = "xrTableCell12";
     this.xrTableCell12.Weight    = 0.14331923817741799D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "WorkPeriod")
     });
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.StyleName = "DetailData3";
     this.xrTableCell13.Text      = "xrTableCell13";
     this.xrTableCell13.Weight    = 0.30692775301209119D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ProductName")
     });
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StyleName = "DetailData3";
     this.xrTableCell14.Text      = "xrTableCell14";
     this.xrTableCell14.Weight    = 0.23068133934079999D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceQuantity", "{0:}")
     });
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.StyleName = "DetailData3";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "xrTableCell15";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell15.Weight        = 0.151149068726196D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceUnitPrice", "{0:Rp0.00}")
     });
     this.xrTableCell16.Name      = "xrTableCell16";
     this.xrTableCell16.StyleName = "DetailData3";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell16.Weight        = 0.15760640045496321D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceTotalPrice", "{0:Rp}")
     });
     this.xrTableCell17.Name      = "xrTableCell17";
     this.xrTableCell17.StyleName = "DetailData3";
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = "xrTableCell17";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell17.Weight        = 0.14390481787673498D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "BASTQuantity", "{0:Rp0.00}")
     });
     this.xrTableCell18.Name      = "xrTableCell18";
     this.xrTableCell18.StyleName = "DetailData3";
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text          = "xrTableCell18";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell18.Weight        = 0.16346152630310995D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "BASTUnitPrice", "{0:Rp0.00}")
     });
     this.xrTableCell19.Name      = "xrTableCell19";
     this.xrTableCell19.StyleName = "DetailData3";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     this.xrTableCell19.Text          = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell19.Weight        = 0.15197519710766216D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "BASTTotalPrice", "{0:Rp0.00}")
     });
     this.xrTableCell20.Name      = "xrTableCell20";
     this.xrTableCell20.StyleName = "DetailData3";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text          = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell20.Weight        = 0.18302473754842522D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 19.79167F;
     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.xrPageInfo1,
         this.xrPageInfo2
     });
     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;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(855F, 10.00001F);
     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;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(FrancoHandling_Lib.Model.InvoiceModel.InvoiceReport);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrPictureBox1,
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 60.00001F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(189.4113F, 26.08331F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(978.5886F, 33.91669F);
     this.xrLabel2.StyleName     = "Title";
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(4.632235F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(184.7791F, 60.00001F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(189.4113F, 0F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(978.5886F, 26.08331F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Invoice Report";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 48F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(1168F, 48F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // 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, 20F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1168F, 28F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.StylePriority.UseBorders = false;
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.StyleName = "DetailCaption3";
     this.xrTableCell1.Text      = "Invoice Number";
     this.xrTableCell1.Weight    = 0.16487297037414272D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.Text      = "Invoice Date";
     this.xrTableCell2.Weight    = 0.14331922689133025D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.Text      = "Work Period";
     this.xrTableCell3.Weight    = 0.30692772607596747D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "DetailCaption3";
     this.xrTableCell4.Text      = "Product Name";
     this.xrTableCell4.Weight    = 0.2306811034728567D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Invoice Quantity";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.15114913510463818D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Invoice Unit Price";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell6.Weight        = 0.15760646680137452D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Invoice Total Price";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell7.Weight        = 0.14390479208809121D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "BASTQuantity";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell8.Weight        = 0.16346151956873406D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.StyleName = "DetailCaption3";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "BASTUnit Price";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell9.Weight        = 0.15197508638840904D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.StyleName = "DetailCaption3";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "BASTTotal Price";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell10.Weight        = 0.1830248708803047D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // xReportInvoice
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.DefaultPrinterSettingsUsing.UseLandscape = true;
     this.Margins    = new System.Drawing.Printing.Margins(1, 0, 20, 100);
     this.PageHeight = 1654;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A3;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.pccData1111  = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Label_year   = new DevExpress.XtraReports.UI.XRLabel();
     this.Label_month  = 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.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7     = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     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.xrLabel52    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel53    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel54    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel55    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel56    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel57    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel58    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel43    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel45    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47    = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pccData1111
     });
     this.Detail.HeightF       = 103.125F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pccData1111
     //
     this.pccData1111.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.pccData1111.Name          = "pccData1111";
     this.pccData1111.SizeF         = new System.Drawing.SizeF(1100F, 103.125F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Label_year
     //
     this.Label_year.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.Label_year.LocationFloat                  = new DevExpress.Utils.PointFloat(588.2014F, 158.4368F);
     this.Label_year.Name                           = "Label_year";
     this.Label_year.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Label_year.SizeF                          = new System.Drawing.SizeF(57.29163F, 23F);
     this.Label_year.StylePriority.UseFont          = false;
     this.Label_year.StylePriority.UseTextAlignment = false;
     this.Label_year.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Label_month
     //
     this.Label_month.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.Label_month.LocationFloat                  = new DevExpress.Utils.PointFloat(513.0823F, 158.4368F);
     this.Label_month.Name                           = "Label_month";
     this.Label_month.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Label_month.SizeF                          = new System.Drawing.SizeF(35.41669F, 23F);
     this.Label_month.StylePriority.UseFont          = false;
     this.Label_month.StylePriority.UseTextAlignment = false;
     this.Label_month.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // 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(22.5F, 20.20836F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(1055F, 72.11724F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(3.178914E-05F, 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(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(60.18839F, 10.00001F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(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(4.482269E-05F, 42.00004F);
     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(60.18839F, 42.00004F);
     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(784.7249F, 10.00004F);
     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ố S04a1-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(784.7249F, 33.00002F);
     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;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(220.7698F, 103.447F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "NHẬT KÝ CHỨNG TỪ SỐ 1";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(220.7698F, 135.4367F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(652.5292F, 22.99999F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Ghi Có Tài Khoản 111 - Tiền mặt";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(551.9557F, 158.4368F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "năm";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(465.2089F, 158.4368F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Tháng";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel3,
         this.xrLabel42,
         this.xrLabel43,
         this.xrLabel44,
         this.xrLabel45,
         this.xrLabel46,
         this.xrLabel47
     });
     this.ReportFooter.HeightF = 306.3954F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrPanel3
     //
     this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel59,
         this.xrLabel48,
         this.xrLabel49,
         this.xrLabel50,
         this.xrLabel51,
         this.xrLabel52,
         this.xrLabel53,
         this.xrLabel54,
         this.xrLabel55,
         this.xrLabel56,
         this.xrLabel57,
         this.xrLabel58
     });
     this.xrPanel3.LocationFloat = new DevExpress.Utils.PointFloat(25.00002F, 72.12791F);
     this.xrPanel3.Name          = "xrPanel3";
     this.xrPanel3.SizeF         = new System.Drawing.SizeF(1031.919F, 100.3092F);
     //
     // xrLabel59
     //
     this.xrLabel59.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel59.LocationFloat                  = new DevExpress.Utils.PointFloat(738.1652F, 9.201469F);
     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(413.0181F, 55.20156F);
     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(413.0181F, 32.20146F);
     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;
     //
     // xrLabel52
     //
     this.xrLabel52.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel52.LocationFloat                  = new DevExpress.Utils.PointFloat(806.1652F, 32.20146F);
     this.xrLabel52.Name                           = "xrLabel52";
     this.xrLabel52.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel52.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00001F);
     this.xrLabel52.StylePriority.UseFont          = false;
     this.xrLabel52.StylePriority.UseTextAlignment = false;
     this.xrLabel52.Text                           = "Giám đốc";
     this.xrLabel52.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel53
     //
     this.xrLabel53.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel53.LocationFloat                  = new DevExpress.Utils.PointFloat(806.1652F, 55.20156F);
     this.xrLabel53.Name                           = "xrLabel53";
     this.xrLabel53.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel53.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00002F);
     this.xrLabel53.StylePriority.UseFont          = false;
     this.xrLabel53.StylePriority.UseTextAlignment = false;
     this.xrLabel53.Text                           = "(Ký, họ tên, đóng dấu)";
     this.xrLabel53.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel54
     //
     this.xrLabel54.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel54.LocationFloat                  = new DevExpress.Utils.PointFloat(874.1652F, 9.201462F);
     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(958.2843F, 9.201462F);
     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(922.0388F, 9.201462F);
     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(826.2917F, 9.201462F);
     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(784.2321F, 9.201462F);
     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;
     //
     // xrLabel42
     //
     this.xrLabel42.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel42.LocationFloat                  = new DevExpress.Utils.PointFloat(48.08512F, 49.1279F);
     this.xrLabel42.Name                           = "xrLabel42";
     this.xrLabel42.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.SizeF                          = new System.Drawing.SizeF(137.2003F, 23.00002F);
     this.xrLabel42.StylePriority.UseFont          = false;
     this.xrLabel42.StylePriority.UseTextAlignment = false;
     this.xrLabel42.Text                           = "Đã ghi Sổ Cái ngày";
     this.xrLabel42.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel43
     //
     this.xrLabel43.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel43.LocationFloat                  = new DevExpress.Utils.PointFloat(185.2854F, 49.1279F);
     this.xrLabel43.Name                           = "xrLabel43";
     this.xrLabel43.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.SizeF                          = new System.Drawing.SizeF(42.05952F, 23F);
     this.xrLabel43.StylePriority.UseFont          = false;
     this.xrLabel43.StylePriority.UseTextAlignment = false;
     this.xrLabel43.Text                           = "......";
     this.xrLabel43.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel44
     //
     this.xrLabel44.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel44.LocationFloat                  = new DevExpress.Utils.PointFloat(227.345F, 49.1279F);
     this.xrLabel44.Name                           = "xrLabel44";
     this.xrLabel44.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel44.StylePriority.UseFont          = false;
     this.xrLabel44.StylePriority.UseTextAlignment = false;
     this.xrLabel44.Text                           = "tháng";
     this.xrLabel44.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel45
     //
     this.xrLabel45.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel45.LocationFloat                  = new DevExpress.Utils.PointFloat(323.0919F, 49.1279F);
     this.xrLabel45.Name                           = "xrLabel45";
     this.xrLabel45.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel45.StylePriority.UseFont          = false;
     this.xrLabel45.StylePriority.UseTextAlignment = false;
     this.xrLabel45.Text                           = "năm";
     this.xrLabel45.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel46
     //
     this.xrLabel46.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel46.LocationFloat                  = new DevExpress.Utils.PointFloat(359.3375F, 49.1279F);
     this.xrLabel46.Name                           = "xrLabel46";
     this.xrLabel46.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel46.StylePriority.UseFont          = false;
     this.xrLabel46.StylePriority.UseTextAlignment = false;
     this.xrLabel46.Text                           = "........";
     this.xrLabel46.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel47
     //
     this.xrLabel47.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel47.LocationFloat                  = new DevExpress.Utils.PointFloat(275.2184F, 49.1279F);
     this.xrLabel47.Name                           = "xrLabel47";
     this.xrLabel47.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel47.StylePriority.UseFont          = false;
     this.xrLabel47.StylePriority.UseTextAlignment = false;
     this.xrLabel47.Text                           = "........";
     this.xrLabel47.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel9,
         this.xrLabel7,
         this.Label_month,
         this.Label_year
     });
     this.ReportHeader.HeightF = 209.375F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // S04a1_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportFooter,
         this.ReportHeader
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(0, 0, 0, 0);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Version    = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.pccData      = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel15    = new DevExpress.XtraReports.UI.XRLabel();
     this.beginBalance = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel13    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14    = new DevExpress.XtraReports.UI.XRLabel();
     this.endBalance   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPanel3     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel59    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel49    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel50    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel51    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel54    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel55    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel56    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel57    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel58    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17    = new DevExpress.XtraReports.UI.XRLabel();
     this.datePeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel12    = new DevExpress.XtraReports.UI.XRLabel();
     this.yearPeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel10    = new DevExpress.XtraReports.UI.XRLabel();
     this.monthPeriod  = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pccData
     });
     this.Detail.HeightF       = 140.625F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pccData
     //
     this.pccData.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.pccData.Name          = "pccData";
     this.pccData.SizeF         = new System.Drawing.SizeF(1100F, 140.625F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 17.70833F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.beginBalance, "Text", "{0:#,#}")
     });
     this.xrLabel15.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(914.136F, 190.5523F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(134.3749F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "xrLabel15";
     //
     // beginBalance
     //
     this.beginBalance.Description = "Parameter1";
     this.beginBalance.Name        = "beginBalance";
     this.beginBalance.Type        = typeof(int);
     this.beginBalance.ValueInfo   = "0";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(790.6812F, 190.5523F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(123.4548F, 23.00002F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Số dư đầu tháng:";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(194.1521F, 102.5442F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "BẢNG KÊ SỐ 1";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(429.5912F, 157.534F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Tháng";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(525.338F, 157.534F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "năm";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(194.1521F, 134.5338F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(652.5292F, 22.99999F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Ghi Nợ Tài Khoản 111 - Tiền mặt";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 23.95833F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(1080F, 72.11725F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 7.117249F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 7.117249F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = ".........................";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 39.11728F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Địa chỉ:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 39.11728F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = ".........................";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(835.7247F, 7.117256F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(234.2751F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Mẫu số S04b1-DN";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(835.7247F, 30.11723F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(234.2751F, 32.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Ban hành theo QĐ số 15/2006/QĐ-BTC \r\nngày 20/03/2006 của Bộ trưởng BTC)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.endBalance, "Text", "{0:#,#}")
     });
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(924.761F, 9.999974F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(134.3749F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "xrLabel14";
     //
     // endBalance
     //
     this.endBalance.Description = "Parameter1";
     this.endBalance.Name        = "endBalance";
     this.endBalance.Type        = typeof(int);
     this.endBalance.ValueInfo   = "0";
     //
     // xrPanel3
     //
     this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel59,
         this.xrLabel48,
         this.xrLabel49,
         this.xrLabel50,
         this.xrLabel51,
         this.xrLabel54,
         this.xrLabel55,
         this.xrLabel56,
         this.xrLabel57,
         this.xrLabel58
     });
     this.xrPanel3.LocationFloat = new DevExpress.Utils.PointFloat(5F, 32.99999F);
     this.xrPanel3.Name          = "xrPanel3";
     this.xrPanel3.SizeF         = new System.Drawing.SizeF(1090F, 96.14252F);
     //
     // xrLabel59
     //
     this.xrLabel59.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel59.LocationFloat                  = new DevExpress.Utils.PointFloat(682.8936F, 10.00001F);
     this.xrLabel59.Name                           = "xrLabel59";
     this.xrLabel59.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel59.SizeF                          = new System.Drawing.SizeF(46.06677F, 22.99999F);
     this.xrLabel59.StylePriority.UseFont          = false;
     this.xrLabel59.StylePriority.UseTextAlignment = false;
     this.xrLabel59.Text                           = "Ngày";
     this.xrLabel59.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel48
     //
     this.xrLabel48.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel48.LocationFloat                  = new DevExpress.Utils.PointFloat(107.0181F, 33.00002F);
     this.xrLabel48.Name                           = "xrLabel48";
     this.xrLabel48.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel48.StylePriority.UseFont          = false;
     this.xrLabel48.StylePriority.UseTextAlignment = false;
     this.xrLabel48.Text                           = "Người ghi sổ";
     this.xrLabel48.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel49
     //
     this.xrLabel49.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel49.LocationFloat                  = new DevExpress.Utils.PointFloat(107.0181F, 56.00011F);
     this.xrLabel49.Name                           = "xrLabel49";
     this.xrLabel49.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel49.StylePriority.UseFont          = false;
     this.xrLabel49.StylePriority.UseTextAlignment = false;
     this.xrLabel49.Text                           = "(Ký, họ tên)";
     this.xrLabel49.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel50
     //
     this.xrLabel50.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel50.LocationFloat                  = new DevExpress.Utils.PointFloat(738.1652F, 56.00011F);
     this.xrLabel50.Name                           = "xrLabel50";
     this.xrLabel50.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel50.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel50.StylePriority.UseFont          = false;
     this.xrLabel50.StylePriority.UseTextAlignment = false;
     this.xrLabel50.Text                           = "(Ký, họ tên)";
     this.xrLabel50.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel51
     //
     this.xrLabel51.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel51.LocationFloat                  = new DevExpress.Utils.PointFloat(738.1652F, 33.00002F);
     this.xrLabel51.Name                           = "xrLabel51";
     this.xrLabel51.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel51.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel51.StylePriority.UseFont          = false;
     this.xrLabel51.StylePriority.UseTextAlignment = false;
     this.xrLabel51.Text                           = "Kế toán trưởng";
     this.xrLabel51.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel54
     //
     this.xrLabel54.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel54.LocationFloat                  = new DevExpress.Utils.PointFloat(818.8935F, 10.00001F);
     this.xrLabel54.Name                           = "xrLabel54";
     this.xrLabel54.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel54.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel54.StylePriority.UseFont          = false;
     this.xrLabel54.StylePriority.UseTextAlignment = false;
     this.xrLabel54.Text                           = "........";
     this.xrLabel54.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel55
     //
     this.xrLabel55.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel55.LocationFloat                  = new DevExpress.Utils.PointFloat(903.0126F, 10.00001F);
     this.xrLabel55.Name                           = "xrLabel55";
     this.xrLabel55.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel55.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel55.StylePriority.UseFont          = false;
     this.xrLabel55.StylePriority.UseTextAlignment = false;
     this.xrLabel55.Text                           = "........";
     this.xrLabel55.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel56
     //
     this.xrLabel56.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel56.LocationFloat                  = new DevExpress.Utils.PointFloat(866.767F, 10.00001F);
     this.xrLabel56.Name                           = "xrLabel56";
     this.xrLabel56.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel56.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel56.StylePriority.UseFont          = false;
     this.xrLabel56.StylePriority.UseTextAlignment = false;
     this.xrLabel56.Text                           = "năm";
     this.xrLabel56.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel57
     //
     this.xrLabel57.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel57.LocationFloat                  = new DevExpress.Utils.PointFloat(771.02F, 10.00001F);
     this.xrLabel57.Name                           = "xrLabel57";
     this.xrLabel57.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel57.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel57.StylePriority.UseFont          = false;
     this.xrLabel57.StylePriority.UseTextAlignment = false;
     this.xrLabel57.Text                           = "tháng";
     this.xrLabel57.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel58
     //
     this.xrLabel58.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel58.LocationFloat                  = new DevExpress.Utils.PointFloat(728.9604F, 10.00001F);
     this.xrLabel58.Name                           = "xrLabel58";
     this.xrLabel58.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel58.SizeF                          = new System.Drawing.SizeF(42.05952F, 23F);
     this.xrLabel58.StylePriority.UseFont          = false;
     this.xrLabel58.StylePriority.UseTextAlignment = false;
     this.xrLabel58.Text                           = "......";
     this.xrLabel58.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(801.3063F, 9.999974F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(123.4548F, 23.00002F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Số dư cuối tháng:";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // datePeriod
     //
     this.datePeriod.Description = "Parameter1";
     this.datePeriod.Name        = "datePeriod";
     this.datePeriod.Type        = typeof(System.DateTime);
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel11,
         this.xrLabel8,
         this.xrLabel7,
         this.xrPanel2,
         this.xrLabel13,
         this.xrLabel15
     });
     this.ReportHeader.HeightF = 220.8333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.yearPeriod, "Text", "")
     });
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(561.5836F, 157.534F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(63.54169F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // yearPeriod
     //
     this.yearPeriod.Description = "Parameter1";
     this.yearPeriod.Name        = "yearPeriod";
     this.yearPeriod.Type        = typeof(short);
     this.yearPeriod.ValueInfo   = "0";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.monthPeriod, "Text", "")
     });
     this.xrLabel10.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(477.4647F, 157.5338F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(28.62346F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "xrLabel10";
     //
     // monthPeriod
     //
     this.monthPeriod.Description = "Parameter1";
     this.monthPeriod.Name        = "monthPeriod";
     this.monthPeriod.Type        = typeof(short);
     this.monthPeriod.ValueInfo   = "0";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrPanel3,
         this.xrLabel14
     });
     this.ReportFooter.HeightF = 180.2083F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // S04b1_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(0, 0, 0, 18);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.beginBalance,
         this.endBalance,
         this.datePeriod,
         this.monthPeriod,
         this.yearPeriod
     });
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #14
0
ファイル: Mau09C-PL-TNCN.cs プロジェクト: ewin66/dev
 /// <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.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel69     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter1  = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable3      = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = 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)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.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.xrPanel1,
         this.xrLabel16,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel4,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel8,
         this.xrLabel9,
         this.xrLabel5,
         this.xrLabel69
     });
     this.GroupHeader1.HeightF = 488.9884F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel69
     //
     this.xrLabel69.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel69.LocationFloat                  = new DevExpress.Utils.PointFloat(600.3195F, 10.00001F);
     this.xrLabel69.Name                           = "xrLabel69";
     this.xrLabel69.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel69.SizeF                          = new System.Drawing.SizeF(167.8055F, 22.99998F);
     this.xrLabel69.StylePriority.UseFont          = false;
     this.xrLabel69.StylePriority.UseTextAlignment = false;
     this.xrLabel69.Text                           = "Mẫu số: 09C/PL-TNCN";
     this.xrLabel69.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(12.5F, 32.99999F);
     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(775.5F, 56.33335F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "PHỤ LỤC\r\nGIẢM TRỪ GIA CẢNH CHO NGƯỜI PHỤ THUỘC";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 112.8334F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(252.9425F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Tên người nộp thuế:";
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3175F, 112.8334F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "................................................................................." +
                                                    ".........";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 148.25F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(252.9425F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "Mã số thuế:";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3176F, 148.25F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 182.625F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(252.9426F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Họ và tên vợ (chồng) nếu có :";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 221.1667F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(252.9426F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Mã số thuế:";
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 255.5417F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(252.9426F, 23.00002F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "Số CMND/ Số hộ chiếu vợ (chồng) :";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3175F, 326.3749F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel12
     //
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 326.3749F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(252.9424F, 22.99997F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "Mã số thuế:";
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3175F, 255.5417F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(34.375F, 293.0417F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(252.9425F, 23.00006F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Tên đại lý thuế (nếu có):";
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3176F, 182.625F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "................................................................................." +
                                                    ".........";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3176F, 221.1667F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "................................................................................." +
                                                    ".........";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(287.3175F, 293.0417F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "................................................................................." +
                                                    ".........";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel16
     //
     this.xrLabel16.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(575.6826F, 376.4582F);
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(212.3174F, 22.99997F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "Đơn vị tiền: Đồng Việt Nam";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrLabel24,
         this.xrLabel18,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel17,
         this.xrLabel19,
         this.xrLabel23
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(10.00002F, 399.4582F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(778F, 89.53021F);
     //
     // xrLabel17
     //
     this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(45.20832F, 0F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(145.2082F, 63.33337F);
     this.xrLabel17.StylePriority.UseBorders       = false;
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Họ và tên";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel19
     //
     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("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(45.20831F, 63.33337F);
     this.xrLabel19.StylePriority.UseBorders       = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "STT";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel20.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(190.4166F, 0F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(86.90085F, 63.33337F);
     this.xrLabel20.StylePriority.UseBorders       = false;
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Ngày sinh";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel21.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(277.3176F, 0F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(88.44232F, 63.33337F);
     this.xrLabel21.StylePriority.UseBorders       = false;
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Mã số thuế";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel22
     //
     this.xrLabel22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(365.7599F, 0F);
     this.xrLabel22.Multiline                      = true;
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(86.90085F, 63.3334F);
     this.xrLabel22.StylePriority.UseBorders       = false;
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Số CMND/\r\nHộ chiếu";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel18
     //
     this.xrLabel18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(452.6608F, 0F);
     this.xrLabel18.Multiline                      = true;
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(86.90082F, 63.33337F);
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "Quan hệ \r\nvới ĐTNT";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel23
     //
     this.xrLabel23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel23.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(539.5616F, 0F);
     this.xrLabel23.Multiline                      = true;
     this.xrLabel23.Name                           = "xrLabel23";
     this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                          = new System.Drawing.SizeF(116.0674F, 63.33337F);
     this.xrLabel23.StylePriority.UseBorders       = false;
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text                           = "Số tháng được \r\ntính giảm trừ trong năm";
     this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel24
     //
     this.xrLabel24.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel24.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(655.6291F, 0F);
     this.xrLabel24.Multiline                      = true;
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(122.3708F, 63.3334F);
     this.xrLabel24.StylePriority.UseBorders       = false;
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text                           = "Thu nhập được \r\ngiảm trừ";
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 12F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 63.33337F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(777.9998F, 26.19687F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "[08]";
     this.xrTableCell1.Weight = 0.17432518092847205D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "[09]";
     this.xrTableCell2.Weight = 0.55992911918724375D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "[10]";
     this.xrTableCell3.Weight = 0.33509384745131121D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "[11]";
     this.xrTableCell4.Weight = 0.34103726440072957D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "[12]";
     this.xrTableCell5.Weight = 0.33509317080824524D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "[13]";
     this.xrTableCell6.Weight = 0.33509352874262066D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "[14]";
     this.xrTableCell7.Weight = 0.44756066987663523D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "[15]";
     this.xrTableCell8.Weight = 0.47186721860474234D;
     //
     // 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(10.00012F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(777.9999F, 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.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "1";
     this.xrTableCell9.Weight = 0.17432518092847205D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Weight = 0.55992911918724375D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Weight = 0.33509384745131121D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Weight = 0.34103726440072957D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Weight = 0.33509317080824524D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Weight = 0.33509352874262066D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "0";
     this.xrTableCell15.Weight = 0.44756066987663523D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "0";
     this.xrTableCell16.Weight = 0.47186721860474234D;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // xrTable3
     //
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(10.00012F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(777.9999F, 25F);
     this.xrTable3.StylePriority.UseBorders       = false;
     this.xrTable3.StylePriority.UseFont          = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell24
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name   = "xrTableCell22";
     this.xrTableCell22.Text   = "Tổng cộng";
     this.xrTableCell22.Weight = 2.0805721115186224D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.Name   = "xrTableCell23";
     this.xrTableCell23.Text   = "0";
     this.xrTableCell23.Weight = 0.44756066987663523D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Name   = "xrTableCell24";
     this.xrTableCell24.Text   = "0";
     this.xrTableCell24.Weight = 0.47186721860474234D;
     //
     // Mau09C_PL_TNCN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.Margins = new System.Drawing.Printing.Margins(23, 29, 100, 100);
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport2));
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     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 = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "ass_id";
     table1.Name                  = "rc_assessment";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "ass_parent";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "ass_projectID";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "ass_type";
     columnExpression4.Table      = table1;
     column4.Expression           = columnExpression4;
     columnExpression5.ColumnName = "ass_title";
     columnExpression5.Table      = table1;
     column5.Expression           = columnExpression5;
     columnExpression6.ColumnName = "ass_uniqueid";
     columnExpression6.Table      = table1;
     column6.Expression           = columnExpression6;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Name = "rc_assessment";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(3F, 3F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(319F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(328F, 3F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(319F, 23F);
     this.xrPageInfo2.StyleName        = "PageInfo";
     this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 60F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(3F, 3F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(644F, 26F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.Text          = "Report Title";
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 48F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 28F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.StyleName = "DetailCaption3";
     this.xrTableCell1.Text      = "ass id";
     this.xrTableCell1.Weight    = 0.10945273766150841D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.Text      = "ass parent";
     this.xrTableCell2.Weight    = 0.17661691518930289D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.Text      = "ass project ID";
     this.xrTableCell3.Weight    = 0.22636817345252405D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "DetailCaption3";
     this.xrTableCell4.Text      = "ass type";
     this.xrTableCell4.Weight    = 0.14427861140324519D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.Text      = "ass title";
     this.xrTableCell5.Weight    = 0.13930348322941707D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.Text      = "ass uniqueid";
     this.xrTableCell6.Weight    = 0.20398010253906251D;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // 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 = 11.5D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_id]")
     });
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailData3";
     this.xrTableCell7.Text      = "xrTableCell7";
     this.xrTableCell7.Weight    = 0.10945273766150841D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_parent]")
     });
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DetailData3";
     this.xrTableCell8.Text      = "xrTableCell8";
     this.xrTableCell8.Weight    = 0.17661691518930289D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_projectID]")
     });
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.StyleName = "DetailData3";
     this.xrTableCell9.Text      = "xrTableCell9";
     this.xrTableCell9.Weight    = 0.22636817345252405D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_type]")
     });
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.StyleName = "DetailData3";
     this.xrTableCell10.Text      = "xrTableCell10";
     this.xrTableCell10.Weight    = 0.14427861140324519D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_title]")
     });
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.StyleName = "DetailData3";
     this.xrTableCell11.Text      = "xrTableCell11";
     this.xrTableCell11.Weight    = 0.13930348322941707D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ass_uniqueid]")
     });
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailData3";
     this.xrTableCell12.Text      = "xrTableCell12";
     this.xrTableCell12.Weight    = 0.20398005558894231D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // XtraReport2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "rc_assessment";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #16
0
ファイル: Receipt - Copy.cs プロジェクト: kimykunjun/test
 /// <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();
 }
コード例 #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_ba_scorecard));
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1        = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1     = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell37   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel22       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageBreak1    = new DevExpress.XtraReports.UI.XRPageBreak();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageFooter      = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel8        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2     = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1     = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel2        = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader      = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel4        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.BA_Footer       = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.area_name_group = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel13       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14       = new DevExpress.XtraReports.UI.XRLabel();
     this.cat_name_group  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.BP_name_group   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel3        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25       = new DevExpress.XtraReports.UI.XRLabel();
     this.BP_Footer       = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrPanel1        = new DevExpress.XtraReports.UI.XRPanel();
     this.EnterpriseName  = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectID       = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName     = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor    = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).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.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("stan_standard", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
     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(798.4792F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell37
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(180)))));
     this.xrTableCell2.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Question]")
     });
     this.xrTableCell2.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell2.ForeColor = System.Drawing.Color.SteelBlue;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(8, 3, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseBackColor     = false;
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Data Management";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 5.0852257946286041D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[As-Is]")
     });
     this.xrTableCell3.Font    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name    = "xrTableCell3";
     this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 3, 100F);
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UsePadding       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "BP As-Is > DM> \"Level 1\", etc. ";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.4523871577497547D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell37.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[To-Be]")
     });
     this.xrTableCell37.Font    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell37.Name    = "xrTableCell37";
     this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 3, 100F);
     this.xrTableCell37.StylePriority.UseBorders       = false;
     this.xrTableCell37.StylePriority.UseFont          = false;
     this.xrTableCell37.StylePriority.UsePadding       = false;
     this.xrTableCell37.StylePriority.UseTextAlignment = false;
     this.xrTableCell37.Text          = "BP To-Be > DM> \"Level 1\", etc.";
     this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell37.Weight        = 1.4523867413477005D;
     //
     // xrLabel22
     //
     this.xrLabel22.BackColor = System.Drawing.Color.Gainsboro;
     this.xrLabel22.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BP Name]")
     });
     this.xrLabel22.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(85.41654F, 0F);
     this.xrLabel22.Name          = "xrLabel22";
     this.xrLabel22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel22.SizeF         = new System.Drawing.SizeF(713.5834F, 32.37502F);
     this.xrLabel22.StylePriority.UseBackColor     = false;
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UsePadding       = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text          = "Business Architecture Scorecard";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // TopMargin
     //
     this.TopMargin.Font    = new System.Drawing.Font("Segoe UI", 9.75F);
     this.TopMargin.HeightF = 26F;
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseFont = false;
     this.TopMargin.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 27F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel8,
         this.xrPageInfo2,
         this.xrLabel7,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 48.17708F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(610.9789F, 0F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(128.6458F, 35.50002F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "page";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel8.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 23.09373F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 25.08335F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Generated by ReadyCert® on:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(739.6248F, 0F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(180)))));
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BC Name]")
     });
     this.xrLabel2.Font          = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(798.4791F, 34.45835F);
     this.xrLabel2.StylePriority.UseBackColor     = false;
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text          = "Business Architecture Scorecard";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 46.2838F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EnterpriseName]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(399.8332F, 0F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(398.6458F, 46.2838F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Tribe Name Field";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Left;
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[ProjectName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI", 16F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(399.8332F, 46.28379F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UsePadding       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "PROJECT NAME FIELD";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel1.BeforePrint                   += new System.Drawing.Printing.PrintEventHandler(this.xrLabel1_BeforePrint);
     //
     // BA_Footer
     //
     this.BA_Footer.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1
     });
     this.BA_Footer.HeightF = 2F;
     this.BA_Footer.Level   = 2;
     this.BA_Footer.Name    = "BA_Footer";
     //
     // area_name_group
     //
     this.area_name_group.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel13,
         this.xrLabel14
     });
     this.area_name_group.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("BA Name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.area_name_group.HeightF = 38.79168F;
     this.area_name_group.Level   = 2;
     this.area_name_group.Name    = "area_name_group";
     //
     // xrLabel13
     //
     this.xrLabel13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(180)))), ((int)(((byte)(255)))));
     this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BA Name]")
     });
     this.xrLabel13.Font          = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(52.08321F, 0F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(746.396F, 38.79168F);
     this.xrLabel13.StylePriority.UseBackColor     = false;
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text          = "Business Area Name";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(180)))), ((int)(((byte)(255)))));
     this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BA ID]")
     });
     this.xrLabel14.Font          = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(4, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(52.08321F, 38.79166F);
     this.xrLabel14.StylePriority.UseBackColor     = false;
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UsePadding       = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text          = "BA ID";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // cat_name_group
     //
     this.cat_name_group.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2
     });
     this.cat_name_group.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cat_name_group.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("BC Name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.cat_name_group.HeightF = 34.45835F;
     this.cat_name_group.Level   = 1;
     this.cat_name_group.Name    = "cat_name_group";
     this.cat_name_group.StylePriority.UseFont = false;
     //
     // BP_name_group
     //
     this.BP_name_group.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel24,
         this.xrLabel23,
         this.xrLabel19,
         this.xrLabel25,
         this.xrLabel22
     });
     this.BP_name_group.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("BP Name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.BP_name_group.HeightF = 107.1667F;
     this.BP_name_group.Name    = "BP_name_group";
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor = System.Drawing.Color.Gainsboro;
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[BP ID]")
     });
     this.xrLabel3.Font          = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(85.41654F, 32.37502F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UsePadding       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "Business Architecture Scorecard";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel24.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(653.3351F, 62.6667F);
     this.xrLabel24.Multiline     = true;
     this.xrLabel24.Name          = "xrLabel24";
     this.xrLabel24.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF         = new System.Drawing.SizeF(145.6649F, 44.5F);
     this.xrLabel24.StylePriority.UseBackColor     = false;
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text          = "To-Be Level of \r\nStandard Area";
     this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel23
     //
     this.xrLabel23.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel23.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(508.1911F, 62.6667F);
     this.xrLabel23.Multiline     = true;
     this.xrLabel23.Name          = "xrLabel23";
     this.xrLabel23.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF         = new System.Drawing.SizeF(145.144F, 44.5F);
     this.xrLabel23.StylePriority.UseBackColor     = false;
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text          = "As-Is Level of \r\nStandard Area";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel19.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 62.6667F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(508.1912F, 44.5F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Standard Area";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel25
     //
     this.xrLabel25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel25.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Card Name]")
     });
     this.xrLabel25.Font          = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0F, 32.37502F);
     this.xrLabel25.Name          = "xrLabel25";
     this.xrLabel25.Padding       = new DevExpress.XtraPrinting.PaddingInfo(10, 2, 0, 0, 100F);
     this.xrLabel25.SizeF         = new System.Drawing.SizeF(798.479F, 30.29167F);
     this.xrLabel25.StylePriority.UseBackColor     = false;
     this.xrLabel25.StylePriority.UseFont          = false;
     this.xrLabel25.StylePriority.UsePadding       = false;
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     this.xrLabel25.Text          = "Business Architecture Scorecard";
     this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // BP_Footer
     //
     this.BP_Footer.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.BP_Footer.HeightF = 51.45836F;
     this.BP_Footer.Name    = "BP_Footer";
     //
     // xrPanel1
     //
     this.xrPanel1.BackColor     = System.Drawing.Color.White;
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(798.4791F, 51.45836F);
     this.xrPanel1.StylePriority.UseBackColor = false;
     //
     // EnterpriseName
     //
     this.EnterpriseName.Description = "EnterpriseName";
     this.EnterpriseName.Name        = "EnterpriseName";
     this.EnterpriseName.Visible     = false;
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "OhioDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "ProjectID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.ProjectID]", typeof(System.Guid));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // rep_pro_ba_scorecard
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.PageHeader,
         this.BA_Footer,
         this.area_name_group,
         this.cat_name_group,
         this.BP_name_group,
         this.BP_Footer
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Query";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins    = new System.Drawing.Printing.Margins(28, 23, 26, 27);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.EnterpriseName,
         this.ProjectID,
         this.ProjectName,
         this.ProjectColor
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #18
0
ファイル: S04a7_DN.cs プロジェクト: ewin66/dev
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     this.pccData      = new DevExpress.XtraReports.UI.PrintableComponentContainer();
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel88    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel87    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel92    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel90    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel89    = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel91    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel5     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel63    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel76    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel77    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel78    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel79    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel80    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel81    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel82    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel83    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel84    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel85    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel86    = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel10    = new DevExpress.XtraReports.UI.XRLabel();
     this.datePeriod   = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel8     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14    = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel2     = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel1     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6     = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pccData
     });
     this.Detail.HeightF       = 79.16705F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pccData
     //
     this.pccData.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.pccData.Name          = "pccData";
     this.pccData.SizeF         = new System.Drawing.SizeF(1074F, 78.125F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 20.83333F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel88
     //
     this.xrLabel88.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel88.LocationFloat                  = new DevExpress.Utils.PointFloat(316.8061F, 10F);
     this.xrLabel88.Name                           = "xrLabel88";
     this.xrLabel88.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel88.SizeF                          = new System.Drawing.SizeF(44.51471F, 23F);
     this.xrLabel88.StylePriority.UseFont          = false;
     this.xrLabel88.StylePriority.UseTextAlignment = false;
     this.xrLabel88.Text                           = "........";
     this.xrLabel88.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel87
     //
     this.xrLabel87.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel87.LocationFloat                  = new DevExpress.Utils.PointFloat(411.6497F, 10F);
     this.xrLabel87.Name                           = "xrLabel87";
     this.xrLabel87.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel87.SizeF                          = new System.Drawing.SizeF(36.24554F, 23F);
     this.xrLabel87.StylePriority.UseFont          = false;
     this.xrLabel87.StylePriority.UseTextAlignment = false;
     this.xrLabel87.Text                           = "........";
     this.xrLabel87.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel92
     //
     this.xrLabel92.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel92.LocationFloat                  = new DevExpress.Utils.PointFloat(361.3208F, 10F);
     this.xrLabel92.Name                           = "xrLabel92";
     this.xrLabel92.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel92.SizeF                          = new System.Drawing.SizeF(50.32892F, 22.99998F);
     this.xrLabel92.StylePriority.UseFont          = false;
     this.xrLabel92.StylePriority.UseTextAlignment = false;
     this.xrLabel92.Text                           = "năm";
     this.xrLabel92.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel90
     //
     this.xrLabel90.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel90.LocationFloat                  = new DevExpress.Utils.PointFloat(224.1299F, 10F);
     this.xrLabel90.Name                           = "xrLabel90";
     this.xrLabel90.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel90.SizeF                          = new System.Drawing.SizeF(50.61674F, 23F);
     this.xrLabel90.StylePriority.UseFont          = false;
     this.xrLabel90.StylePriority.UseTextAlignment = false;
     this.xrLabel90.Text                           = "......";
     this.xrLabel90.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel89
     //
     this.xrLabel89.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel89.LocationFloat                  = new DevExpress.Utils.PointFloat(274.7466F, 10F);
     this.xrLabel89.Name                           = "xrLabel89";
     this.xrLabel89.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel89.SizeF                          = new System.Drawing.SizeF(42.05948F, 23F);
     this.xrLabel89.StylePriority.UseFont          = false;
     this.xrLabel89.StylePriority.UseTextAlignment = false;
     this.xrLabel89.Text                           = "tháng";
     this.xrLabel89.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel91,
         this.xrPanel5,
         this.xrLabel90,
         this.xrLabel89,
         this.xrLabel92,
         this.xrLabel87,
         this.xrLabel88
     });
     this.ReportFooter.HeightF = 141.6667F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLabel91
     //
     this.xrLabel91.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel91.LocationFloat                  = new DevExpress.Utils.PointFloat(87.3166F, 9.999996F);
     this.xrLabel91.Name                           = "xrLabel91";
     this.xrLabel91.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel91.SizeF                          = new System.Drawing.SizeF(136.8133F, 23F);
     this.xrLabel91.StylePriority.UseFont          = false;
     this.xrLabel91.StylePriority.UseTextAlignment = false;
     this.xrLabel91.Text                           = "Đã ghi Sổ Cái ngày";
     this.xrLabel91.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPanel5
     //
     this.xrPanel5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel63,
         this.xrLabel76,
         this.xrLabel77,
         this.xrLabel78,
         this.xrLabel79,
         this.xrLabel80,
         this.xrLabel81,
         this.xrLabel82,
         this.xrLabel83,
         this.xrLabel84,
         this.xrLabel85,
         this.xrLabel86
     });
     this.xrPanel5.LocationFloat = new DevExpress.Utils.PointFloat(51.99069F, 33.00003F);
     this.xrPanel5.Name          = "xrPanel5";
     this.xrPanel5.SizeF         = new System.Drawing.SizeF(970.0186F, 97.18417F);
     //
     // xrLabel63
     //
     this.xrLabel63.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel63.LocationFloat                  = new DevExpress.Utils.PointFloat(678.1173F, 10F);
     this.xrLabel63.Name                           = "xrLabel63";
     this.xrLabel63.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel63.SizeF                          = new System.Drawing.SizeF(46.06677F, 22.99999F);
     this.xrLabel63.StylePriority.UseFont          = false;
     this.xrLabel63.StylePriority.UseTextAlignment = false;
     this.xrLabel63.Text                           = "Ngày";
     this.xrLabel63.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel76
     //
     this.xrLabel76.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel76.LocationFloat                  = new DevExpress.Utils.PointFloat(16.99219F, 32.99971F);
     this.xrLabel76.Name                           = "xrLabel76";
     this.xrLabel76.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel76.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel76.StylePriority.UseFont          = false;
     this.xrLabel76.StylePriority.UseTextAlignment = false;
     this.xrLabel76.Text                           = "Người ghi sổ";
     this.xrLabel76.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel77
     //
     this.xrLabel77.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel77.LocationFloat                  = new DevExpress.Utils.PointFloat(16.99219F, 56.00004F);
     this.xrLabel77.Name                           = "xrLabel77";
     this.xrLabel77.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel77.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel77.StylePriority.UseFont          = false;
     this.xrLabel77.StylePriority.UseTextAlignment = false;
     this.xrLabel77.Text                           = "(Ký, họ tên)";
     this.xrLabel77.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel78
     //
     this.xrLabel78.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel78.LocationFloat                  = new DevExpress.Utils.PointFloat(367.8441F, 55.99985F);
     this.xrLabel78.Name                           = "xrLabel78";
     this.xrLabel78.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel78.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel78.StylePriority.UseFont          = false;
     this.xrLabel78.StylePriority.UseTextAlignment = false;
     this.xrLabel78.Text                           = "(Ký, họ tên)";
     this.xrLabel78.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel79
     //
     this.xrLabel79.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel79.LocationFloat                  = new DevExpress.Utils.PointFloat(367.8441F, 32.99977F);
     this.xrLabel79.Name                           = "xrLabel79";
     this.xrLabel79.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel79.SizeF                          = new System.Drawing.SizeF(155.147F, 23F);
     this.xrLabel79.StylePriority.UseFont          = false;
     this.xrLabel79.StylePriority.UseTextAlignment = false;
     this.xrLabel79.Text                           = "Kế toán tổng hợp";
     this.xrLabel79.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel80
     //
     this.xrLabel80.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel80.LocationFloat                  = new DevExpress.Utils.PointFloat(735.7435F, 32.99998F);
     this.xrLabel80.Name                           = "xrLabel80";
     this.xrLabel80.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel80.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00001F);
     this.xrLabel80.StylePriority.UseFont          = false;
     this.xrLabel80.StylePriority.UseTextAlignment = false;
     this.xrLabel80.Text                           = "Kế toán trưởng";
     this.xrLabel80.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel81
     //
     this.xrLabel81.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel81.LocationFloat                  = new DevExpress.Utils.PointFloat(735.7435F, 55.99999F);
     this.xrLabel81.Name                           = "xrLabel81";
     this.xrLabel81.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel81.SizeF                          = new System.Drawing.SizeF(159.5272F, 23.00002F);
     this.xrLabel81.StylePriority.UseFont          = false;
     this.xrLabel81.StylePriority.UseTextAlignment = false;
     this.xrLabel81.Text                           = "(Ký, họ tên)";
     this.xrLabel81.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel82
     //
     this.xrLabel82.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel82.LocationFloat                  = new DevExpress.Utils.PointFloat(814.1173F, 10F);
     this.xrLabel82.Name                           = "xrLabel82";
     this.xrLabel82.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel82.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel82.StylePriority.UseFont          = false;
     this.xrLabel82.StylePriority.UseTextAlignment = false;
     this.xrLabel82.Text                           = "........";
     this.xrLabel82.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel83
     //
     this.xrLabel83.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel83.LocationFloat                  = new DevExpress.Utils.PointFloat(898.2365F, 10F);
     this.xrLabel83.Name                           = "xrLabel83";
     this.xrLabel83.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel83.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel83.StylePriority.UseFont          = false;
     this.xrLabel83.StylePriority.UseTextAlignment = false;
     this.xrLabel83.Text                           = "........";
     this.xrLabel83.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel84
     //
     this.xrLabel84.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel84.LocationFloat                  = new DevExpress.Utils.PointFloat(861.9909F, 10F);
     this.xrLabel84.Name                           = "xrLabel84";
     this.xrLabel84.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel84.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel84.StylePriority.UseFont          = false;
     this.xrLabel84.StylePriority.UseTextAlignment = false;
     this.xrLabel84.Text                           = "năm";
     this.xrLabel84.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel85
     //
     this.xrLabel85.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel85.LocationFloat                  = new DevExpress.Utils.PointFloat(766.2439F, 9.999962F);
     this.xrLabel85.Name                           = "xrLabel85";
     this.xrLabel85.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel85.SizeF                          = new System.Drawing.SizeF(47.87347F, 22.99999F);
     this.xrLabel85.StylePriority.UseFont          = false;
     this.xrLabel85.StylePriority.UseTextAlignment = false;
     this.xrLabel85.Text                           = "tháng";
     this.xrLabel85.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel86
     //
     this.xrLabel86.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel86.LocationFloat                  = new DevExpress.Utils.PointFloat(724.1843F, 9.999962F);
     this.xrLabel86.Name                           = "xrLabel86";
     this.xrLabel86.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel86.SizeF                          = new System.Drawing.SizeF(42.05951F, 22.99999F);
     this.xrLabel86.StylePriority.UseFont          = false;
     this.xrLabel86.StylePriority.UseTextAlignment = false;
     this.xrLabel86.Text                           = "......";
     this.xrLabel86.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel9,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel7,
         this.xrPanel2
     });
     this.ReportHeader.HeightF = 215.625F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.datePeriod, "Text", "{0:yyyy}")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(579.7263F, 185.5066F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(36.41501F, 23F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel8";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // datePeriod
     //
     this.datePeriod.Description = "Parameter1";
     this.datePeriod.Name        = "datePeriod";
     this.datePeriod.Type        = typeof(System.DateTime);
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.datePeriod, "Text", "{0:MM}")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(495.6074F, 185.625F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(36.41501F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(194.4827F, 136.5066F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(678.0366F, 23.00003F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Phần I: TẬP HỢP CHI PHÍ SẢN XUẤT, KINH DOANH TOÀN DOANH NGHIỆP";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(208.5397F, 104.5168F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(652.5291F, 31.98972F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "NHẬT KÝ CHỨNG TỪ SỐ 7";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(447.7339F, 185.5066F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(47.87347F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Tháng";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(543.4807F, 185.5066F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(36.24561F, 22.99998F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "năm";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(162.5F, 160.5F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(754.1512F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Ghi Có các TK: 142, 152, 153, 154, 214, 241, 242, 334, 335, 621, 622, 627";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(13.16695F, 10.00001F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(1050.833F, 72.11725F);
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 7.117249F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 7.117249F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = ".........................";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(13.08144F, 39.11728F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60.18835F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Địa chỉ:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(73.26978F, 39.11728F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(119.2637F, 23F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = ".........................";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 7.117249F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(234.2751F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Mẫu số S04a7-DN";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 10F);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(737.7248F, 30.11721F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(234.2751F, 32.00002F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Ban hành theo QĐ số 15/2006/QĐ-BTC \r\nngày 20/03/2006 của Bộ trưởng BTC)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // S04a7_DN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportFooter,
         this.ReportHeader
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 15, 0, 21);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.datePeriod
     });
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_ia_scorecard));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell37  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPageBreak1   = new DevExpress.XtraReports.UI.XRPageBreak();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupHeader3   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Card           = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.spacer         = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.ProjectID      = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName    = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor   = new DevExpress.XtraReports.Parameters.Parameter();
     this.EnterpriseName = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "rc_scorecards_scores_1";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.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;
     //
     // 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(799.0001F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell37
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(180)))));
     this.xrTableCell2.Borders   = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[stan_standard]")
     });
     this.xrTableCell2.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell2.ForeColor = System.Drawing.Color.SteelBlue;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(8, 3, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseBackColor     = false;
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Data Management";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 4.3764312880001137D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[score_col1]")
     });
     this.xrTableCell3.Font    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name    = "xrTableCell3";
     this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 3, 100F);
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UsePadding       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "BP As-Is > DM> \"Level 1\", etc. ";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.8067834949395329D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell37.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[score_col2]")
     });
     this.xrTableCell37.Font    = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell37.Name    = "xrTableCell37";
     this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 3, 100F);
     this.xrTableCell37.StylePriority.UseBorders       = false;
     this.xrTableCell37.StylePriority.UseFont          = false;
     this.xrTableCell37.StylePriority.UsePadding       = false;
     this.xrTableCell37.StylePriority.UseTextAlignment = false;
     this.xrTableCell37.Text          = "BP To-Be > DM> \"Level 1\", etc.";
     this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell37.Weight        = 1.8368992002624653D;
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 23F;
     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       = 26F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrLabel7,
         this.xrPageInfo2,
         this.xrLabel8
     });
     this.PageFooter.HeightF = 48.17708F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(740.1458F, 0F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Generated by ReadyCert® on:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 23.09373F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 25.08335F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(611.5F, 0F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(128.6458F, 35.50002F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "page";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel8.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 40F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[ProjectName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Segoe UI", 16F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(399.0002F, 39.99999F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UsePadding       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "PROJECT NAME FIELD";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1
     });
     this.GroupFooter2.HeightF = 12.5F;
     this.GroupFooter2.Level   = 1;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel3
     });
     this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("card_name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader3.HeightF = 67.50002F;
     this.GroupHeader3.Name    = "GroupHeader3";
     //
     // xrLabel6
     //
     this.xrLabel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[card_name]")
     });
     this.xrLabel6.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     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(799.0002F, 23F);
     this.xrLabel6.StylePriority.UseBackColor     = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "Information Architecture Scorecard";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel9.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(435.9999F, 22.99999F);
     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(180F, 44.5F);
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "As-Is Level of \r\nStandard Area";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel10.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(616F, 23.00002F);
     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(183F, 44.5F);
     this.xrLabel10.StylePriority.UseBackColor     = false;
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "To-Be Level of \r\nStandard Area";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(205)))), ((int)(((byte)(0)))));
     this.xrLabel3.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 23.00002F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(435.9998F, 44.5F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "Standard Area";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(180)))), ((int)(((byte)(255)))));
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_name]")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(85.41676F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(713.5834F, 38.79168F);
     this.xrLabel4.StylePriority.UseBackColor     = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "Business Area Name";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(180)))), ((int)(((byte)(255)))));
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_identifier]")
     });
     this.xrLabel5.Font          = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0.000222524F, 3.178914E-05F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(85.41654F, 38.79166F);
     this.xrLabel5.StylePriority.UseBackColor     = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "BA ID";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("area_name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF         = 38.79169F;
     this.GroupHeader2.Level           = 1;
     this.GroupHeader2.Name            = "GroupHeader2";
     this.GroupHeader2.RepeatEveryPage = true;
     //
     // Card
     //
     this.Card.Description = "Select Scorecards";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "rc_scorecards_scores_1";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "card_name";
     dynamicListLookUpSettings1.ValueMember   = "card_name";
     this.Card.LookUpSettings = dynamicListLookUpSettings1;
     this.Card.MultiValue     = true;
     this.Card.Name           = "Card";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.spacer
     });
     this.GroupFooter1.HeightF = 27.08333F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // spacer
     //
     this.spacer.BackColor     = System.Drawing.Color.White;
     this.spacer.LocationFloat = new DevExpress.Utils.PointFloat(0.000222524F, 0F);
     this.spacer.Name          = "spacer";
     this.spacer.SizeF         = new System.Drawing.SizeF(798.9998F, 27.08333F);
     this.spacer.StylePriority.UseBackColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EnterpriseName]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(399.0002F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(399.9998F, 40F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Tribe Name";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // EnterpriseName
     //
     this.EnterpriseName.Description = "EnterpriseName";
     this.EnterpriseName.Name        = "EnterpriseName";
     this.EnterpriseName.Visible     = false;
     //
     // rep_pro_ia_scorecard
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.PageHeader,
         this.GroupHeader2,
         this.GroupFooter2,
         this.GroupHeader3,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "rc_scorecards_scores_1";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[pro_ID] In (?ProjectID) And [card_name] In (?Card)";
     this.Font         = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins      = new System.Drawing.Printing.Margins(26, 25, 23, 26);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Card,
         this.ProjectID,
         this.ProjectName,
         this.ProjectColor,
         this.EnterpriseName
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1    = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
     DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo  efStoredProcedureInfo1     = new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter1               = new DevExpress.DataAccess.EntityFramework.EFParameter();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter2               = new DevExpress.DataAccess.EntityFramework.EFParameter();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter3               = new DevExpress.DataAccess.EntityFramework.EFParameter();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter4               = new DevExpress.DataAccess.EntityFramework.EFParameter();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings  dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings  dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.efDataSource1            = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     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.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StandardTest             = new DevExpress.XtraReports.Parameters.Parameter();
     this.Recipe                   = new DevExpress.XtraReports.Parameters.Parameter();
     this.StartDate                = new DevExpress.XtraReports.Parameters.Parameter();
     this.EndDate                  = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // efDataSource1
     //
     efConnectionParameters1.ConnectionString     = "";
     efConnectionParameters1.ConnectionStringName = "HovisMillingPortalEntities";
     efConnectionParameters1.Source          = typeof(HovisMillingPortal.Models.HovisMillingPortalEntities);
     this.efDataSource1.ConnectionParameters = efConnectionParameters1;
     this.efDataSource1.Name     = "efDataSource1";
     efStoredProcedureInfo1.Name = "usp_Milling_UMQC_Results_By_Recipe_and_Standard";
     efParameter1.Name           = "resultmasterstdrRecid";
     efParameter1.Type           = typeof(DevExpress.DataAccess.Expression);
     efParameter1.Value          = new DevExpress.DataAccess.Expression("[Parameters.StandardTest]", typeof(long));
     efParameter2.Name           = "resultproductrecid";
     efParameter2.Type           = typeof(DevExpress.DataAccess.Expression);
     efParameter2.Value          = new DevExpress.DataAccess.Expression("[Parameters.Recipe]", typeof(long));
     efParameter3.Name           = "startdate";
     efParameter3.Type           = typeof(DevExpress.DataAccess.Expression);
     efParameter3.Value          = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     efParameter4.Name           = "enddate";
     efParameter4.Type           = typeof(DevExpress.DataAccess.Expression);
     efParameter4.Value          = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     efStoredProcedureInfo1.Parameters.AddRange(new DevExpress.DataAccess.EntityFramework.EFParameter[] {
         efParameter1,
         efParameter2,
         efParameter3,
         efParameter4
     });
     this.efDataSource1.StoredProcedures.AddRange(new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo[] {
         efStoredProcedureInfo1
     });
     //
     // 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.525879E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1069F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell1,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultCreationDate]")
     });
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.StyleName = "DetailData3";
     this.xrTableCell10.Text      = "xrTableCell10";
     this.xrTableCell10.Weight    = 0.14894738052880274D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[RecipeDesc]")
     });
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailData3";
     this.xrTableCell12.Text      = "xrTableCell12";
     this.xrTableCell12.Weight    = 0.22000002347506009D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultMinScore]")
     });
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.StyleName = "DetailData3";
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "xrTableCell13";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell13.Weight        = 0.1115789560171274D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultTargetScore]")
     });
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StyleName = "DetailData3";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "xrTableCell14";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell14.Weight        = 0.12842106745793269D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultMaxScore]")
     });
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.StyleName = "DetailData3";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "xrTableCell15";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell15.Weight        = 0.11473685631385217D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultActualScore]")
     });
     this.xrTableCell16.Name      = "xrTableCell16";
     this.xrTableCell16.StyleName = "DetailData3";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text          = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell16.Weight        = 0.12736825796274037D;
     //
     // 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.xrPageInfo1,
         this.xrPageInfo2
     });
     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;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6.00001F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(738F, 23F);
     this.xrPageInfo2.StyleName        = "PageInfo";
     this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 60F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Tahoma", 9F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(878.7917F, 32F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(67.11969F, 26F);
     this.xrLabel5.StyleName                      = "Title";
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "and";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                  = new System.Drawing.Font("Tahoma", 9F);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(692.922F, 32F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(85.86969F, 26F);
     this.xrLabel4.StyleName             = "Title";
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Between";
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EndDate]")
     });
     this.xrLabel3.Font                  = new System.Drawing.Font("Tahoma", 9F);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(958.9999F, 32F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "xrLabel3";
     this.xrLabel3.TextFormatString      = "{0:dd/MM/yyyy}";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[StartDate]")
     });
     this.xrLabel2.Font                  = new System.Drawing.Font("Tahoma", 9F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(778.7917F, 32F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "xrLabel2";
     this.xrLabel2.TextFormatString      = "{0:dd/MM/yyyy}";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(638F, 26F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.Text          = "Standard Test Results for Product";
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 48F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(1069F, 48F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1069F, 28F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.Text      = "Test Name";
     this.xrTableCell2.Weight    = 0.14894737243652345D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "DetailCaption3";
     this.xrTableCell4.Text      = "Recipe Desc";
     this.xrTableCell4.Weight    = 0.220000005868765D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Min Score";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.11157894427959736D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Target Score";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell6.Weight        = 0.12842105572040263D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Maximum Score";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell7.Weight        = 0.11473684457632212D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "Actual Score";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell8.Weight        = 0.12736832838792067D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // StandardTest
     //
     this.StandardTest.Description            = "Standard Test";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "t_Milling_UMQC_Results_Standards_Master";
     dynamicListLookUpSettings1.DataSource    = this.efDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "ResultStdDescription";
     dynamicListLookUpSettings1.ValueMember   = "ResultStdRecid";
     this.StandardTest.LookUpSettings         = dynamicListLookUpSettings1;
     this.StandardTest.Name      = "StandardTest";
     this.StandardTest.Type      = typeof(long);
     this.StandardTest.ValueInfo = "0";
     //
     // Recipe
     //
     this.Recipe.Description = "Recipe";
     dynamicListLookUpSettings2.DataAdapter   = null;
     dynamicListLookUpSettings2.DataMember    = "t_Milling_UMQC_Products_Master";
     dynamicListLookUpSettings2.DataSource    = this.efDataSource1;
     dynamicListLookUpSettings2.DisplayMember = "RecipeDesc";
     dynamicListLookUpSettings2.ValueMember   = "ProductMasterRecid";
     this.Recipe.LookUpSettings = dynamicListLookUpSettings2;
     this.Recipe.Name           = "Recipe";
     this.Recipe.Type           = typeof(long);
     this.Recipe.ValueInfo      = "0";
     //
     // StartDate
     //
     this.StartDate.Description = "Start Date";
     this.StartDate.Name        = "StartDate";
     this.StartDate.Type        = typeof(System.DateTime);
     this.StartDate.ValueInfo   = "12/21/2017 14:11:45";
     //
     // EndDate
     //
     this.EndDate.Description = "End Date";
     this.EndDate.Name        = "EndDate";
     this.EndDate.Type        = typeof(System.DateTime);
     this.EndDate.ValueInfo   = "12/21/2017 14:11:59";
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResultStdDescription]")
     });
     this.xrTableCell1.Font    = new System.Drawing.Font("Tahoma", 8F);
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "xrTableCell1";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight        = 0.14894738052880274D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell3.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseForeColor     = false;
     this.xrTableCell3.StylePriority.UsePadding       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Creation Date";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight        = 0.14894737243652345D;
     //
     // ProductStandardMinMaxReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.efDataSource1
     });
     this.DataMember = "usp_Milling_UMQC_Results_By_Recipe_and_Standard";
     this.DataSource = this.efDataSource1;
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.StandardTest,
         this.Recipe,
         this.StartDate,
         this.EndDate
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.objectDataSource1        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPanel2                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo3              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPictureBox2            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.RigName                  = new DevExpress.XtraReports.Parameters.Parameter();
     this.LogoFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     this.IrmaFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(750.0001F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell10.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Multiline             = true;
     this.xrTableCell10.Name                  = "xrTableCell10";
     this.xrTableCell10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell10.StyleName             = "DetailData3";
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.TextFormatString      = "{0:dd-MMM-yyyy}";
     this.xrTableCell10.Weight                = 0.0698558572622446D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell11.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell11.Multiline             = true;
     this.xrTableCell11.Name                  = "xrTableCell11";
     this.xrTableCell11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.StyleName             = "DetailData3";
     this.xrTableCell11.StylePriority.UseFont = false;
     this.xrTableCell11.TextFormatString      = "{0:hh:mm tt}";
     this.xrTableCell11.Weight                = 0.085705305479353164D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrTableCell12.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Multiline             = true;
     this.xrTableCell12.Name                  = "xrTableCell12";
     this.xrTableCell12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell12.StyleName             = "DetailData3";
     this.xrTableCell12.StylePriority.UseFont = false;
     this.xrTableCell12.Text                  = "xrTableCell12";
     this.xrTableCell12.Weight                = 0.16460197348076663D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Company]")
     });
     this.xrTableCell13.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell13.Multiline             = true;
     this.xrTableCell13.Name                  = "xrTableCell13";
     this.xrTableCell13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StyleName             = "DetailData3";
     this.xrTableCell13.StylePriority.UseFont = false;
     this.xrTableCell13.Weight                = 0.14654809315193007D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Nationality]")
     });
     this.xrTableCell14.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell14.Multiline             = true;
     this.xrTableCell14.Name                  = "xrTableCell14";
     this.xrTableCell14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell14.StyleName             = "DetailData3";
     this.xrTableCell14.StylePriority.UseFont = false;
     this.xrTableCell14.Weight                = 0.11673322584672233D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Font                  = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.Multiline             = true;
     this.xrTableCell15.Name                  = "xrTableCell15";
     this.xrTableCell15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell15.StyleName             = "DetailData3";
     this.xrTableCell15.StylePriority.UseFont = false;
     this.xrTableCell15.Weight                = 0.10030998081155479D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell16.Multiline                      = true;
     this.xrTableCell16.Name                           = "xrTableCell16";
     this.xrTableCell16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell16.StyleName                      = "DetailData3";
     this.xrTableCell16.StylePriority.UseFont          = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight                         = 0.087329103399421237D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell17.Multiline                      = true;
     this.xrTableCell17.Name                           = "xrTableCell17";
     this.xrTableCell17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell17.StyleName                      = "DetailData3";
     this.xrTableCell17.StylePriority.UseFont          = false;
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell17.Weight                         = 0.10121051968343003D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell18.Multiline                      = true;
     this.xrTableCell18.Name                           = "xrTableCell18";
     this.xrTableCell18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell18.StyleName                      = "DetailData3";
     this.xrTableCell18.StylePriority.UseFont          = false;
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell18.Weight                         = 0.12770599370346239D;
     //
     // 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.xrPageInfo1,
         this.xrPageInfo2
     });
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(437F, 5.999986F);
     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;
     this.xrPageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Ensco.Irma.Models.PobDepartureLogModel);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2
     });
     this.reportHeaderBand1.HeightF = 73.58494F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrPanel2
     //
     this.xrPanel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel9,
         this.xrLabel1,
         this.xrPageInfo3,
         this.xrPictureBox2
     });
     this.xrPanel2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel2.Name                     = "xrPanel2";
     this.xrPanel2.SizeF                    = new System.Drawing.SizeF(750F, 64.62264F);
     this.xrPanel2.StylePriority.UseBorders = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox1.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\ensco.png";
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(10F, 4.830155F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(128.1132F, 55.0755F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     this.xrPictureBox1.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox1_BeforePrint);
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(109)))), ((int)(((byte)(31)))));
     this.xrLabel9.Font          = new System.Drawing.Font("Arial", 14.26415F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.ForeColor     = System.Drawing.Color.White;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(138.1132F, 4.830154F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(468.0671F, 25.55338F);
     this.xrLabel9.StyleName     = "Title";
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseForeColor     = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "PoB Departure Log";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[RigName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(138.1132F, 31.01884F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(242.1887F, 28.88681F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold);
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(449.0566F, 31.01884F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(157.1237F, 28.88681F);
     this.xrPageInfo3.StylePriority.UseBorders       = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo3.TextFormatString               = "{0:dd-MMM-yyyy}";
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox2.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\irma.png";
     this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(606.1803F, 4.830155F);
     this.xrPictureBox2.Name                     = "xrPictureBox2";
     this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(135.8197F, 55.0755F);
     this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox2.StylePriority.UseBorders = false;
     this.xrPictureBox2.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox2_BeforePrint);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 64.98114F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(750.0001F, 64.98114F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(750.0001F, 54.98113F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell1.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor = System.Drawing.Color.White;
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.StyleName = "DetailCaption3";
     this.xrTableCell1.StylePriority.UseBackColor = false;
     this.xrTableCell1.StylePriority.UseFont      = false;
     this.xrTableCell1.StylePriority.UseForeColor = false;
     this.xrTableCell1.Text   = "Date";
     this.xrTableCell1.Weight = 0.076597197770399653D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell2.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor = System.Drawing.Color.White;
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.StylePriority.UseBackColor = false;
     this.xrTableCell2.StylePriority.UseFont      = false;
     this.xrTableCell2.StylePriority.UseForeColor = false;
     this.xrTableCell2.Text   = "Time";
     this.xrTableCell2.Weight = 0.093976303816514409D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell3.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell3.ForeColor = System.Drawing.Color.White;
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.StylePriority.UseBackColor = false;
     this.xrTableCell3.StylePriority.UseFont      = false;
     this.xrTableCell3.StylePriority.UseForeColor = false;
     this.xrTableCell3.Text   = "Name";
     this.xrTableCell3.Weight = 0.1625565766535953D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell5.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.ForeColor = System.Drawing.Color.White;
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.StylePriority.UseBackColor = false;
     this.xrTableCell5.StylePriority.UseFont      = false;
     this.xrTableCell5.StylePriority.UseForeColor = false;
     this.xrTableCell5.Text   = "Company";
     this.xrTableCell5.Weight = 0.15655265393431869D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell6.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.ForeColor = System.Drawing.Color.White;
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.StylePriority.UseBackColor = false;
     this.xrTableCell6.StylePriority.UseFont      = false;
     this.xrTableCell6.StylePriority.UseForeColor = false;
     this.xrTableCell6.Text   = "Nationality";
     this.xrTableCell6.Weight = 0.13351552052701696D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell7.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.ForeColor = System.Drawing.Color.White;
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseBackColor     = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Incident or sustained an injury while on rig? (Y/N)";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 0.12654132159551287D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell8.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell8.ForeColor = System.Drawing.Color.White;
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.StylePriority.UseBackColor     = false;
     this.xrTableCell8.StylePriority.UseFont          = false;
     this.xrTableCell8.StylePriority.UseForeColor     = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "Incident Reported (Y/N)";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.095756629535082474D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell9.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell9.ForeColor = System.Drawing.Color.White;
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.StyleName = "DetailCaption3";
     this.xrTableCell9.StylePriority.UseBackColor     = false;
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UseForeColor     = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "Helicoptor Briefing (Y/N)";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.11097775997840696D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell4.Font      = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.ForeColor = System.Drawing.Color.White;
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UseBackColor     = false;
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UseForeColor     = false;
     this.xrTableCell4.StylePriority.UsePadding       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Signature";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 0.14003018467353834D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // RigName
     //
     this.RigName.Description = "RigName";
     this.RigName.Name        = "RigName";
     this.RigName.Visible     = false;
     //
     // LogoFile
     //
     this.LogoFile.Description = "LogoFile";
     this.LogoFile.Name        = "LogoFile";
     this.LogoFile.Visible     = false;
     //
     // IrmaFile
     //
     this.IrmaFile.Description = "IrmaFile";
     this.IrmaFile.Name        = "IrmaFile";
     this.IrmaFile.Visible     = false;
     //
     // PobDepartureLogReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(51, 49, 50, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.RigName,
         this.LogoFile,
         this.IrmaFile
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "18.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #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 = "XtraReport_chitietphieuban.resx";

        System.Resources.ResourceManager resources = global::Resources.XtraReport_chitietphieuban.ResourceManager;
        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.XtraReports.UI.XRSummary       xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
        this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18            = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
        this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
        this.xrTable1                 = 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.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
        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.xrTableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
        this.reportFooterBand1        = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrPanel2                 = new DevExpress.XtraReports.UI.XRPanel();
        this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3                 = new DevExpress.XtraReports.UI.XRLabel();
        this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.GrandTotalCaption3       = new DevExpress.XtraReports.UI.XRControlStyle();
        this.GrandTotalData3          = new DevExpress.XtraReports.UI.XRControlStyle();
        this.GrandTotalBackground3    = new DevExpress.XtraReports.UI.XRControlStyle();
        this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.xrLabel4                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel10                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel6                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel7                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel8                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel11                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5                 = 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.EvenStyleName = "DetailCaption3";
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.OddStyleName  = "DetailData3_Odd";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
        //
        // xrTableRow4
        //
        this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18
        });
        this.xrTableRow4.Name   = "xrTableRow4";
        this.xrTableRow4.Weight = 11.5D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).STT")
        });
        this.xrTableCell13.EvenStyleName = "DetailCaption3";
        this.xrTableCell13.Name          = "xrTableCell13";
        this.xrTableCell13.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell13.StyleName     = "DetailData3";
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.Text          = "xrTableCell13";
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell13.Weight        = 2D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).mahang")
        });
        this.xrTableCell14.EvenStyleName = "DetailCaption3";
        this.xrTableCell14.Name          = "xrTableCell14";
        this.xrTableCell14.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell14.StyleName     = "DetailData3";
        this.xrTableCell14.StylePriority.UseTextAlignment = false;
        this.xrTableCell14.Text          = "xrTableCell14";
        this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell14.Weight        = 2D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).tenhang")
        });
        this.xrTableCell15.EvenStyleName = "DetailCaption3";
        this.xrTableCell15.Name          = "xrTableCell15";
        this.xrTableCell15.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell15.StyleName     = "DetailData3";
        this.xrTableCell15.StylePriority.UseTextAlignment = false;
        this.xrTableCell15.Text          = "xrTableCell15";
        this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell15.Weight        = 2D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).soluong", "{0:#,###,###,###}")
        });
        this.xrTableCell16.EvenStyleName = "DetailCaption3";
        this.xrTableCell16.Name          = "xrTableCell16";
        this.xrTableCell16.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell16.StyleName     = "DetailData3";
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "xrTableCell16";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell16.Weight        = 2D;
        //
        // xrTableCell17
        //
        this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).giaban", "{0:#,###,###,###}")
        });
        this.xrTableCell17.EvenStyleName = "DetailCaption3";
        this.xrTableCell17.Name          = "xrTableCell17";
        this.xrTableCell17.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell17.StyleName     = "DetailData3";
        this.xrTableCell17.StylePriority.UseTextAlignment = false;
        this.xrTableCell17.Text          = "xrTableCell17";
        this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell17.Weight        = 2D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).thanhtien", "{0:#,###,###,###}")
        });
        this.xrTableCell18.EvenStyleName = "DetailCaption3";
        this.xrTableCell18.Name          = "xrTableCell18";
        this.xrTableCell18.OddStyleName  = "DetailData3_Odd";
        this.xrTableCell18.StyleName     = "DetailData3";
        this.xrTableCell18.StylePriority.UseTextAlignment = false;
        this.xrTableCell18.Text          = "xrTableCell18";
        this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell18.Weight        = 2D;
        //
        // TopMargin
        //
        this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel4,
            this.xrPictureBox1
        });
        this.TopMargin.HeightF       = 108.3333F;
        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.xrPageInfo1,
            this.xrPageInfo2
        });
        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;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
        this.xrPageInfo1.StyleName     = "PageInfo";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.Format        = "Page {0} of {1}";
        this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
        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;
        //
        // sqlDataSource1
        //
        this.sqlDataSource1.ConnectionName = "localhost_toyshop_Connection";
        this.sqlDataSource1.Name           = "sqlDataSource1";
        storedProcQuery1.Name     = "report_chitietphieuban(@phieu)";
        queryParameter1.Name      = "@phieu";
        queryParameter1.Type      = typeof(int);
        queryParameter1.ValueInfo = "0";
        storedProcQuery1.Parameters.Add(queryParameter1);
        storedProcQuery1.StoredProcName = "report_chitietphieuban";
        this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            storedProcQuery1
        });
        this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
        //
        // reportHeaderBand1
        //
        this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel10,
            this.xrLabel6,
            this.xrLabel7,
            this.xrLabel8,
            this.xrLabel9,
            this.xrLabel1,
            this.xrLabel11
        });
        this.reportHeaderBand1.HeightF = 80.83334F;
        this.reportHeaderBand1.Name    = "reportHeaderBand1";
        //
        // groupHeaderBand1
        //
        this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
        this.groupHeaderBand1.HeightF    = 48F;
        this.groupHeaderBand1.Name       = "groupHeaderBand1";
        //
        // xrPanel1
        //
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPanel1.Name          = "xrPanel1";
        this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
        this.xrPanel1.StyleName     = "DetailCaptionBackground3";
        //
        // xrTable1
        //
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 28F);
        this.xrTable1.StylePriority.UseTextAlignment = false;
        this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 4.6D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell4.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell4.BorderWidth = 1F;
        this.xrTableCell4.Name        = "xrTableCell4";
        this.xrTableCell4.StyleName   = "DetailCaption3";
        this.xrTableCell4.StylePriority.UseBorderColor   = false;
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseBorderWidth   = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "STT";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell4.Weight        = 2D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell5.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell5.BorderWidth = 1F;
        this.xrTableCell5.Name        = "xrTableCell5";
        this.xrTableCell5.StyleName   = "DetailCaption3";
        this.xrTableCell5.StylePriority.UseBorderColor   = false;
        this.xrTableCell5.StylePriority.UseBorders       = false;
        this.xrTableCell5.StylePriority.UseBorderWidth   = false;
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "Mã hàng";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell5.Weight        = 2D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell6.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell6.BorderWidth = 1F;
        this.xrTableCell6.Name        = "xrTableCell6";
        this.xrTableCell6.StyleName   = "DetailCaption3";
        this.xrTableCell6.StylePriority.UseBorderColor   = false;
        this.xrTableCell6.StylePriority.UseBorders       = false;
        this.xrTableCell6.StylePriority.UseBorderWidth   = false;
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "Tên hàng";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell6.Weight        = 2D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell7.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell7.BorderWidth = 1F;
        this.xrTableCell7.Name        = "xrTableCell7";
        this.xrTableCell7.StyleName   = "DetailCaption3";
        this.xrTableCell7.StylePriority.UseBorderColor   = false;
        this.xrTableCell7.StylePriority.UseBorders       = false;
        this.xrTableCell7.StylePriority.UseBorderWidth   = false;
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Số lượng";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell7.Weight        = 2D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell8.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell8.BorderWidth = 1F;
        this.xrTableCell8.Name        = "xrTableCell8";
        this.xrTableCell8.StyleName   = "DetailCaption3";
        this.xrTableCell8.StylePriority.UseBorderColor   = false;
        this.xrTableCell8.StylePriority.UseBorders       = false;
        this.xrTableCell8.StylePriority.UseBorderWidth   = false;
        this.xrTableCell8.StylePriority.UseTextAlignment = false;
        this.xrTableCell8.Text          = "Giá bán";
        this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell8.Weight        = 2D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.BorderColor = System.Drawing.Color.Black;
        this.xrTableCell9.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell9.BorderWidth = 1F;
        this.xrTableCell9.Name        = "xrTableCell9";
        this.xrTableCell9.StyleName   = "DetailCaption3";
        this.xrTableCell9.StylePriority.UseBorderColor   = false;
        this.xrTableCell9.StylePriority.UseBorders       = false;
        this.xrTableCell9.StylePriority.UseBorderWidth   = false;
        this.xrTableCell9.StylePriority.UseTextAlignment = false;
        this.xrTableCell9.Text          = "Thành tiền";
        this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        this.xrTableCell9.Weight        = 2D;
        //
        // 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.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "xrTableCell1";
        this.xrTableCell1.Weight = 1D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "xrTableCell2";
        this.xrTableCell2.Weight = 1D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "xrTableCell3";
        this.xrTableCell3.Weight = 1D;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name   = "xrTableCell10";
        this.xrTableCell10.Text   = "xrTableCell10";
        this.xrTableCell10.Weight = 1D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "xrTableCell11";
        this.xrTableCell11.Weight = 1D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name   = "xrTableCell12";
        this.xrTableCell12.Text   = "xrTableCell12";
        this.xrTableCell12.Weight = 1D;
        //
        // reportFooterBand1
        //
        this.reportFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel2
        });
        this.reportFooterBand1.HeightF = 50.5F;
        this.reportFooterBand1.Name    = "reportFooterBand1";
        //
        // xrPanel2
        //
        this.xrPanel2.BackColor = System.Drawing.Color.White;
        this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel5,
            this.xrLabel2,
            this.xrLabel3
        });
        this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPanel2.Name          = "xrPanel2";
        this.xrPanel2.SizeF         = new System.Drawing.SizeF(650F, 50.5F);
        this.xrPanel2.StyleName     = "GrandTotalBackground3";
        this.xrPanel2.StylePriority.UseBackColor = false;
        //
        // xrLabel2
        //
        this.xrLabel2.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(398.5001F, 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(72.91666F, 16F);
        this.xrLabel2.StyleName     = "GrandTotalCaption3";
        this.xrLabel2.StylePriority.UseForeColor = false;
        this.xrLabel2.Text = "Tổng cộng";
        //
        // xrLabel3
        //
        this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).thanhtien")
        });
        this.xrLabel3.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(471.4167F, 10.00001F);
        this.xrLabel3.Name          = "xrLabel3";
        this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF         = new System.Drawing.SizeF(124.6666F, 16F);
        this.xrLabel3.StyleName     = "GrandTotalData3";
        this.xrLabel3.StylePriority.UseForeColor     = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        xrSummary1.FormatString     = "{0:#,###,###,###}";
        xrSummary1.Running          = DevExpress.XtraReports.UI.SummaryRunning.Report;
        this.xrLabel3.Summary       = xrSummary1;
        this.xrLabel3.Text          = "xrLabel3";
        this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        //
        // Title
        //
        this.Title.BackColor   = System.Drawing.Color.Transparent;
        this.Title.BorderColor = System.Drawing.Color.Black;
        this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
        this.Title.BorderWidth = 1F;
        this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
        this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.Title.Name        = "Title";
        //
        // DetailCaption3
        //
        this.DetailCaption3.BackColor       = System.Drawing.Color.Transparent;
        this.DetailCaption3.BorderColor     = System.Drawing.Color.Black;
        this.DetailCaption3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
        this.DetailCaption3.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                      | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.DetailCaption3.BorderWidth   = 1F;
        this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.DetailCaption3.Name          = "DetailCaption3";
        this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3
        //
        this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData3.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3.Name          = "DetailData3";
        this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3_Odd
        //
        this.DetailData3_Odd.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
        this.DetailData3_Odd.BorderColor     = System.Drawing.Color.Black;
        this.DetailData3_Odd.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
        this.DetailData3_Odd.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.DetailData3_Odd.BorderWidth   = 1F;
        this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3_Odd.Name          = "DetailData3_Odd";
        this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailCaptionBackground3
        //
        this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
        this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
        this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
        this.DetailCaptionBackground3.BorderWidth = 2F;
        this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
        //
        // GrandTotalCaption3
        //
        this.GrandTotalCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.GrandTotalCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.GrandTotalCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
        this.GrandTotalCaption3.Name          = "GrandTotalCaption3";
        this.GrandTotalCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
        this.GrandTotalCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // GrandTotalData3
        //
        this.GrandTotalData3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.GrandTotalData3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.GrandTotalData3.ForeColor     = System.Drawing.Color.White;
        this.GrandTotalData3.Name          = "GrandTotalData3";
        this.GrandTotalData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 6, 0, 0, 100F);
        this.GrandTotalData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // GrandTotalBackground3
        //
        this.GrandTotalBackground3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(111)))), ((int)(((byte)(111)))));
        this.GrandTotalBackground3.BorderColor = System.Drawing.Color.White;
        this.GrandTotalBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Bottom;
        this.GrandTotalBackground3.BorderWidth = 2F;
        this.GrandTotalBackground3.Name        = "GrandTotalBackground3";
        //
        // PageInfo
        //
        this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.PageInfo.Name      = "PageInfo";
        this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        //
        // xrLabel4
        //
        this.xrLabel4.Font                           = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.ForeColor                      = System.Drawing.Color.DarkBlue;
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(352.2414F, 32.29168F);
        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(285.3003F, 76.04166F);
        this.xrLabel4.StyleName                      = "Title";
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseForeColor     = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Cửa hàng đồ chơi trẻ em XìTrum Shop\r\nĐịa chỉ: Nguyễn Thái Bình, TP Cà Mau";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
        this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(7.541704F, 32.29168F);
        this.xrPictureBox1.Name          = "xrPictureBox1";
        this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(311.4583F, 76.04166F);
        this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        //
        // xrLabel10
        //
        this.xrLabel10.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(352.2917F, 48.50003F);
        this.xrLabel10.Name          = "xrLabel10";
        this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF         = new System.Drawing.SizeF(107.6667F, 16F);
        this.xrLabel10.StyleName     = "GrandTotalCaption3";
        this.xrLabel10.StylePriority.UseForeColor = false;
        this.xrLabel10.Text = "Người lập phiếu:";
        //
        // xrLabel6
        //
        this.xrLabel6.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 48.50003F);
        this.xrLabel6.Name          = "xrLabel6";
        this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF         = new System.Drawing.SizeF(70.16666F, 16F);
        this.xrLabel6.StyleName     = "GrandTotalCaption3";
        this.xrLabel6.StylePriority.UseForeColor = false;
        this.xrLabel6.Text = "Mã phiếu:";
        //
        // xrLabel7
        //
        this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).phieu")
        });
        this.xrLabel7.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(76.16669F, 48.50003F);
        this.xrLabel7.Name          = "xrLabel7";
        this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF         = new System.Drawing.SizeF(70.16666F, 16F);
        this.xrLabel7.StyleName     = "GrandTotalCaption3";
        this.xrLabel7.StylePriority.UseForeColor = false;
        //
        // xrLabel8
        //
        this.xrLabel8.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(146.3334F, 48.50003F);
        this.xrLabel8.Name          = "xrLabel8";
        this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel8.SizeF         = new System.Drawing.SizeF(97.24997F, 16F);
        this.xrLabel8.StyleName     = "GrandTotalCaption3";
        this.xrLabel8.StylePriority.UseForeColor = false;
        this.xrLabel8.Text = "Ngày lập phiếu:";
        //
        // xrLabel9
        //
        this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).ngaylapphieu", "{0:dd/MM/yyyy}")
        });
        this.xrLabel9.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(243.5833F, 48.50003F);
        this.xrLabel9.Name          = "xrLabel9";
        this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel9.SizeF         = new System.Drawing.SizeF(108.7084F, 16F);
        this.xrLabel9.StyleName     = "GrandTotalCaption3";
        this.xrLabel9.StylePriority.UseForeColor = false;
        //
        // xrLabel1
        //
        this.xrLabel1.Font                           = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
        this.xrLabel1.ForeColor                      = System.Drawing.Color.Blue;
        this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(2.000014F, 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(638F, 26F);
        this.xrLabel1.StyleName                      = "Title";
        this.xrLabel1.StylePriority.UseFont          = false;
        this.xrLabel1.StylePriority.UseForeColor     = false;
        this.xrLabel1.StylePriority.UseTextAlignment = false;
        this.xrLabel1.Text                           = "CHI TIẾT PHIẾU BÁN HÀNG";
        this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrLabel11
        //
        this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "report_chitietphieuban(@phieu).hoten", "{0:dd/MM/yyyy}")
        });
        this.xrLabel11.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(459.9584F, 48.50003F);
        this.xrLabel11.Name          = "xrLabel11";
        this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel11.SizeF         = new System.Drawing.SizeF(253.9167F, 16F);
        this.xrLabel11.StyleName     = "GrandTotalCaption3";
        this.xrLabel11.StylePriority.UseForeColor = false;
        //
        // xrLabel5
        //
        this.xrLabel5.ForeColor     = System.Drawing.Color.Blue;
        this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(596.0833F, 10.00001F);
        this.xrLabel5.Name          = "xrLabel5";
        this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF         = new System.Drawing.SizeF(47.91666F, 16F);
        this.xrLabel5.StyleName     = "GrandTotalCaption3";
        this.xrLabel5.StylePriority.UseForeColor = false;
        this.xrLabel5.Text = " đồng";
        //
        // XtraReport_chitietphieuban
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.reportHeaderBand1,
            this.groupHeaderBand1,
            this.reportFooterBand1
        });
        this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.sqlDataSource1
        });
        this.DataMember = "report_chitietphieuban(@phieu)";
        this.DataSource = this.sqlDataSource1;
        this.Margins    = new System.Drawing.Printing.Margins(100, 100, 108, 100);
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.DetailCaption3,
            this.DetailData3,
            this.DetailData3_Odd,
            this.DetailCaptionBackground3,
            this.GrandTotalCaption3,
            this.GrandTotalData3,
            this.GrandTotalBackground3,
            this.PageInfo
        });
        this.Version = "17.1";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
コード例 #23
0
ファイル: XtraReportDaily.cs プロジェクト: toannd18/PTSC_QNG
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo objectConstructorInfo1 = new DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo();
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell23            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel3                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2                 = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.objectDataSource2        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.ReportFooter             = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel18                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23                = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24                = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule1          = new DevExpress.XtraReports.UI.FormattingRule();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1121F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell4,
         this.xrTableCell27,
         this.xrTableCell2,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FromTime]")
     });
     this.xrTableCell23.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell23.Name                           = "xrTableCell23";
     this.xrTableCell23.StyleName                      = "DetailData3";
     this.xrTableCell23.StylePriority.UseFont          = false;
     this.xrTableCell23.StylePriority.UseTextAlignment = false;
     this.xrTableCell23.Text                           = "xrTableCell23";
     this.xrTableCell23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell23.TextFormatString               = "{0:hh\\:mm}";
     this.xrTableCell23.Weight                         = 0.065965330855285609D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ToTime]")
     });
     this.xrTableCell24.Font                           = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell24.Name                           = "xrTableCell24";
     this.xrTableCell24.StyleName                      = "DetailData3";
     this.xrTableCell24.StylePriority.UseFont          = false;
     this.xrTableCell24.StylePriority.UseTextAlignment = false;
     this.xrTableCell24.Text                           = "xrTableCell24";
     this.xrTableCell24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell24.TextFormatString               = "{0:hh\\:mm}";
     this.xrTableCell24.Weight                         = 0.072561862579573963D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Content]")
     });
     this.xrTableCell4.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell4.Multiline                      = true;
     this.xrTableCell4.Name                           = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text                           = "xrTableCell4";
     this.xrTableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight                         = 0.19687954641380223D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Method]")
     });
     this.xrTableCell27.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell27.Multiline             = true;
     this.xrTableCell27.Name                  = "xrTableCell27";
     this.xrTableCell27.StyleName             = "DetailData3";
     this.xrTableCell27.StylePriority.UseFont = false;
     this.xrTableCell27.Text                  = "xrTableCell27";
     this.xrTableCell27.Weight                = 0.21229475376274704D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Result]")
     });
     this.xrTableCell2.Font                           = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell2.Multiline                      = true;
     this.xrTableCell2.Name                           = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text                           = "xrTableCell2";
     this.xrTableCell2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight                         = 0.14409362049130065D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Total]")
     });
     this.xrTableCell28.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell28.Multiline             = true;
     this.xrTableCell28.Name                  = "xrTableCell28";
     this.xrTableCell28.StyleName             = "DetailData3";
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.Text                  = "xrTableCell28";
     this.xrTableCell28.Weight                = 0.23701193121192882D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Comment1]")
     });
     this.xrTableCell29.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell29.Multiline             = true;
     this.xrTableCell29.Name                  = "xrTableCell29";
     this.xrTableCell29.StyleName             = "DetailData3";
     this.xrTableCell29.StylePriority.UseFont = false;
     this.xrTableCell29.Text                  = "xrTableCell29";
     this.xrTableCell29.Weight                = 0.27972269792621529D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Comment2]")
     });
     this.xrTableCell30.Font                  = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell30.Multiline             = true;
     this.xrTableCell30.Name                  = "xrTableCell30";
     this.xrTableCell30.StyleName             = "DetailData3";
     this.xrTableCell30.StylePriority.UseFont = false;
     this.xrTableCell30.Text                  = "xrTableCell30";
     this.xrTableCell30.Weight                = 0.27041293137870659D;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.TopMargin.HeightF       = 39F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 16.08334F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(963F, 15.58332F);
     this.xrLabel3.StyleName             = "Title";
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "PHÒNG HÀNH CHÍNH NHÂN SỰ";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(963F, 15.99998F);
     this.xrLabel2.StyleName             = "Title";
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "CÔNG TY CỔ PHẦN DỊCH VỤ DẦU KHÍ QUẢNG NGÃI PTSC";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF       = 30F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(3.973643E-05F, 0F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(1121F, 23F);
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrPageInfo1.TextFormatString = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 135F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(5.999994F, 98.00002F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(73.95836F, 23F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "Tổ/ Nhóm:";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.AutoWidth = true;
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Ten_TO]")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 98.00002F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel5";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(5.999994F, 75F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(73.95836F, 23F);
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "Chức danh:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.AutoWidth = true;
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Ten_CV]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 75F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel5";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.AutoWidth = true;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(79.95835F, 52F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(126.0417F, 23F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "xrLabel5";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 52.00002F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(73.95834F, 23F);
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "Họ và tên:";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Date]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(6.000018F, 26.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(1115F, 17.79167F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel4";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrLabel4.TextFormatString               = "Ngày {0:dd/MM/yyyy}";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(6.00001F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(1115F, 26F);
     this.xrLabel1.StyleName                      = "Title";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "NHẬT KÝ CÔNG VIỆC";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion      = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF         = 48F;
     this.groupHeaderBand1.Name            = "groupHeaderBand1";
     this.groupHeaderBand1.RepeatEveryPage = true;
     //
     // xrPanel1
     //
     this.xrPanel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name                     = "xrPanel1";
     this.xrPanel1.SizeF                    = new System.Drawing.SizeF(1121F, 48F);
     this.xrPanel1.StyleName                = "DetailCaptionBackground3";
     this.xrPanel1.StylePriority.UseBorders = false;
     //
     // xrTable1
     //
     this.xrTable1.BorderColor = System.Drawing.Color.Black;
     this.xrTable1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.BorderWidth   = 1F;
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1121F, 38.00001F);
     this.xrTable1.StylePriority.UseBorderColor   = false;
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseBorderWidth   = false;
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell3,
         this.xrTableCell11,
         this.xrTableCell1,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell7.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseBorderColor   = false;
     this.xrTableCell7.StylePriority.UseBorders       = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Thời gian";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 0.16368739414336936D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Nội dung công việc";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 0.22743501390583934D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell11.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell11.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.StyleName = "DetailCaption3";
     this.xrTableCell11.StylePriority.UseBorderColor   = false;
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UseForeColor     = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Phương pháp, công việc thực hiện công việc";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.247559747926083D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Kết quả thực hiện công việc";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.16802968339552205D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell12.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell12.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailCaption3";
     this.xrTableCell12.StylePriority.UseBorderColor   = false;
     this.xrTableCell12.StylePriority.UseBorders       = false;
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UseForeColor     = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "Tổng kết các công việc chính";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 0.27638286060796713D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell13.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell13.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell13.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.StyleName = "DetailCaption3";
     this.xrTableCell13.StylePriority.UseBorderColor   = false;
     this.xrTableCell13.StylePriority.UseBorders       = false;
     this.xrTableCell13.StylePriority.UseFont          = false;
     this.xrTableCell13.StylePriority.UseForeColor     = false;
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "Đánh giá của tổ trưởng";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight        = 0.3261885487722827D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.BorderColor = System.Drawing.Color.Black;
     this.xrTableCell14.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell14.Font      = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell14.ForeColor = System.Drawing.Color.Black;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StyleName = "DetailCaption3";
     this.xrTableCell14.StylePriority.UseBorderColor   = false;
     this.xrTableCell14.StylePriority.UseBorders       = false;
     this.xrTableCell14.StylePriority.UseFont          = false;
     this.xrTableCell14.StylePriority.UseForeColor     = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "Đánh giá kết quả của Phụ trách trực tiếp";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight        = 0.31533206028236976D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // objectDataSource2
     //
     this.objectDataSource2.Constructor = objectConstructorInfo1;
     this.objectDataSource2.DataSource  = typeof(DataModel.Model.Reports.ExportDailyModel);
     this.objectDataSource2.Name        = "objectDataSource2";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel21,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel24
     });
     this.ReportFooter.HeightF      = 146.6667F;
     this.ReportFooter.KeepTogether = true;
     this.ReportFooter.Name         = "ReportFooter";
     //
     // xrLabel18
     //
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(781.985F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Quảng Ngãi, ngày      tháng     năm 2017";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(781.985F, 36.83331F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Ý kiến đánh giá của Trưởng Bộ Phận";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(401.4942F, 36.83331F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Tổ trưởng/ phụ trách tổ";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(87.97339F, 36.83331F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Người báo cáo";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel22
     //
     this.xrLabel22.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName]")
     });
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(87.97339F, 113.25F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Người báo cáo";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel23
     //
     this.xrLabel23.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName1]")
     });
     this.xrLabel23.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(401.4942F, 113.25F);
     this.xrLabel23.Name                           = "xrLabel23";
     this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text                           = "Người báo cáo";
     this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel24
     //
     this.xrLabel24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[FullName2]")
     });
     this.xrLabel24.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(781.985F, 113.25F);
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(251.0416F, 23F);
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text                           = "Người báo cáo";
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // XtraReportDaily
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1,
         this.ReportFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource2
     });
     this.DataSource = this.objectDataSource2;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(28, 20, 39, 30);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #24
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(rptInvitationReturn));
     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.xrLabel7      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1       = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel2      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1      = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader    = new DevExpress.XtraReports.UI.PageHeaderBand();
     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.xrLabel7,
         this.xrLine1,
         this.xrLabel6,
         this.xrLabel5,
         this.xrPanel1
     });
     this.Detail.HeightF = 885F;
     this.Detail.Name    = "Detail";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Complaint].[ResidentRespondents].[FullName]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(289.5833F, 247.6667F);
     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(347.9167F, 23F);
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLine1
     //
     this.xrLine1.ForeColor     = System.Drawing.Color.Black;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(301.0416F, 120.9167F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(300F, 2F);
     this.xrLine1.StylePriority.UseForeColor = false;
     //
     // xrLabel6
     //
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(196.875F, 203.125F);
     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(543.125F, 22.99998F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "OFFICERS RETURN";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // 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(196.875F, 40.00003F);
     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(543.125F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // 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(0F, 10.00001F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(171.875F, 873.9583F);
     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";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrPictureBox4,
         this.xrPictureBox3,
         this.xrLabel3,
         this.xrLine2
     });
     this.PageHeader.Name = "PageHeader";
     //
     // 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";
     //
     // rptInvitationReturn
     //
     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();
 }
コード例 #25
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "Employee_Total_Sal_Report.resx";

        this.Detail                  = new DevExpress.XtraReports.UI.DetailBand();
        this.TopMargin               = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin            = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.GroupHeader1            = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrPanel3                = new DevExpress.XtraReports.UI.XRPanel();
        this.xrTable2                = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow7             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell19           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow8             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell22           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell23           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell24           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell32           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow9             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell25           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell26           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell27           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell33           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow10            = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell28           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell29           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell30           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell34           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow11            = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell20           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell21           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell31           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell35           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow12            = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell36           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell39           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow13            = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell41           = new DevExpress.XtraReports.UI.XRTableCell();
        this.employeePaySlipDataSet1 = new EmployeePaySlipDataSet();
        this.GroupHeader2            = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrPanel1                = new DevExpress.XtraReports.UI.XRPanel();
        this.xrPictureBox2           = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel6                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5                = 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.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.xrTableRow4             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell10           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow3             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow5             = 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.xrTableRow6             = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell16           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18           = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrLabel7                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPanel2                = new DevExpress.XtraReports.UI.XRPanel();
        this.xrLabel1                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel2                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel3                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel10               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1           = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrLabel11               = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.employeePaySlipDataSet1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.HeightF       = 3.125F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // TopMargin
        //
        this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel2
        });
        this.TopMargin.Font    = new System.Drawing.Font("Times New Roman", 9.75F);
        this.TopMargin.HeightF = 115.5833F;
        this.TopMargin.Name    = "TopMargin";
        this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.StylePriority.UseFont = false;
        this.TopMargin.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 8F;
        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.xrPanel3
        });
        this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("EmpCode", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader1.HeightF = 97.50001F;
        this.GroupHeader1.Name    = "GroupHeader1";
        //
        // xrPanel3
        //
        this.xrPanel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPanel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.xrPanel3.LocationFloat            = new DevExpress.Utils.PointFloat(88.5417F, 0F);
        this.xrPanel3.Name                     = "xrPanel3";
        this.xrPanel3.SizeF                    = new System.Drawing.SizeF(388.5161F, 97.50001F);
        this.xrPanel3.StylePriority.UseBorders = false;
        //
        // xrTable2
        //
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow7,
            this.xrTableRow8,
            this.xrTableRow9,
            this.xrTableRow10,
            this.xrTableRow11,
            this.xrTableRow12,
            this.xrTableRow13
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(388.516F, 96.45834F);
        //
        // xrTableRow7
        //
        this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell19
        });
        this.xrTableRow7.Name   = "xrTableRow7";
        this.xrTableRow7.Weight = 1;
        //
        // xrTableCell19
        //
        this.xrTableCell19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell19.Name = "xrTableCell19";
        this.xrTableCell19.StylePriority.UseFont = false;
        this.xrTableCell19.Text   = " SALARY";
        this.xrTableCell19.Weight = 3.7279183959960935;
        //
        // xrTableRow8
        //
        this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell22,
            this.xrTableCell23,
            this.xrTableCell24,
            this.xrTableCell32
        });
        this.xrTableRow8.Name   = "xrTableRow8";
        this.xrTableRow8.Weight = 1;
        //
        // xrTableCell22
        //
        this.xrTableCell22.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell22.Name = "xrTableCell22";
        this.xrTableCell22.StylePriority.UseFont = false;
        this.xrTableCell22.Text   = "  Attendance";
        this.xrTableCell22.Weight = 1;
        //
        // xrTableCell23
        //
        this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.totalAttendSal")
        });
        this.xrTableCell23.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell23.Name = "xrTableCell23";
        this.xrTableCell23.StylePriority.UseFont = false;
        this.xrTableCell23.Text   = "xrTableCell23";
        this.xrTableCell23.Weight = 0.90817013649076006;
        //
        // xrTableCell24
        //
        this.xrTableCell24.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell24.Name = "xrTableCell24";
        this.xrTableCell24.StylePriority.UseFont = false;
        this.xrTableCell24.Text   = "  Deduction";
        this.xrTableCell24.Weight = 1.0476186427301384;
        //
        // xrTableCell32
        //
        this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.DeductionActAmt")
        });
        this.xrTableCell32.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell32.Name = "xrTableCell32";
        this.xrTableCell32.StylePriority.UseFont = false;
        this.xrTableCell32.Text   = "xrTableCell32";
        this.xrTableCell32.Weight = 0.77212961677519532;
        //
        // xrTableRow9
        //
        this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell25,
            this.xrTableCell26,
            this.xrTableCell27,
            this.xrTableCell33
        });
        this.xrTableRow9.Name   = "xrTableRow9";
        this.xrTableRow9.Weight = 1;
        //
        // xrTableCell25
        //
        this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell25.Name = "xrTableCell25";
        this.xrTableCell25.StylePriority.UseFont = false;
        this.xrTableCell25.Text   = "  Allowance";
        this.xrTableCell25.Weight = 1;
        //
        // xrTableCell26
        //
        this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.AllowanceActAmt")
        });
        this.xrTableCell26.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell26.Name = "xrTableCell26";
        this.xrTableCell26.StylePriority.UseFont = false;
        this.xrTableCell26.Text   = "[AllowanceActAmt]";
        this.xrTableCell26.Weight = 0.90817013649076006;
        //
        // xrTableCell27
        //
        this.xrTableCell27.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell27.Name = "xrTableCell27";
        this.xrTableCell27.StylePriority.UseFont = false;
        this.xrTableCell27.Text   = "  Penalty";
        this.xrTableCell27.Weight = 1.0476186427301384;
        //
        // xrTableCell33
        //
        this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.TotalEmpPenalty")
        });
        this.xrTableCell33.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell33.Name = "xrTableCell33";
        this.xrTableCell33.StylePriority.UseFont = false;
        this.xrTableCell33.Text   = "xrTableCell33";
        this.xrTableCell33.Weight = 0.77212961677519532;
        //
        // xrTableRow10
        //
        this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell28,
            this.xrTableCell29,
            this.xrTableCell30,
            this.xrTableCell34
        });
        this.xrTableRow10.Name   = "xrTableRow10";
        this.xrTableRow10.Weight = 1;
        //
        // xrTableCell28
        //
        this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell28.Name = "xrTableCell28";
        this.xrTableCell28.StylePriority.UseFont = false;
        this.xrTableCell28.Text   = "  Claim";
        this.xrTableCell28.Weight = 1;
        //
        // xrTableCell29
        //
        this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.TotalEmpClaim")
        });
        this.xrTableCell29.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell29.Name = "xrTableCell29";
        this.xrTableCell29.StylePriority.UseFont = false;
        this.xrTableCell29.Text   = "xrTableCell29";
        this.xrTableCell29.Weight = 0.90817013649076006;
        //
        // xrTableCell30
        //
        this.xrTableCell30.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell30.Name = "xrTableCell30";
        this.xrTableCell30.StylePriority.UseFont = false;
        this.xrTableCell30.Text   = "  Loan";
        this.xrTableCell30.Weight = 1.0476186427301384;
        //
        // xrTableCell34
        //
        this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.TotalEmpLoan")
        });
        this.xrTableCell34.Font = new System.Drawing.Font("Arial", 9F);
        this.xrTableCell34.Name = "xrTableCell34";
        this.xrTableCell34.StylePriority.UseFont = false;
        this.xrTableCell34.Text   = "xrTableCell34";
        this.xrTableCell34.Weight = 0.77212961677519532;
        //
        // xrTableRow11
        //
        this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell20,
            this.xrTableCell21,
            this.xrTableCell31,
            this.xrTableCell35
        });
        this.xrTableRow11.Name   = "xrTableRow11";
        this.xrTableRow11.Weight = 1;
        //
        // xrTableCell20
        //
        this.xrTableCell20.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell20.Name = "xrTableCell20";
        this.xrTableCell20.StylePriority.UseFont = false;
        this.xrTableCell20.Text   = "  GROSS PAY";
        this.xrTableCell20.Weight = 1;
        //
        // xrTableCell21
        //
        this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.NetSalary")
        });
        this.xrTableCell21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTableCell21.Name = "xrTableCell21";
        this.xrTableCell21.StylePriority.UseFont = false;
        this.xrTableCell21.Text   = "[NetSalary]";
        this.xrTableCell21.Weight = 0.90817013649076006;
        //
        // xrTableCell31
        //
        this.xrTableCell31.Font = new System.Drawing.Font("Times New Roman", 9.75F);
        this.xrTableCell31.Name = "xrTableCell31";
        this.xrTableCell31.StylePriority.UseFont = false;
        this.xrTableCell31.Text   = "  GROSS PAY";
        this.xrTableCell31.Weight = 1.0476186427301384;
        //
        // xrTableCell35
        //
        this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.TotalDeducloanpenaty")
        });
        this.xrTableCell35.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell35.Name = "xrTableCell35";
        this.xrTableCell35.StylePriority.UseFont = false;
        this.xrTableCell35.Text   = "[NetSalary]";
        this.xrTableCell35.Weight = 0.77212961677519532;
        //
        // xrTableRow12
        //
        this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell36,
            this.xrTableCell39
        });
        this.xrTableRow12.Name   = "xrTableRow12";
        this.xrTableRow12.Weight = 1;
        //
        // xrTableCell36
        //
        this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell36.Font = new System.Drawing.Font("Arial", 8F);
        this.xrTableCell36.Name = "xrTableCell36";
        this.xrTableCell36.StylePriority.UseBorders = false;
        this.xrTableCell36.StylePriority.UseFont    = false;
        this.xrTableCell36.Text   = "PREVIOUS MONTH ADJUSTMENT:";
        this.xrTableCell36.Weight = 1.8005926483205781;
        //
        // xrTableCell39
        //
        this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.TotalAdjustmentAmt")
        });
        this.xrTableCell39.Name = "xrTableCell39";
        this.xrTableCell39.StylePriority.UseBorders = false;
        this.xrTableCell39.Text   = "xrTableCell39";
        this.xrTableCell39.Weight = 1.9273257476755159;
        //
        // xrTableRow13
        //
        this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell41
        });
        this.xrTableRow13.Name   = "xrTableRow13";
        this.xrTableRow13.Weight = 1;
        //
        // xrTableCell41
        //
        this.xrTableCell41.Borders = DevExpress.XtraPrinting.BorderSide.Top;
        this.xrTableCell41.Name    = "xrTableCell41";
        this.xrTableCell41.StylePriority.UseBorders = false;
        this.xrTableCell41.Weight = 3.727918395996094;
        //
        // employeePaySlipDataSet1
        //
        this.employeePaySlipDataSet1.DataSetName             = "EmployeePaySlipDataSet";
        this.employeePaySlipDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("EmpCode", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 86.25005F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // 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.xrPictureBox2,
            this.xrLabel6,
            this.xrLabel5,
            this.xrTable1,
            this.xrLabel7
        });
        this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(88.54165F, 0F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(388.5161F, 86.25005F);
        this.xrPanel1.StylePriority.UseBorders = false;
        //
        // xrPictureBox2
        //
        this.xrPictureBox2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(324.9745F, 22.58669F);
        this.xrPictureBox2.Name                     = "xrPictureBox2";
        this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(53.54163F, 29.53835F);
        this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox2.StylePriority.UseBorders = false;
        //
        // xrLabel6
        //
        this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.Month")
        });
        this.xrLabel6.Font                     = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
        this.xrLabel6.LocationFloat            = new DevExpress.Utils.PointFloat(252.581F, 9.569486F);
        this.xrLabel6.Name                     = "xrLabel6";
        this.xrLabel6.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel6.SizeF                    = new System.Drawing.SizeF(55.98291F, 12.58333F);
        this.xrLabel6.StylePriority.UseBorders = false;
        this.xrLabel6.StylePriority.UseFont    = false;
        this.xrLabel6.Text                     = "xrLabel6";
        //
        // xrLabel5
        //
        this.xrLabel5.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel5.Font                     = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat            = new DevExpress.Utils.PointFloat(44.96678F, 9.572824F);
        this.xrLabel5.Name                     = "xrLabel5";
        this.xrLabel5.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                    = new System.Drawing.SizeF(207.6142F, 12.58F);
        this.xrLabel5.StylePriority.UseBorders = false;
        this.xrLabel5.StylePriority.UseFont    = false;
        this.xrLabel5.Text                     = "PAYSLIP FOR THE MONTH OF";
        //
        // xrTable1
        //
        this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(9.91674F, 22.1667F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1,
            this.xrTableRow2,
            this.xrTableRow4,
            this.xrTableRow3,
            this.xrTableRow5,
            this.xrTableRow6
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(298.1296F, 54.08335F);
        this.xrTable1.StylePriority.UseBorders = false;
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell1.Name = "xrTableCell1";
        this.xrTableCell1.StylePriority.UseFont = false;
        this.xrTableCell1.Text   = "EMPLOYEE CODE";
        this.xrTableCell1.Weight = 0.25692606735088941;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = ":";
        this.xrTableCell2.Weight = 0.025509254301800344;
        //
        // xrTableCell3
        //
        this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.EmpCode")
        });
        this.xrTableCell3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell3.Name = "xrTableCell3";
        this.xrTableCell3.StylePriority.UseFont = false;
        this.xrTableCell3.Weight = 0.2452364633721415;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 1;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTableCell4.Font    = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell4.Name    = "xrTableCell4";
        this.xrTableCell4.StylePriority.UseBorders = false;
        this.xrTableCell4.StylePriority.UseFont    = false;
        this.xrTableCell4.Text   = "EMPLOYEE NAME";
        this.xrTableCell4.Weight = 0.25692606532795614;
        //
        // xrTableCell5
        //
        this.xrTableCell5.Name   = "xrTableCell5";
        this.xrTableCell5.Text   = ":";
        this.xrTableCell5.Weight = 0.026470578361171504;
        //
        // xrTableCell6
        //
        this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.EmpName")
        });
        this.xrTableCell6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell6.Name = "xrTableCell6";
        this.xrTableCell6.StylePriority.UseFont = false;
        this.xrTableCell6.Weight = 0.24427514133570366;
        //
        // xrTableRow4
        //
        this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell9
        });
        this.xrTableRow4.Name   = "xrTableRow4";
        this.xrTableRow4.Weight = 1;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell10.Name = "xrTableCell10";
        this.xrTableCell10.StylePriority.UseFont = false;
        this.xrTableCell10.Text   = "DESIGNATION";
        this.xrTableCell10.Weight = 0.25692606532795614;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = ":";
        this.xrTableCell11.Weight = 0.026470578361171504;
        //
        // xrTableCell9
        //
        this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.Designation")
        });
        this.xrTableCell9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell9.Name = "xrTableCell9";
        this.xrTableCell9.StylePriority.UseFont = false;
        this.xrTableCell9.Weight = 0.24427514133570366;
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell12
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseFont = false;
        this.xrTableCell7.Text   = "DEPARTMENT";
        this.xrTableCell7.Weight = 0.25692606532795614;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name   = "xrTableCell8";
        this.xrTableCell8.Text   = ":";
        this.xrTableCell8.Weight = 0.026470578361171504;
        //
        // xrTableCell12
        //
        this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.Department")
        });
        this.xrTableCell12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell12.Name = "xrTableCell12";
        this.xrTableCell12.StylePriority.UseFont = false;
        this.xrTableCell12.Weight = 0.24427514133570366;
        //
        // xrTableRow5
        //
        this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15
        });
        this.xrTableRow5.Name   = "xrTableRow5";
        this.xrTableRow5.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell13.Name = "xrTableCell13";
        this.xrTableCell13.StylePriority.UseFont = false;
        this.xrTableCell13.Text   = "DOJ";
        this.xrTableCell13.Weight = 0.25692606532795614;
        //
        // xrTableCell14
        //
        this.xrTableCell14.Name   = "xrTableCell14";
        this.xrTableCell14.Text   = ":";
        this.xrTableCell14.Weight = 0.026470578361171504;
        //
        // xrTableCell15
        //
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.DOJ")
        });
        this.xrTableCell15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell15.Name = "xrTableCell15";
        this.xrTableCell15.StylePriority.UseFont = false;
        this.xrTableCell15.Weight = 0.24427514133570366;
        //
        // xrTableRow6
        //
        this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18
        });
        this.xrTableRow6.Name   = "xrTableRow6";
        this.xrTableRow6.Weight = 1;
        //
        // xrTableCell16
        //
        this.xrTableCell16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
        this.xrTableCell16.Name = "xrTableCell16";
        this.xrTableCell16.StylePriority.UseFont = false;
        this.xrTableCell16.Text   = "BANK A/C NO.";
        this.xrTableCell16.Weight = 0.25692606532795614;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = ":";
        this.xrTableCell17.Weight = 0.026470578361171504;
        //
        // xrTableCell18
        //
        this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.BankAccountNo")
        });
        this.xrTableCell18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrTableCell18.Name = "xrTableCell18";
        this.xrTableCell18.StylePriority.UseFont = false;
        this.xrTableCell18.Weight = 0.24427514133570366;
        //
        // xrLabel7
        //
        this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtEmpPayslip.Year")
        });
        this.xrLabel7.Font                     = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
        this.xrLabel7.LocationFloat            = new DevExpress.Utils.PointFloat(299.5579F, 10.00334F);
        this.xrLabel7.Name                     = "xrLabel7";
        this.xrLabel7.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel7.SizeF                    = new System.Drawing.SizeF(44.16653F, 12.58334F);
        this.xrLabel7.StylePriority.UseBorders = false;
        this.xrLabel7.StylePriority.UseFont    = false;
        this.xrLabel7.Text                     = "xrLabel7";
        //
        // xrPanel2
        //
        this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.xrLabel2,
            this.xrLabel3,
            this.xrLabel4,
            this.xrLabel10,
            this.xrPictureBox1,
            this.xrLabel11
        });
        this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(88.54165F, 10.00001F);
        this.xrPanel2.Name          = "xrPanel2";
        this.xrPanel2.SizeF         = new System.Drawing.SizeF(388.5161F, 105.5833F);
        //
        // xrLabel1
        //
        this.xrLabel1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel1.Font                     = new System.Drawing.Font("Verdana", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel1.LocationFloat            = new DevExpress.Utils.PointFloat(9.99999F, 66.41664F);
        this.xrLabel1.Name                     = "xrLabel1";
        this.xrLabel1.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF                    = new System.Drawing.SizeF(164.5833F, 10.49997F);
        this.xrLabel1.StylePriority.UseBorders = false;
        this.xrLabel1.StylePriority.UseFont    = false;
        //
        // xrLabel2
        //
        this.xrLabel2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel2.Font                     = new System.Drawing.Font("Verdana", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel2.LocationFloat            = new DevExpress.Utils.PointFloat(199.9098F, 66.41664F);
        this.xrLabel2.Name                     = "xrLabel2";
        this.xrLabel2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel2.SizeF                    = new System.Drawing.SizeF(166.1884F, 10.49998F);
        this.xrLabel2.StylePriority.UseBorders = false;
        this.xrLabel2.StylePriority.UseFont    = false;
        //
        // xrLabel3
        //
        this.xrLabel3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel3.Font                           = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(198.8656F, 51.74999F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(57.72382F, 14.66664F);
        this.xrLabel3.StylePriority.UseBorders       = false;
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "Phone No :";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrLabel4
        //
        this.xrLabel4.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel4.Font                     = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel4.LocationFloat            = new DevExpress.Utils.PointFloat(256.5894F, 51.74999F);
        this.xrLabel4.Name                     = "xrLabel4";
        this.xrLabel4.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                    = new System.Drawing.SizeF(114.6494F, 14.66664F);
        this.xrLabel4.StylePriority.UseBorders = false;
        this.xrLabel4.StylePriority.UseFont    = false;
        //
        // xrLabel10
        //
        this.xrLabel10.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel10.Font                           = new System.Drawing.Font("Verdana", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(198.8656F, 41.33331F);
        this.xrLabel10.Name                           = "xrLabel10";
        this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel10.SizeF                          = new System.Drawing.SizeF(178.9761F, 10.41668F);
        this.xrLabel10.StylePriority.UseBorders       = false;
        this.xrLabel10.StylePriority.UseFont          = false;
        this.xrLabel10.StylePriority.UseTextAlignment = false;
        this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(9.916702F, 10.00001F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(60.41671F, 41.75001F);
        this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrLabel11
        //
        this.xrLabel11.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel11.Font                           = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
        this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(70.3334F, 28.74998F);
        this.xrLabel11.Name                           = "xrLabel11";
        this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel11.SizeF                          = new System.Drawing.SizeF(276.0157F, 12.58334F);
        this.xrLabel11.StylePriority.UseBorders       = false;
        this.xrLabel11.StylePriority.UseFont          = false;
        this.xrLabel11.StylePriority.UseTextAlignment = false;
        this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // Employee_Total_Sal_Report
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.GroupHeader2
        });
        this.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                               | DevExpress.XtraPrinting.BorderSide.Right)
                                                              | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.DataMember = "dtEmpPayslip";
        this.DataSource = this.employeePaySlipDataSet1;
        this.Font       = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins    = new System.Drawing.Printing.Margins(100, 100, 116, 8);
        this.Version    = "10.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.employeePaySlipDataSet1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
コード例 #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(BillingReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3    = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo2   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     this.Detail                = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin             = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin          = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.CaseID                = new DevExpress.XtraReports.Parameters.Parameter();
     this.firstDayOfMonthPeriod = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportHeader          = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblReportID           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1         = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel26             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter            = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel2              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1           = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BillingReportDS       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.DetailReport          = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel24             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1               = new DevExpress.XtraReports.UI.XRLine();
     this.xrPanel2              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1              = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel6              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9              = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1         = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel18             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12             = new DevExpress.XtraReports.UI.XRLabel();
     this.PatientName           = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderTypeLabel     = new DevExpress.XtraReports.UI.CalculatedField();
     this.BillingRef            = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 16.75002F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 20.83333F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // CaseID
     //
     this.CaseID.Description = "CaseID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "383";
     this.CaseID.Visible     = false;
     //
     // firstDayOfMonthPeriod
     //
     this.firstDayOfMonthPeriod.Name      = "firstDayOfMonthPeriod";
     this.firstDayOfMonthPeriod.Type      = typeof(System.DateTime);
     this.firstDayOfMonthPeriod.ValueInfo = "2016-05-01";
     this.firstDayOfMonthPeriod.Visible   = false;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportID,
         this.xrLabel27,
         this.xrLabel1,
         this.xrPictureBox1,
         this.xrLabel26
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 136.25F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblReportID
     //
     this.lblReportID.Dpi                        = 100F;
     this.lblReportID.Font                       = new System.Drawing.Font("Trebuchet MS", 14F);
     this.lblReportID.ForeColor                  = System.Drawing.Color.Red;
     this.lblReportID.LocationFloat              = new DevExpress.Utils.PointFloat(649.5993F, 0F);
     this.lblReportID.Name                       = "lblReportID";
     this.lblReportID.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportID.SizeF                      = new System.Drawing.SizeF(100F, 23F);
     this.lblReportID.StylePriority.UseFont      = false;
     this.lblReportID.StylePriority.UseForeColor = false;
     this.lblReportID.Text                       = "PREVIEW";
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                            = 100F;
     this.xrLabel27.Font                           = new System.Drawing.Font("Trebuchet MS", 14F);
     this.xrLabel27.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 0F);
     this.xrLabel27.Name                           = "xrLabel27";
     this.xrLabel27.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                          = new System.Drawing.SizeF(138.7019F, 23F);
     this.xrLabel27.StylePriority.UseFont          = false;
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     this.xrLabel27.Text                           = "Billing Report:";
     this.xrLabel27.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(168.75F, 16.66667F);
     this.xrLabel1.Multiline             = true;
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(328.2852F, 105.2917F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                           " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                           "ppliedabc.com";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.firstDayOfMonthPeriod, "Text", "{0:MMMM, yyyy}")
     });
     this.xrLabel26.Dpi                            = 100F;
     this.xrLabel26.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel26.LocationFloat                  = new DevExpress.Utils.PointFloat(510.8974F, 23F);
     this.xrLabel26.Name                           = "xrLabel26";
     this.xrLabel26.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF                          = new System.Drawing.SizeF(138.7019F, 23.00001F);
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrLabel2,
         this.xrPageInfo1
     });
     this.PageFooter.Dpi     = 100F;
     this.PageFooter.HeightF = 25F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                   = 100F;
     this.xrPageInfo2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageInfo2.Name                  = "xrPageInfo2";
     this.xrPageInfo2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo              = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                 = new System.Drawing.SizeF(212.9808F, 23F);
     this.xrPageInfo2.StylePriority.UseFont = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                   = 100F;
     this.xrLabel2.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(640.625F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(35.41667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Page";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                   = 100F;
     this.xrPageInfo1.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrPageInfo1.LocationFloat         = new DevExpress.Utils.PointFloat(676.0417F, 0F);
     this.xrPageInfo1.Name                  = "xrPageInfo1";
     this.xrPageInfo1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                 = new System.Drawing.SizeF(63.95831F, 23F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // BillingReportDS
     //
     this.BillingReportDS.ConnectionName = "CoreConnection";
     this.BillingReportDS.Name           = "BillingReportDS";
     storedProcQuery1.Name = "webreports_BillingCaseInfo";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "webreports.BillingCaseInfo";
     storedProcQuery2.Name           = "webreports_BillingProviderInfo";
     queryParameter2.Name            = "@CaseID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter3.Name            = "@FirstDayOfMonth";
     queryParameter3.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter4.Name            = "@BillingRef";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.Parameters.Add(queryParameter3);
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.StoredProcName = "webreports.BillingProviderInfo";
     storedProcQuery3.Name           = "webreports_BillingHoursInfo";
     queryParameter5.Name            = "@CaseID";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter6.Name            = "@FirstDayOfMonth";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.firstDayOfMonthPeriod]", typeof(System.DateTime));
     queryParameter7.Name            = "@BillingRef";
     queryParameter7.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value           = new DevExpress.DataAccess.Expression("[Parameters.BillingRef]", typeof(string));
     storedProcQuery3.Parameters.Add(queryParameter5);
     storedProcQuery3.Parameters.Add(queryParameter6);
     storedProcQuery3.Parameters.Add(queryParameter7);
     storedProcQuery3.StoredProcName = "webreports.BillingHoursInfo";
     this.BillingReportDS.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2,
         storedProcQuery3
     });
     masterDetailInfo1.DetailQueryName   = "webreports_BillingProviderInfo";
     relationColumnInfo1.NestedKeyColumn = "CaseID";
     relationColumnInfo1.ParentKeyColumn = "CaseID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName   = "webreports_BillingCaseInfo";
     masterDetailInfo2.DetailQueryName   = "webreports_BillingHoursInfo";
     relationColumnInfo2.NestedKeyColumn = "ProviderID";
     relationColumnInfo2.ParentKeyColumn = "ProviderID";
     masterDetailInfo2.KeyColumns.Add(relationColumnInfo2);
     masterDetailInfo2.MasterQueryName = "webreports_BillingProviderInfo";
     this.BillingReportDS.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1,
         masterDetailInfo2
     });
     this.BillingReportDS.ResultSchemaSerializable = resources.GetString("BillingReportDS.ResultSchemaSerializable");
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1
     });
     this.DetailReport.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.DetailReport.DataSource = this.BillingReportDS;
     this.DetailReport.Dpi        = 100F;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19,
         this.xrLine1,
         this.xrPanel2,
         this.xrPanel1,
         this.xrLabel11,
         this.xrLabel9
     });
     this.Detail1.Dpi     = 100F;
     this.Detail1.HeightF = 128.9295F;
     this.Detail1.Name    = "Detail1";
     //
     // xrLabel24
     //
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(480.1284F, 105.9295F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(269.8717F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "Notes";
     //
     // xrLabel23
     //
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 105.9295F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "Service";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 105.9295F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(55.12814F, 23F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Hours";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.Dpi                            = 100F;
     this.xrLabel21.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 105.9295F);
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "Time Out";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel20
     //
     this.xrLabel20.Dpi                            = 100F;
     this.xrLabel20.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91676F, 105.9295F);
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "Time In";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                            = 100F;
     this.xrLabel19.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(9.781275E-05F, 105.9295F);
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Date";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(9.781275E-05F, 98.15387F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(750F, 2F);
     //
     // xrPanel2
     //
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel5
     });
     this.xrPanel2.Dpi           = 100F;
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(400F, 52.15385F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi                            = 100F;
     this.xrLabel17.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 22.99998F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(70.12836F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Phone #:";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel7
     //
     this.xrLabel7.Dpi                            = 100F;
     this.xrLabel7.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999939F, 0F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(70.12833F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Phone #:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderPrimaryPhone")
     });
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 22.99998F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00002F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "xrLabel8";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientPhone")
     });
     this.xrLabel5.Dpi                   = 100F;
     this.xrLabel5.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(80.12836F, 0F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(209.8716F, 23.00001F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "xrLabel5";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel10
     });
     this.xrPanel1.Dpi           = 100F;
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(89.98392F, 52.15385F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(300F, 46F);
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderName")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 22.99998F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.PatientName")
     });
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 0F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(190F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "xrLabel4";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi                            = 100F;
     this.xrLabel3.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 0F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Patient Name:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeLabel")
     });
     this.xrLabel10.Dpi                            = 100F;
     this.xrLabel10.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999984F, 22.99998F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Dpi                   = 100F;
     this.xrLabel11.Font                  = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat         = new DevExpress.Utils.PointFloat(366.7467F, 10.00001F);
     this.xrLabel11.Name                  = "xrLabel11";
     this.xrLabel11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text                  = "Hours";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.ProviderTypeCode")
     });
     this.xrLabel9.Dpi                            = 100F;
     this.xrLabel9.Font                           = new System.Drawing.Font("Trebuchet MS", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(145.5128F, 10.00001F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(221.234F, 31.01283F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "xrLabel9";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                     "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo";
     this.DetailReport1.DataSource = this.BillingReportDS;
     this.DetailReport1.Dpi        = 100F;
     this.DetailReport1.Level      = 0;
     this.DetailReport1.Name       = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel12
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23.80127F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursBillable")
     });
     this.xrLabel18.Dpi                            = 100F;
     this.xrLabel18.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(272.9168F, 0F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(55.1282F, 23F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "xrLabel18";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursNotes")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(480.1283F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(269.8719F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.ServiceName")
     });
     this.xrLabel15.Dpi                   = 100F;
     this.xrLabel15.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(328.045F, 0F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(152.0833F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "xrLabel15";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeOut")
     });
     this.xrLabel14.Dpi                            = 100F;
     this.xrLabel14.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(172.9168F, 0F);
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "xrLabel14";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursTimeIn")
     });
     this.xrLabel13.Dpi                            = 100F;
     this.xrLabel13.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(72.91681F, 0F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                                 "fo.webreports_BillingProviderInfowebreports_BillingHoursInfo.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel12.Dpi                            = 100F;
     this.xrLabel12.Font                           = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(72.91681F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "xrLabel12";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_BillingCaseInfo";
     this.PatientName.Expression = "[PatientFirstName] + \' \' + [PatientLastName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                    "fo";
     this.ProviderName.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_BillingCaseInfo.webreports_BillingCaseInfowebreports_BillingProviderIn" +
                                         "fo";
     this.ProviderTypeLabel.Expression = "[ProviderTypeCode] + \':\'";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // BillingRef
     //
     this.BillingRef.Description = "Parameter1";
     this.BillingRef.Name        = "BillingRef";
     this.BillingRef.ValueInfo   = "PREVIEW";
     this.BillingRef.Visible     = false;
     //
     // BillingReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.DetailReport
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.BillingReportDS
     });
     this.DataMember = "webreports_BillingCaseInfo";
     this.DataSource = this.BillingReportDS;
     this.Margins    = new System.Drawing.Printing.Margins(49, 51, 17, 21);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.firstDayOfMonthPeriod,
         this.BillingRef
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #27
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "Att_LeaveRemainingReport.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.xrTableCell1       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3       = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11      = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12      = 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.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell22 = 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_Employee_Leave_Trans_ReportTableAdapter1 = new AttendanceDataSetTableAdapters.sp_Att_Employee_Leave_Trans_ReportTableAdapter();
        this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
        this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
        this.calculatedField2 = new DevExpress.XtraReports.UI.CalculatedField();
        ((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(712F, 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, "Att_Employee_Leave_Trans_Report.Leave_Name")
        });
        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.4312874415578869;
        //
        // xrTableCell6
        //
        this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_Employee_Leave_Trans_Report.Shedule_Type")
        });
        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.95604458552715421;
        //
        // xrTableCell8
        //
        this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Att_Employee_Leave_Trans_Report.Month")
        });
        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.61112460280127046;
        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, "Att_Employee_Leave_Trans_Report.Year")
        });
        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.4735676583462341;
        //
        // xrTableCell10
        //
        this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Att_Employee_Leave_Trans_Report.Assign_Days")
        });
        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.85621222280662235;
        //
        // xrTableCell19
        //
        this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_Employee_Leave_Trans_Report.calculatedField1")
        });
        this.xrTableCell19.Name = "xrTableCell19";
        this.xrTableCell19.StylePriority.UseTextAlignment = false;
        this.xrTableCell19.Text          = "xrTableCell19";
        this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell19.Weight        = 0.81463703895329687;
        //
        // xrTableCell20
        //
        this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_Employee_Leave_Trans_Report.calculatedField2")
        });
        this.xrTableCell20.Name = "xrTableCell20";
        this.xrTableCell20.StylePriority.UseTextAlignment = false;
        this.xrTableCell20.Text          = "xrTableCell20";
        this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        this.xrTableCell20.Weight        = 1.0489849125898805;
        //
        // 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(712F, 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.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell4
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 1;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name = "xrTableCell7";
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "Leave Name";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        this.xrTableCell7.Weight        = 1.3669449759005865;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Name   = "xrTableCell1";
        this.xrTableCell1.Text   = "Schedule Type";
        this.xrTableCell1.Weight = 0.91306646222635934;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name   = "xrTableCell2";
        this.xrTableCell2.Text   = "Month";
        this.xrTableCell2.Weight = 0.58365168371187348;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name   = "xrTableCell3";
        this.xrTableCell3.Text   = "Year";
        this.xrTableCell3.Weight = 0.452278572679668;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name   = "xrTableCell11";
        this.xrTableCell11.Text   = "Assign Leave";
        this.xrTableCell11.Weight = 0.81772210380704968;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name   = "xrTableCell12";
        this.xrTableCell12.Text   = "Used Leave";
        this.xrTableCell12.Weight = 0.77801579472853466;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Name   = "xrTableCell4";
        this.xrTableCell4.Text   = "Remaining Leave";
        this.xrTableCell4.Weight = 1.0018283776456325;
        //
        // 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(399.247F, 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 = 76.00001F;
        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, 1F);
        this.xrPanel1.Name                     = "xrPanel1";
        this.xrPanel1.SizeF                    = new System.Drawing.SizeF(712.0001F, 75.00001F);
        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, 27F);
        this.xrCompAddress.Name                     = "xrCompAddress";
        this.xrCompAddress.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompAddress.SizeF                    = new System.Drawing.SizeF(353.125F, 22.04167F);
        this.xrCompAddress.StylePriority.UseBorders = false;
        this.xrCompAddress.StylePriority.UseFont    = false;
        this.xrCompAddress.Text                     = "xrCompAddress";
        //
        // xrTitle
        //
        this.xrTitle.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTitle.Font                           = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
        this.xrTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(200.2917F, 52.04168F);
        this.xrTitle.Name                           = "xrTitle";
        this.xrTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTitle.SizeF                          = new System.Drawing.SizeF(356.8776F, 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(607.5F, 3F);
        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(2F, 2F);
        this.xrCompName.Name                     = "xrCompName";
        this.xrCompName.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrCompName.SizeF                    = new System.Drawing.SizeF(353.125F, 23F);
        this.xrCompName.StylePriority.UseBorders = false;
        this.xrCompName.StylePriority.UseFont    = false;
        this.xrCompName.Text                     = "xrCompName";
        //
        // GroupHeader2
        //
        this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
            new DevExpress.XtraReports.UI.GroupField("Emp_Code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
        });
        this.GroupHeader2.HeightF = 15.625F;
        this.GroupHeader2.Level   = 1;
        this.GroupHeader2.Name    = "GroupHeader2";
        //
        // xrTable3
        //
        this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrTable3.Font          = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(712.0834F, 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.xrTableCell21,
            this.xrTableCell22
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1;
        //
        // xrTableCell13
        //
        this.xrTableCell13.Name   = "xrTableCell13";
        this.xrTableCell13.Text   = "ID";
        this.xrTableCell13.Weight = 0.336781647507343;
        //
        // 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.18302226053248696;
        //
        // xrTableCell16
        //
        this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Att_Employee_Leave_Trans_Report.Emp_Code")
        });
        this.xrTableCell16.Name   = "xrTableCell16";
        this.xrTableCell16.Text   = "xrTableCell16";
        this.xrTableCell16.Weight = 1.1172698197541959;
        //
        // xrTableCell17
        //
        this.xrTableCell17.Name   = "xrTableCell17";
        this.xrTableCell17.Text   = "Name";
        this.xrTableCell17.Weight = 0.55118778390858836;
        //
        // 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.18838647620110136;
        //
        // xrTableCell15
        //
        this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Att_Employee_Leave_Trans_Report.Emp_Name")
        });
        this.xrTableCell15.Name   = "xrTableCell15";
        this.xrTableCell15.Text   = "xrTableCell15";
        this.xrTableCell15.Weight = 1.8506503231162608;
        //
        // xrTableCell21
        //
        this.xrTableCell21.Name   = "xrTableCell21";
        this.xrTableCell21.Text   = "Date Of Joining :";
        this.xrTableCell21.Weight = 1.1292532658857057;
        //
        // xrTableCell22
        //
        this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Att_Employee_Leave_Trans_Report.Field1")
        });
        this.xrTableCell22.Name         = "xrTableCell22";
        this.xrTableCell22.Text         = "xrTableCell22";
        this.xrTableCell22.Weight       = 1.1521051326240552;
        this.xrTableCell22.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell22_BeforePrint);
        //
        // 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_Employee_Leave_Trans_ReportTableAdapter1
        //
        this.sp_Att_Employee_Leave_Trans_ReportTableAdapter1.ClearBeforeFill = true;
        //
        // xrControlStyle1
        //
        this.xrControlStyle1.Name    = "xrControlStyle1";
        this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
        //
        // calculatedField1
        //
        this.calculatedField1.DataMember = "sp_Att_Employee_Leave_Trans_Report";
        this.calculatedField1.DataSource = this.attendanceDataSet1;
        this.calculatedField1.Expression = "[Used_Days] - [Pending_Days]";
        this.calculatedField1.Name       = "calculatedField1";
        //
        // calculatedField2
        //
        this.calculatedField2.DataMember = "sp_Att_Employee_Leave_Trans_Report";
        this.calculatedField2.DataSource = this.attendanceDataSet1;
        this.calculatedField2.Expression = "[Remaining_Days] + [Pending_Days]";
        this.calculatedField2.Name       = "calculatedField2";
        //
        // Att_LeaveRemainingReport
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupHeader1,
            this.PageFooter,
            this.ReportHeader,
            this.GroupHeader2
        });
        this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
            this.calculatedField1,
            this.calculatedField2
        });
        this.DataAdapter = this.sp_Att_Employee_Leave_Trans_ReportTableAdapter1;
        this.DataMember  = "sp_Att_Employee_Leave_Trans_Report";
        this.DataSource  = this.attendanceDataSet1;
        this.Font        = new System.Drawing.Font("Times New Roman", 9.75F);
        this.Margins     = new System.Drawing.Printing.Margins(66, 66, 0, 0);
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.xrControlStyle1
        });
        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();
    }
コード例 #28
0
ファイル: Mau09A-PL-TNCN.cs プロジェクト: ewin66/dev
 /// <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.TopMargin     = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin  = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel69     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1      = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel18     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16     = new DevExpress.XtraReports.UI.XRLabel();
     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();
     this.xrTableCell4  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow6   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow7   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow8   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9   = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5  = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 468.75F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrPanel1,
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel8,
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel69
     });
     this.GroupHeader1.HeightF = 359.7917F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel69
     //
     this.xrLabel69.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel69.LocationFloat                  = new DevExpress.Utils.PointFloat(571.1945F, 10.00001F);
     this.xrLabel69.Name                           = "xrLabel69";
     this.xrLabel69.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel69.SizeF                          = new System.Drawing.SizeF(167.8055F, 22.99998F);
     this.xrLabel69.StylePriority.UseFont          = false;
     this.xrLabel69.StylePriority.UseTextAlignment = false;
     this.xrLabel69.Text                           = "Mẫu số: 09A/PL-TNCN";
     this.xrLabel69.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(12.5F, 37.5F);
     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(728.9999F, 56.33335F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "PHỤ LỤC\r\nTHU NHẬP TỪ TIỀN LƯƠNG, TIỀN CÔNG";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(12.5F, 93.83335F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(728.9999F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "(Kèm theo tờ khai quyết toán thuế thu nhập cá nhân mẫu số 09/KK-TNCN năm 2013)";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(202.6934F, 147.875F);
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "................................................................................." +
                                                    ".........";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(32.04253F, 147.875F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(170.6509F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Tên người nộp thuế:";
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(202.6934F, 183.2916F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(32.04253F, 183.2916F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(170.6509F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "Mã số thuế:";
     //
     // xrLabel12
     //
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(32.0426F, 252.0416F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(170.6508F, 22.99998F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "Mã số thuế:";
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(202.6935F, 252.0416F);
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(32.04257F, 218.7083F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(170.6509F, 23.00006F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "Tên đại lý thuế (nếu có):";
     //
     // xrLabel15
     //
     this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(202.6934F, 218.7083F);
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(391.3473F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "................................................................................." +
                                                     ".........";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel16
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 325F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(729.9999F, 34.79169F);
     //
     // xrLabel18
     //
     this.xrLabel18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(561.2499F, 0F);
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(168.75F, 34.79166F);
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "Số người/Số tiền";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel17.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(56.66666F, 0F);
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(504.5832F, 34.79172F);
     this.xrLabel17.StylePriority.UseBorders       = false;
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Chỉ tiêu";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel16
     //
     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("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(56.66664F, 34.79166F);
     this.xrLabel16.StylePriority.UseBorders       = false;
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "STT";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(526.6826F, 302.0001F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(212.3174F, 22.99997F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Đơn vị tiền: Đồng Việt Nam";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 12F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow2,
         this.xrTableRow3,
         this.xrTableRow4,
         this.xrTableRow5,
         this.xrTableRow6,
         this.xrTableRow7,
         this.xrTableRow8,
         this.xrTableRow9
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(729.9999F, 281.25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell5,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "1";
     this.xrTableCell1.Weight = 0.23287668856296295D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = " Tổng thu nhập chịu thuế phát sinh trong kỳ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 1.8802028821474479D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "0";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell4.Weight        = 0.69349380227599289D;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell10
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "1.1.1";
     this.xrTableCell6.Weight = 0.23287668856296295D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = " Thu nhập phát sinh tại Việt Nam trong đó:";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 1.8802028821474479D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "0";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell10.Weight        = 0.69349380227599289D;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell15
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "1.1.2";
     this.xrTableCell11.Weight = 0.23287668856296295D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = " Thu nhập làm căn cứ tính giảm thuế";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell12.Weight        = 1.8802028821474479D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "0";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell15.Weight        = 0.69349380227599289D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell20
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "1.2";
     this.xrTableCell16.Weight = 0.23287668856296295D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = " Thu nhập phát sinh ngoài Việt Nam";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell17.Weight        = 1.8802028821474479D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text          = "0";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell20.Weight        = 0.69349380227599289D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell21,
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell25
     });
     this.xrTableRow5.Name   = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name   = "xrTableCell21";
     this.xrTableCell21.Text   = "2";
     this.xrTableCell21.Weight = 0.23287668856296295D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.StylePriority.UseTextAlignment = false;
     this.xrTableCell22.Text          = " Tổng số thuế đơn vị trả thu nhập đã khấu trừ trong kỳ";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell22.Weight        = 1.8802028821474479D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text          = "0";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell25.Weight        = 0.69349380227599289D;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27,
         this.xrTableCell28,
         this.xrTableCell30
     });
     this.xrTableRow6.Name   = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Name   = "xrTableCell26";
     this.xrTableCell26.Text   = "2.1";
     this.xrTableCell26.Weight = 0.23287668856296295D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.StylePriority.UseTextAlignment = false;
     this.xrTableCell27.Text          = " Tổng số thuế đã khấu trừ theo biểu luỹ tiến từng phần";
     this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell27.Weight        = 1.8802028821474479D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.Text          = "0";
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell30.Weight        = 0.69349380227599289D;
     //
     // xrTableRow7
     //
     this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell31,
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell35
     });
     this.xrTableRow7.Name   = "xrTableRow7";
     this.xrTableRow7.Weight = 1D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.Name   = "xrTableCell31";
     this.xrTableCell31.Text   = "2.2";
     this.xrTableCell31.Weight = 0.23287668856296295D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseTextAlignment = false;
     this.xrTableCell32.Text          = " Tổng số thuế đã khấu trừ theo mức 10%";
     this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell32.Weight        = 1.8802028821474479D;
     //
     // xrTableCell33
     //
     this.xrTableCell33.Name   = "xrTableCell33";
     this.xrTableCell33.Text   = "[11]";
     this.xrTableCell33.Weight = 0.19342662701359623D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     this.xrTableCell35.Text          = "0";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell35.Weight        = 0.69349380227599289D;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell40
     });
     this.xrTableRow8.Name   = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.Name   = "xrTableCell36";
     this.xrTableCell36.Text   = "3";
     this.xrTableCell36.Weight = 0.23287668856296295D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.Name = "xrTableCell37";
     this.xrTableCell37.StylePriority.UseTextAlignment = false;
     this.xrTableCell37.Text          = " Tổng số thuế đã tạm nộp tại Việt Nam";
     this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell37.Weight        = 1.8802028821474479D;
     //
     // xrTableCell38
     //
     this.xrTableCell38.Name   = "xrTableCell38";
     this.xrTableCell38.Text   = "[12]";
     this.xrTableCell38.Weight = 0.19342662701359623D;
     //
     // xrTableCell40
     //
     this.xrTableCell40.Name = "xrTableCell40";
     this.xrTableCell40.StylePriority.UseTextAlignment = false;
     this.xrTableCell40.Text          = "0";
     this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell40.Weight        = 0.69349380227599289D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell45
     });
     this.xrTableRow9.Name   = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell41
     //
     this.xrTableCell41.Name   = "xrTableCell41";
     this.xrTableCell41.Text   = "4";
     this.xrTableCell41.Weight = 0.23287668856296295D;
     //
     // xrTableCell42
     //
     this.xrTableCell42.Name = "xrTableCell42";
     this.xrTableCell42.StylePriority.UseTextAlignment = false;
     this.xrTableCell42.Text          = "Tổng số thuế đã nộp ngoài Việt Nam";
     this.xrTableCell42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell42.Weight        = 1.8802028821474479D;
     //
     // xrTableCell43
     //
     this.xrTableCell43.Name   = "xrTableCell43";
     this.xrTableCell43.Text   = "[13]";
     this.xrTableCell43.Weight = 0.19342662701359623D;
     //
     // xrTableCell45
     //
     this.xrTableCell45.Name = "xrTableCell45";
     this.xrTableCell45.StylePriority.UseTextAlignment = false;
     this.xrTableCell45.Text          = "0";
     this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell45.Weight        = 0.69349380227599289D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Name   = "xrTableCell28";
     this.xrTableCell28.Text   = "[10]";
     this.xrTableCell28.Weight = 0.19342662701359623D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.Name   = "xrTableCell23";
     this.xrTableCell23.Text   = "[09]";
     this.xrTableCell23.Weight = 0.19342662701359623D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Text   = "[08]";
     this.xrTableCell18.Weight = 0.19342662701359623D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "[07]";
     this.xrTableCell13.Weight = 0.19342662701359623D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "[06]";
     this.xrTableCell8.Weight = 0.19342662701359623D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "[05]";
     this.xrTableCell5.Weight = 0.19342662701359623D;
     //
     // Mau09A_PL_TNCN
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1
     });
     this.Margins = new System.Drawing.Printing.Margins(49, 52, 100, 100);
     this.Version = "13.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #29
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(CategoriesReport));
     this.detailBand1              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell12            = 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.xrPictureBox2            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.SubBand1                 = new DevExpress.XtraReports.UI.SubBand();
     this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.topMarginBand1           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = 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.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     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.xrTableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.detailBand1.HeightF      = 25F;
     this.detailBand1.KeepTogether = true;
     this.detailBand1.Name         = "detailBand1";
     this.detailBand1.SubBands.AddRange(new DevExpress.XtraReports.UI.SubBand[] {
         this.SubBand1
     });
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable2.SizeF     = new System.Drawing.SizeF(649.9999F, 25F);
     this.xrTable2.StyleName = "DetailData3_Odd";
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell16
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 11.5D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryID")
     });
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.StyleName = "DetailData3";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight        = 0.11868788812802504D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryName")
     });
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.StyleName = "DetailData3";
     this.xrTableCell13.Text      = "xrTableCell13";
     this.xrTableCell13.Weight    = 0.37991931308141D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.Description")
     });
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StyleName = "DetailData3";
     this.xrTableCell14.Text      = "xrTableCell14";
     this.xrTableCell14.Weight    = 0.2116991483248197D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox2
     });
     this.xrTableCell16.Name      = "xrTableCell16";
     this.xrTableCell16.StyleName = "DetailData3";
     this.xrTableCell16.Text      = "xrTableCell16";
     this.xrTableCell16.Weight    = 0.14484694260817307D;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.AnchorHorizontal = ((DevExpress.XtraReports.UI.HorizontalAnchorStyles)((DevExpress.XtraReports.UI.HorizontalAnchorStyles.Left | DevExpress.XtraReports.UI.HorizontalAnchorStyles.Right)));
     this.xrPictureBox2.AnchorVertical   = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "Categories.Icon25")
     });
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(110.0978F, 25F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // SubBand1
     //
     this.SubBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1
     });
     this.SubBand1.HeightF      = 152.0833F;
     this.SubBand1.KeepTogether = true;
     this.SubBand1.Name         = "SubBand1";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.AnchorHorizontal = ((DevExpress.XtraReports.UI.HorizontalAnchorStyles)((DevExpress.XtraReports.UI.HorizontalAnchorStyles.Left | DevExpress.XtraReports.UI.HorizontalAnchorStyles.Right)));
     this.xrPictureBox1.AnchorVertical   = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "Categories.Picture")
     });
     this.xrPictureBox1.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.MiddleCenter;
     this.xrPictureBox1.LocationFloat  = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrPictureBox1.Name           = "xrPictureBox1";
     this.xrPictureBox1.SizeF          = new System.Drawing.SizeF(650.0001F, 152.0833F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "nwind";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "CategoryID";
     table1.Name                  = "Categories";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "CategoryName";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Picture";
     columnExpression4.Table      = table1;
     column4.Expression           = columnExpression4;
     columnExpression5.ColumnName = "Icon17";
     columnExpression5.Table      = table1;
     column5.Expression           = columnExpression5;
     columnExpression6.ColumnName = "Icon25";
     columnExpression6.Table      = table1;
     column6.Expression           = columnExpression6;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Name = "Categories";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = "PERhdGFTZXQgTmFtZT0ic3FsRGF0YVNvdXJjZTEiPjxWaWV3IE5hbWU9IkNhdGVnb3JpZXMiPjxGaWVsZCBOYW1lPSJDYXRlZ29yeUlEIiBUeXBlPSJJbnQ2NCIgLz48RmllbGQgTmFtZT0iQ2F0ZWdvcnlOYW1lIiBUeXBlPSJTdHJpbmciIC8+PEZpZWxkIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTdHJpbmciIC8+PEZpZWxkIE5hbWU9IlBpY3R1cmUiIFR5cGU9IkJ5dGVBcnJheSIgLz48RmllbGQgTmFtZT0iSWNvbjE3IiBUeXBlPSJCeXRlQXJyYXkiIC8+PEZpZWxkIE5hbWU9Ikljb24yNSIgVHlwZT0iQnl0ZUFycmF5IiAvPjwvVmlldz48L0RhdGFTZXQ+";
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     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.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.reportHeaderBand1.HeightF = 60F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
     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(638F, 26F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.Text          = "Categories Report";
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 48F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650.0002F, 28F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell8
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StyleName = "DetailCaption3";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Category ID";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell4.Weight        = 0.1387915469102286D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.Text      = "Category Name";
     this.xrTableCell5.Weight    = 0.3598156777742666D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.Text      = "Description";
     this.xrTableCell6.Weight    = 0.2116991483248197D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.Text      = "Icon25";
     this.xrTableCell8.Weight    = 0.14484688392052283D;
     //
     // 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.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "xrTableCell1";
     this.xrTableCell1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "xrTableCell3";
     this.xrTableCell3.Weight = 1D;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "xrTableCell9";
     this.xrTableCell9.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "xrTableCell10";
     this.xrTableCell10.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "xrTableCell11";
     this.xrTableCell11.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("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // CategoriesReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailBand1,
         this.topMarginBand1,
         this.bottomMarginBand1,
         this.reportHeaderBand1,
         this.groupHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Categories";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.objectDataSource1        = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPanel2                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrPictureBox1            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel9                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo3              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPictureBox2            = new DevExpress.XtraReports.UI.XRPictureBox();
     this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
     this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter               = new DevExpress.XtraReports.UI.PageFooterBand();
     this.RigName                  = new DevExpress.XtraReports.Parameters.Parameter();
     this.LogoFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     this.IrmaFile                 = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "DetailData3_Odd";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(748.7307F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell4,
         this.xrTableCell12,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell9.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell9.Multiline             = true;
     this.xrTableCell9.Name                  = "xrTableCell9";
     this.xrTableCell9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.StyleName             = "DetailData3";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.Text                  = "xrTableCell9";
     this.xrTableCell9.TextFormatString      = "{0:dd-MMM-yy}";
     this.xrTableCell9.Weight                = 0.085508701113737734D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[On]")
     });
     this.xrTableCell10.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Multiline             = true;
     this.xrTableCell10.Name                  = "xrTableCell10";
     this.xrTableCell10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell10.StyleName             = "DetailData3";
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.Text                  = "xrTableCell10";
     this.xrTableCell10.TextFormatString      = "{0:hh:mm tt}";
     this.xrTableCell10.Weight                = 0.096022101308237379D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrTableCell11.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell11.Multiline             = true;
     this.xrTableCell11.Name                  = "xrTableCell11";
     this.xrTableCell11.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.StyleName             = "DetailData3";
     this.xrTableCell11.StylePriority.UseFont = false;
     this.xrTableCell11.Text                  = "xrTableCell11";
     this.xrTableCell11.Weight                = 0.16315843921596263D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Company]")
     });
     this.xrTableCell13.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell13.Multiline             = true;
     this.xrTableCell13.Name                  = "xrTableCell13";
     this.xrTableCell13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StyleName             = "DetailData3";
     this.xrTableCell13.StylePriority.UseFont = false;
     this.xrTableCell13.Text                  = "xrTableCell13";
     this.xrTableCell13.Weight                = 0.14489572133280498D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Nationality]")
     });
     this.xrTableCell14.Font                  = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell14.Multiline             = true;
     this.xrTableCell14.Name                  = "xrTableCell14";
     this.xrTableCell14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell14.StyleName             = "DetailData3";
     this.xrTableCell14.StylePriority.UseFont = false;
     this.xrTableCell14.Text                  = "xrTableCell14";
     this.xrTableCell14.Weight                = 0.14606979385860874D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Multiline                      = true;
     this.xrTableCell4.Name                           = "xrTableCell4";
     this.xrTableCell4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UsePadding       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight                         = 0.11698113649059191D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Multiline                      = true;
     this.xrTableCell12.Name                           = "xrTableCell12";
     this.xrTableCell12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UsePadding       = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell12.Weight                         = 0.12283572893081503D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Font                           = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell16.Multiline                      = true;
     this.xrTableCell16.Name                           = "xrTableCell16";
     this.xrTableCell16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell16.StylePriority.UseFont          = false;
     this.xrTableCell16.StylePriority.UsePadding       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell16.Weight                         = 0.12283572893081503D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 49.0566F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 183F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Ensco.Irma.Models.PobArrivalLogModel);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName                      = "PageInfo";
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Arial", 8.150944F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(437.0001F, 0F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName                      = "PageInfo";
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo2.TextFormatString               = "Page {0} of {1}";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2
     });
     this.reportHeaderBand1.HeightF = 71.69814F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrPanel2
     //
     this.xrPanel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel9,
         this.xrLabel1,
         this.xrPageInfo3,
         this.xrPictureBox2
     });
     this.xrPanel2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel2.Name                     = "xrPanel2";
     this.xrPanel2.SizeF                    = new System.Drawing.SizeF(750F, 64.62264F);
     this.xrPanel2.StylePriority.UseBorders = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox1.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\ensco.png";
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(10F, 4.830155F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(128.1132F, 55.0755F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     this.xrPictureBox1.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox1_BeforePrint);
     //
     // xrLabel9
     //
     this.xrLabel9.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(109)))), ((int)(((byte)(31)))));
     this.xrLabel9.Font          = new System.Drawing.Font("Arial", 14.26415F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.ForeColor     = System.Drawing.Color.White;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(138.1132F, 4.830154F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(468.0671F, 25.55338F);
     this.xrLabel9.StyleName     = "Title";
     this.xrLabel9.StylePriority.UseBackColor     = false;
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseForeColor     = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "PoB Arrival Log";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[RigName]")
     });
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(138.1132F, 31.01884F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(242.1887F, 28.88681F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Arial", 12.22642F, System.Drawing.FontStyle.Bold);
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(449.0566F, 31.01884F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(157.1237F, 28.88681F);
     this.xrPageInfo3.StylePriority.UseBorders       = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPageInfo3.TextFormatString               = "{0:dd-MMM-yyyy}";
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.xrPictureBox2.ImageUrl                 = "C:\\Workspace\\IRMA\\Development\\EnscoApps\\Ensco.App\\Ensco.App\\Images\\irma.png";
     this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(606.1803F, 4.830155F);
     this.xrPictureBox2.Name                     = "xrPictureBox2";
     this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(135.8197F, 55.0755F);
     this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox2.StylePriority.UseBorders = false;
     this.xrPictureBox2.BeforePrint             += new System.Drawing.Printing.PrintEventHandler(this.xrPictureBox2_BeforePrint);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.groupHeaderBand1.HeightF    = 83.84906F;
     this.groupHeaderBand1.Name       = "groupHeaderBand1";
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(750.0001F, 83.84906F);
     this.xrPanel1.StyleName     = "DetailCaptionBackground3";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(750.0001F, 63.84905F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell15
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell1.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor = System.Drawing.Color.White;
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.StyleName = "DetailCaption3";
     this.xrTableCell1.StylePriority.UseBackColor     = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseForeColor     = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Date";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight        = 0.085508713609139336D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell2.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor = System.Drawing.Color.White;
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.StyleName = "DetailCaption3";
     this.xrTableCell2.StylePriority.UseBackColor     = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Time";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 0.096022124623418637D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell3.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell3.ForeColor = System.Drawing.Color.White;
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.StyleName = "DetailCaption3";
     this.xrTableCell3.StylePriority.UseBackColor     = false;
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseForeColor     = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "Name";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight        = 0.16315849336310651D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell5.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.ForeColor = System.Drawing.Color.White;
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StyleName = "DetailCaption3";
     this.xrTableCell5.StylePriority.UseBackColor     = false;
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UseForeColor     = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Company";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell5.Weight        = 0.14489574427297924D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell6.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.ForeColor = System.Drawing.Color.White;
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StyleName = "DetailCaption3";
     this.xrTableCell6.StylePriority.UseBackColor     = false;
     this.xrTableCell6.StylePriority.UseFont          = false;
     this.xrTableCell6.StylePriority.UseForeColor     = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Nationality";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 0.14606973352082775D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell7.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.ForeColor = System.Drawing.Color.White;
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StyleName = "DetailCaption3";
     this.xrTableCell7.StylePriority.UseBackColor     = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Cell Phone (Y/N)";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 0.1169811957031249D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell8.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell8.ForeColor = System.Drawing.Color.White;
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.StyleName = "DetailCaption3";
     this.xrTableCell8.StylePriority.UseBackColor     = false;
     this.xrTableCell8.StylePriority.UseFont          = false;
     this.xrTableCell8.StylePriority.UseForeColor     = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "Presciption Medication (Y/N)";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight        = 0.12283577336338467D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(127)))));
     this.xrTableCell15.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell15.Font      = new System.Drawing.Font("Arial", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.ForeColor = System.Drawing.Color.White;
     this.xrTableCell15.Multiline = true;
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell15.StylePriority.UseBackColor     = false;
     this.xrTableCell15.StylePriority.UseBorders       = false;
     this.xrTableCell15.StylePriority.UseFont          = false;
     this.xrTableCell15.StylePriority.UseForeColor     = false;
     this.xrTableCell15.StylePriority.UsePadding       = false;
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "Signature";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell15.Weight        = 0.12452827820435866D;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption3
     //
     this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
     this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption3.Name          = "DetailCaption3";
     this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3
     //
     this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3.Name          = "DetailData3";
     this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailCaptionBackground3
     //
     this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
     this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
     this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
     this.DetailCaptionBackground3.BorderWidth = 2F;
     this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 26.41509F;
     this.PageFooter.Name    = "PageFooter";
     //
     // RigName
     //
     this.RigName.Description = "RigName";
     this.RigName.Name        = "RigName";
     this.RigName.Visible     = false;
     //
     // LogoFile
     //
     this.LogoFile.Description = "LogoFile";
     this.LogoFile.Name        = "LogoFile";
     this.LogoFile.Visible     = false;
     //
     // IrmaFile
     //
     this.IrmaFile.Description = "IrmaFile";
     this.IrmaFile.Name        = "IrmaFile";
     this.IrmaFile.Visible     = false;
     //
     // PobArrivalLogReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.reportHeaderBand1,
         this.groupHeaderBand1,
         this.PageFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(51, 49, 49, 183);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.RigName,
         this.LogoFile,
         this.IrmaFile
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption3,
         this.DetailData3,
         this.DetailData3_Odd,
         this.DetailCaptionBackground3,
         this.PageInfo
     });
     this.Version = "18.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
コード例 #31
0
ファイル: rptComplaint.cs プロジェクト: dadotnetkid/BrgyMgmt
 /// <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(rptComplaint));
     DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo objectConstructorInfo1 = new DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel32         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel31         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1          = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel29         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel30         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox3     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox4     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1  = new DevExpress.XtraReports.UI.CalculatedField();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF = 50F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(528.7499F, 17.00001F);
     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.TopRight;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel32,
         this.xrLine3,
         this.xrLabel31,
         this.xrPanel1,
         this.xrLabel29,
         this.xrLabel28,
         this.xrLine1,
         this.xrLabel23,
         this.xrLabel24,
         this.xrLabel25,
         this.xrLabel26,
         this.xrLabel27,
         this.xrLabel17,
         this.xrLabel18,
         this.xrLabel20,
         this.xrLabel21,
         this.xrLabel22,
         this.xrLabel19,
         this.xrLabel15,
         this.xrLabel16,
         this.xrLabel13,
         this.xrLabel14,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel2
     });
     this.Detail.HeightF = 352.9167F;
     this.Detail.Name    = "Detail";
     //
     // xrLabel32
     //
     this.xrLabel32.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel32.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel32.LocationFloat                  = new DevExpress.Utils.PointFloat(378.7498F, 334.9167F);
     this.xrLabel32.Multiline                      = true;
     this.xrLabel32.Name                           = "xrLabel32";
     this.xrLabel32.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel32.SizeF                          = new System.Drawing.SizeF(250F, 18F);
     this.xrLabel32.StylePriority.UseBorders       = false;
     this.xrLabel32.StylePriority.UseFont          = false;
     this.xrLabel32.StylePriority.UseTextAlignment = false;
     this.xrLabel32.Text                           = "Date:_______________";
     this.xrLabel32.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLine3
     //
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(158.9581F, 350.9167F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(200F, 2F);
     //
     // xrLabel31
     //
     this.xrLabel31.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel31.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel31.LocationFloat                  = new DevExpress.Utils.PointFloat(10.00001F, 334.9167F);
     this.xrLabel31.Multiline                      = true;
     this.xrLabel31.Name                           = "xrLabel31";
     this.xrLabel31.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.SizeF                          = new System.Drawing.SizeF(137.5F, 18F);
     this.xrLabel31.StylePriority.UseBorders       = false;
     this.xrLabel31.StylePriority.UseFont          = false;
     this.xrLabel31.StylePriority.UseTextAlignment = false;
     this.xrLabel31.Text                           = "Complainant Signature:";
     this.xrLabel31.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // 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.xrLabel8,
         this.xrLabel7,
         this.xrLabel1,
         this.xrLabel5
     });
     this.xrPanel1.LocationFloat            = new DevExpress.Utils.PointFloat(10.38461F, 0F);
     this.xrPanel1.Name                     = "xrPanel1";
     this.xrPanel1.SizeF                    = new System.Drawing.SizeF(281.25F, 54.58334F);
     this.xrPanel1.StylePriority.UseBorders = false;
     //
     // xrLabel8
     //
     this.xrLabel8.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateRecorded]")
     });
     this.xrLabel8.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(110.3846F, 28.00003F);
     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, 18F);
     this.xrLabel8.StylePriority.UseBorders       = false;
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "xrLabel5";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel7.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38458F, 27.99997F);
     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(100F, 18F);
     this.xrLabel7.StylePriority.UseBorders       = false;
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Recorded:";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 10F);
     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(100F, 18F);
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Case #:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ComplaintId]")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(110.3846F, 10F);
     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(150F, 18F);
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "xrLabel5";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Narative]")
     });
     this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(10.38461F, 286.1667F);
     this.xrLabel29.Multiline     = true;
     this.xrLabel29.Name          = "xrLabel29";
     this.xrLabel29.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.SizeF         = new System.Drawing.SizeF(618.3653F, 23F);
     this.xrLabel29.StylePriority.UseTextAlignment = false;
     this.xrLabel29.Text          = "xrLabel29";
     this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
     //
     // xrLabel28
     //
     this.xrLabel28.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(251.0417F, 261.3045F);
     this.xrLabel28.Multiline                      = true;
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(151.0417F, 18F);
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "NARRATIVE";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(68.74991F, 248.8878F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(520F, 2F);
     //
     // xrLabel23
     //
     this.xrLabel23.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Underline);
     this.xrLabel23.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38454F, 180.0834F);
     this.xrLabel23.Multiline                      = true;
     this.xrLabel23.Name                           = "xrLabel23";
     this.xrLabel23.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text                           = "Victims";
     this.xrLabel23.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NonResidentVictims]")
     });
     this.xrLabel24.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel24.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 216.0834F);
     this.xrLabel24.Multiline                      = true;
     this.xrLabel24.Name                           = "xrLabel24";
     this.xrLabel24.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                          = new System.Drawing.SizeF(400F, 18F);
     this.xrLabel24.StylePriority.UseFont          = false;
     this.xrLabel24.StylePriority.UseTextAlignment = false;
     this.xrLabel24.Text                           = "xrLabel5";
     this.xrLabel24.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel25
     //
     this.xrLabel25.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel25.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38454F, 216.0834F);
     this.xrLabel25.Multiline                      = true;
     this.xrLabel25.Name                           = "xrLabel25";
     this.xrLabel25.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel25.StylePriority.UseFont          = false;
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     this.xrLabel25.Text                           = "     Non-Residents:";
     this.xrLabel25.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel26.LocationFloat                  = new DevExpress.Utils.PointFloat(10.3845F, 198.0833F);
     this.xrLabel26.Multiline                      = true;
     this.xrLabel26.Name                           = "xrLabel26";
     this.xrLabel26.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text                           = "     Resident:";
     this.xrLabel26.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel27
     //
     this.xrLabel27.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResidentVictims]")
     });
     this.xrLabel27.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel27.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 198.0833F);
     this.xrLabel27.Multiline                      = true;
     this.xrLabel27.Name                           = "xrLabel27";
     this.xrLabel27.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                          = new System.Drawing.SizeF(400F, 18F);
     this.xrLabel27.StylePriority.UseFont          = false;
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     this.xrLabel27.Text                           = "xrLabel5";
     this.xrLabel27.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel17
     //
     this.xrLabel17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResidentRespondents]")
     });
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 144.0833F);
     this.xrLabel17.Multiline                      = true;
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(400F, 18F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "xrLabel5";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(10.3845F, 144.0833F);
     this.xrLabel18.Multiline                      = true;
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "     Resident:";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38456F, 162.0834F);
     this.xrLabel20.Multiline                      = true;
     this.xrLabel20.Name                           = "xrLabel20";
     this.xrLabel20.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text                           = "     Non-Residents:";
     this.xrLabel20.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NonResidentRespondents]")
     });
     this.xrLabel21.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel21.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 162.0834F);
     this.xrLabel21.Multiline                      = true;
     this.xrLabel21.Name                           = "xrLabel21";
     this.xrLabel21.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF                          = new System.Drawing.SizeF(400F, 18F);
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text                           = "xrLabel5";
     this.xrLabel21.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Underline);
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38456F, 126.0834F);
     this.xrLabel22.Multiline                      = true;
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "Respondents";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Underline);
     this.xrLabel19.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38461F, 72.08337F);
     this.xrLabel19.Multiline                      = true;
     this.xrLabel19.Name                           = "xrLabel19";
     this.xrLabel19.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                          = new System.Drawing.SizeF(218.3653F, 18F);
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text                           = "Complainants";
     this.xrLabel19.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NonResidentComplainants]")
     });
     this.xrLabel15.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7499F, 108.0834F);
     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(400F, 18F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "xrLabel5";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38461F, 108.0834F);
     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(218.3653F, 18F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "     Non-Residents:";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(10.38453F, 90.08337F);
     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(218.3653F, 18F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "     Resident:";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ResidentComplainants]")
     });
     this.xrLabel14.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 90.08337F);
     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(400F, 18F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "xrLabel5";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(318.7498F, 35.99999F);
     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(60F, 18F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Type:";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[IncidentType]")
     });
     this.xrLabel12.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(378.7498F, 35.99999F);
     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(250F, 18F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "xrLabel5";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[IncidentLocation]")
     });
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(378.7498F, 18.00003F);
     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(250F, 18F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "xrLabel5";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(318.7498F, 18.00003F);
     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(60F, 18F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "Location:";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ComplaintTitle]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(378.7498F, 0F);
     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(250F, 18F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel5";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                           = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(318.7498F, 0F);
     this.xrLabel2.Multiline                      = true;
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(60F, 18F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Title:";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel30,
         this.xrLine2,
         this.xrLabel3,
         this.xrPictureBox3,
         this.xrPictureBox4,
         this.xrLabel4
     });
     this.PageHeader.HeightF = 150F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel30
     //
     this.xrLabel30.Font                           = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel30.LocationFloat                  = new DevExpress.Utils.PointFloat(228.7498F, 111.5833F);
     this.xrLabel30.Multiline                      = true;
     this.xrLabel30.Name                           = "xrLabel30";
     this.xrLabel30.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.SizeF                          = new System.Drawing.SizeF(180F, 18F);
     this.xrLabel30.StylePriority.UseFont          = false;
     this.xrLabel30.StylePriority.UseTextAlignment = false;
     this.xrLabel30.Text                           = "COMPLAINT REPORT";
     this.xrLabel30.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 93F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(626.0417F, 2F);
     //
     // 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(210F, 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;
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(80F, 0F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(80F, 90F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrPictureBox4
     //
     this.xrPictureBox4.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox4.ImageSource"));
     this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(490F, 0F);
     this.xrPictureBox4.Name          = "xrPictureBox4";
     this.xrPictureBox4.SizeF         = new System.Drawing.SizeF(80F, 90F);
     this.xrPictureBox4.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(195F, 70F);
     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";
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember = "Blotters";
     this.calculatedField1.FieldType  = DevExpress.XtraReports.UI.FieldType.String;
     this.calculatedField1.Name       = "calculatedField1";
     //
     // objectDataSource1
     //
     this.objectDataSource1.Constructor = objectConstructorInfo1;
     this.objectDataSource1.DataSource  = typeof(BrgyMgmt.Web.Models.ComplaintReport);
     this.objectDataSource1.Name        = "objectDataSource1";
     //
     // rptComplaint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.PageHeader
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource  = this.objectDataSource1;
     this.DisplayName = "rptComplaint";
     this.Font        = new System.Drawing.Font("Arial", 9.75F);
     this.Margins     = new System.Drawing.Printing.Margins(100, 100, 20, 50);
     this.Version     = "20.1";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }