internal static void ValidateStyleName(XRControlStyle style, string styleName)
 {
     if ((style != null) && string.IsNullOrEmpty(styleName))
     {
         throw new Exception("Invalid style name. " + styleName);
     }
 }
        protected override void Dispose(bool disposing)
        {
            DataSource  = null;
            DataAdapter = null;

            if (fDefaultCellStyle != null)
            {
                fDefaultCellStyle.Dispose();
                fDefaultCellStyle = null;
            }

            if (fDefaultHeaderStyle != null)
            {
                fDefaultHeaderStyle.Dispose();
                fDefaultHeaderStyle = null;
            }

            if (Records != null)
            {
                Records.Clear();
                Records = null;
            }

            dataHelper = null;
            SortFields = null;

            if (Headers != null)
            {
                Headers.ClearHeaders(true);
                Headers = null;
            }

            base.Dispose(disposing);
        }
Exemple #3
0
        void DrawLineByStyle(Graphics gr, ref RectangleF rect, XRControlStyle style, string text)
        {
            rect.Height = gr.MeasureString(text, style.Font, rect.Size, stringFormat).Height;
            Brush brush = new SolidBrush(style.ForeColor);

            using (brush)
            {
                gr.DrawString(text, style.Font, brush, rect, stringFormat);
            }
            rect.Offset(0, rect.Height);
        }
        public void CreateCustomStyles()
        {
            XRControlStyle style1 = new XRControlStyle();
            XRControlStyle style2 = new XRControlStyle();

            style1.Name      = "style1";
            style1.BackColor = Color.AliceBlue;
            style2.Name      = "style2";
            style2.BackColor = Color.Chocolate;

            StyleSheet.Add(style1);
            StyleSheet.Add(style2);
        }
Exemple #5
0
        public void InitStyles(XtraReport rep)
        {
            // Create different odd and even styles
            XRControlStyle Style = new XRControlStyle();

            Style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            Style.BackColor     = Color.White;
            Style.BorderColor   = Color.Black;
            Style.ForeColor     = Color.Black;

            // Add styles to report's style sheet
            rep.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { Style });
        }
        public void ApplyStyles(XtraReport report)
        {
            // Create odd and even styles and set up their appearance.
            var oddStyle  = new XRControlStyle();
            var evenStyle = new XRControlStyle();

            oddStyle.BackColor = Color.LightBlue;
            oddStyle.StyleUsing.UseBackColor = true;
            oddStyle.StyleUsing.UseBorders   = false;
            oddStyle.Name = "OddStyle";

            evenStyle.BackColor = Color.LightPink;
            evenStyle.StyleUsing.UseBackColor = true;
            evenStyle.StyleUsing.UseBorders   = false;
            evenStyle.Name = "EvenStyle";

            // Add the styles to the report's StyleSheet collection.
            report.StyleSheet.AddRange(new XRControlStyle[] { oddStyle, evenStyle });
        }
Exemple #7
0
        void DrawStyleSample(Graphics gr, Rectangle rect, XRControlStyleSheet styleSheet)
        {
            Region oldClip = gr.Clip;

            try
            {
                gr.Clip = new Region(rect);
                XRControlStyle titleStyle        = styleSheet[ReportBuilder.StyleNameTitle];
                XRControlStyle fieldCaptionStyle = styleSheet[ReportBuilder.StyleNameFieldCaption];
                XRControlStyle fieldStyle        = styleSheet[ReportBuilder.StyleNameDataField];
                RectangleF     lineRect          = rect;
                DrawLineByStyle(gr, ref lineRect, titleStyle, picPreview.SRTitle);
                DrawLineByStyle(gr, ref lineRect, fieldCaptionStyle, picPreview.SRCaption);
                DrawLineByStyle(gr, ref lineRect, fieldStyle, picPreview.SRData);
            }
            finally
            {
                gr.Clip = oldClip;
                oldClip.Dispose();
            }
        }
Exemple #8
0
        private void CreateReportStyles(XtraReport report)
        {
            // Create different odd and even styles
            XRControlStyle oddStyle  = new XRControlStyle();
            XRControlStyle evenStyle = new XRControlStyle();

            // Specify the odd style appearance
            oddStyle.BackColor = Color.SkyBlue;
            oddStyle.StyleUsing.UseBackColor = true;
            oddStyle.StyleUsing.UseBorders   = false;
            oddStyle.Name = "OddStyle";

            // Specify the even style appearance
            evenStyle.BackColor = Color.Snow;
            evenStyle.StyleUsing.UseBackColor = true;
            evenStyle.StyleUsing.UseBorders   = false;
            evenStyle.Name = "EvenStyle";

            // Add styles to report's style sheet
            report.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { oddStyle, evenStyle });
        }
    //----------------------------------------------------------------------- initStyles
    public void initStyles(XtraReport rep)
    {
        // Create different odd and even styles
        XRControlStyle oddStyle  = new XRControlStyle();
        XRControlStyle evenStyle = new XRControlStyle();

        // Specify the odd style appearance
        oddStyle.BackColor = Color.FromArgb(250, 250, 210);
        oddStyle.StyleUsing.UseBackColor = true;
        oddStyle.StyleUsing.UseBorders   = false;
        oddStyle.Name = "OddStyle";

        // Specify the even style appearance
        evenStyle.BackColor = Color.White;
        evenStyle.StyleUsing.UseBackColor = true;
        evenStyle.StyleUsing.UseBorders   = false;
        evenStyle.Name = "EvenStyle";

        // Add styles to report's style sheet
        rep.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { oddStyle, evenStyle });
    }
        public static void InitStyles(XtraReportBase rep)
        {
            // Create different odd and even styles
            XRControlStyle oddStyle  = new XRControlStyle();
            XRControlStyle evenStyle = new XRControlStyle();

            // Specify the odd style appearance
            oddStyle.BackColor = Color.LightBlue;
            oddStyle.StyleUsing.UseBackColor = true;
            oddStyle.StyleUsing.UseBorders   = false;
            oddStyle.Name = "OddStyle";

            // Specify the even style appearance
            evenStyle.BackColor = Color.LightPink;
            evenStyle.StyleUsing.UseBackColor = true;
            evenStyle.StyleUsing.UseBorders   = false;
            evenStyle.Name = "EvenStyle";

            // Add styles to report's style sheet
            rep.RootReport.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { oddStyle, evenStyle });
        }
Exemple #11
0
 private void ApplyProperties(XRControlStyle sourceStyle, XRControlStyle destStyle, StyleProperty assignedProperties)
 {
     if ((assignedProperties & StyleProperty.BackColor) != 0)
     {
         destStyle.BackColor = sourceStyle.BackColor;
     }
     if ((assignedProperties & StyleProperty.BorderColor) != 0)
     {
         destStyle.BorderColor = sourceStyle.BorderColor;
     }
     if ((assignedProperties & StyleProperty.BorderDashStyle) != 0)
     {
         destStyle.BorderDashStyle = sourceStyle.BorderDashStyle;
     }
     if ((assignedProperties & StyleProperty.Borders) != 0)
     {
         destStyle.Borders = sourceStyle.Borders;
     }
     if ((assignedProperties & StyleProperty.BorderWidth) != 0)
     {
         destStyle.BorderWidth = sourceStyle.BorderWidth;
     }
     if ((assignedProperties & StyleProperty.Font) != 0)
     {
         destStyle.Font = sourceStyle.Font;
     }
     if ((assignedProperties & StyleProperty.ForeColor) != 0)
     {
         destStyle.ForeColor = sourceStyle.ForeColor;
     }
     if ((assignedProperties & StyleProperty.Padding) != 0)
     {
         destStyle.Padding = sourceStyle.Padding;
     }
     if ((assignedProperties & StyleProperty.TextAlignment) != 0)
     {
         destStyle.TextAlignment = sourceStyle.TextAlignment;
     }
 }
Exemple #12
0
        protected virtual BrickStyle GetActualBrickStyle(DataContainerBrick parentBrick, bool isHeader)
        {
            XRControlStyle resultingStyle;


            if (isHeader)
            {
                resultingStyle = new XRControlStyle(ContainerControl.fDefaultHeaderStyle);
                if (((XRDataContainerStyles)ContainerControl.Styles).HeaderStyle != null)
                {
                    ApplyStyleProperties(((XRDataContainerStyles)ContainerControl.Styles).HeaderStyle, resultingStyle);
                }
            }
            else
            {
                resultingStyle = new XRControlStyle(ContainerControl.fDefaultCellStyle);
                if (((XRDataContainerStyles)ContainerControl.Styles).CellStyle != null)
                {
                    ApplyStyleProperties(((XRDataContainerStyles)ContainerControl.Styles).CellStyle, resultingStyle);
                }

                if (parentBrick.PrintCache.RecordsCache.Count % 2 == 0 && ((XRDataContainerStyles)ContainerControl.Styles).OddCellStyle != null)
                {
                    ApplyStyleProperties(((XRDataContainerStyles)ContainerControl.Styles).OddCellStyle, resultingStyle);
                }

                if (parentBrick.PrintCache.RecordsCache.Count % 2 != 0 && ((XRDataContainerStyles)ContainerControl.Styles).EvenCellStyle != null)
                {
                    ApplyStyleProperties(((XRDataContainerStyles)ContainerControl.Styles).EvenCellStyle, resultingStyle);
                }
            }

            resultingStyle.StringFormat = BrickStringFormat.Create(resultingStyle.TextAlignment, ContainerControl.WordWrap);

            return(resultingStyle);
        }
Exemple #13
0
    public static void InitStyles(XtraReport rep)
    {
        XRControlStyle styleNumber = new XRControlStyle();
        styleNumber.StyleUsing.UseBorders = false;
        styleNumber.TextAlignment = TextAlignment.MiddleCenter;
        styleNumber.Font = new System.Drawing.Font("Arial", 9, FontStyle.Bold);
        styleNumber.Padding = new PaddingInfo(3, 3, 4, 4);
        styleNumber.Name = "styleNumber";

        XRControlStyle styleString = new XRControlStyle();
        styleString.StyleUsing.UseBorders = false;
        styleString.TextAlignment = TextAlignment.MiddleCenter;
        styleString.Font = new System.Drawing.Font("Arial", 9, FontStyle.Bold);
        styleString.Padding = new PaddingInfo(3, 3, 4, 4);
        styleString.Name = "styleString";

        XRControlStyle styleDate = new XRControlStyle();
        styleDate.StyleUsing.UseBorders = false;
        styleDate.TextAlignment = TextAlignment.MiddleCenter;
        styleDate.Font = new System.Drawing.Font("Arial", 9, FontStyle.Bold);
        styleDate.Padding = new PaddingInfo(3, 4, 3, 4);
        styleDate.Name = "styleDate";
        rep.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { styleNumber, styleString, styleDate });
    }
Exemple #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrControlStyle1   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     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.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLine3,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLine2,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLine1,
         this.xrLabel5,
         this.xrLabel4
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 198.9583F;
     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       = 12.5F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 12.5F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi                            = 100F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(400F, 26.125F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Republic of the Philippines";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 100F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name = "xrControlStyle1";
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 26.125F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(400F, 26.125F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Murong National High School";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi                            = 100F;
     this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 52.25F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(400F, 26.125F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Murong, Bagabag, Nueva Vizcaya";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(118.75F, 17.79165F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Student Name:";
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(MurongEnrollment.Models.Payments);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Enrollments.Students.FullName")
     });
     this.xrLabel5.Dpi           = 100F;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(118.75F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(271.25F, 17.79165F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.79165F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(400F, 23F);
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ReceiptNumber")
     });
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(133.3333F, 40.79164F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(256.6667F, 17.79165F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.Dpi                   = 100F;
     this.xrLabel7.Font                  = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 40.79164F);
     this.xrLabel7.Name                  = "xrLabel7";
     this.xrLabel7.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                 = new System.Drawing.SizeF(133.3333F, 17.79165F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text                  = "Receipt Number:";
     //
     // xrLine2
     //
     this.xrLine2.Dpi           = 100F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(1.666673F, 117.7083F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(398.3333F, 18.74999F);
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 61.58329F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(133.3333F, 17.79165F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Payment Amount";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaymentAmount")
     });
     this.xrLabel9.Dpi           = 100F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(133.3333F, 61.58329F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(256.6667F, 17.79166F);
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel10
     //
     this.xrLabel10.Dpi                   = 100F;
     this.xrLabel10.Font                  = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 81.37495F);
     this.xrLabel10.Name                  = "xrLabel10";
     this.xrLabel10.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                 = new System.Drawing.SizeF(133.3333F, 17.79165F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.Text                  = "Payment Date:";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaymentDate")
     });
     this.xrLabel11.Dpi           = 100F;
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(133.3333F, 81.37493F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(256.6667F, 17.79165F);
     this.xrLabel11.Text          = "xrLabel11";
     //
     // xrLine3
     //
     this.xrLine3.Dpi           = 100F;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(1.666673F, 159.4583F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(398.3333F, 4.25F);
     //
     // xrLabel12
     //
     this.xrLabel12.Dpi                            = 100F;
     this.xrLabel12.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(1.666673F, 163.7083F);
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(398.3333F, 23.00002F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "Cashier(Signature over printed name)";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReceiptReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(15, 10, 12, 12);
     this.PageHeight = 400;
     this.PageWidth  = 426;
     this.PaperKind  = System.Drawing.Printing.PaperKind.Custom;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).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.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHangHetHan));
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12    = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(825F, 48.95833F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell5,
         this.xrTableCell12
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell8.Summary       = xrSummary1;
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 0.75763685535931025D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TenMatHang")
     });
     this.xrTableCell6.Dpi  = 100F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "xrTableCell6";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight        = 2.2934490375138443D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrTableCell9.Dpi  = 100F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 0.80335648845172447D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi  = 100F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "text";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.2194772748674545D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien", "{0:#,#}")
     });
     this.xrTableCell5.Dpi  = 100F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.4788878045182563D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().hsd")
     });
     this.xrTableCell12.Dpi  = 100F;
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 1.5562916415485952D;
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell2,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi  = 100F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "STT";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 0.94754186476410629D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 100F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Tên mặt hàng";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 2.8683133636581744D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 100F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont          = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "SL";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.0047211441528232D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi       = 100F;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Giá";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.5251447991699609D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Thành tiền ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.8495776226644305D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 100F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "HSD";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.9463830854592059D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 11.54162F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 48.95833F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.Expanded    = false;
     this.PageFooter.HeightF     = 100F;
     this.PageFooter.Name        = "PageFooter";
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 34.45834F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth   = 0F;
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.Font          = new System.Drawing.Font("Sitka Text", 34F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(160)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(804.9999F, 60.20834F);
     this.xrLabel1.StyleName     = "TableStyle";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "Báo Cáo Hàng Hết Hạn Sử Dụng";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(825F, 55.62499F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 94.79166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF               = 55.62499F;
     this.GroupHeader1.Name                  = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage       = true;
     this.GroupHeader1.StylePriority.UseFont = false;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 115.0416F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(825F, 23F);
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().ThanhTien")
     });
     this.xrLabel3.Dpi                        = 100F;
     this.xrLabel3.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel3.LocationFloat              = new DevExpress.Utils.PointFloat(119.8967F, 58.49997F);
     this.xrLabel3.Name                       = "xrLabel3";
     this.xrLabel3.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                      = new System.Drawing.SizeF(546.77F, 30.29169F);
     this.xrLabel3.StylePriority.UseFont      = false;
     this.xrLabel3.StylePriority.UseForeColor = false;
     xrSummary2.FormatString                  = "{0:#,#} VNĐ";
     xrSummary2.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary                    = xrSummary2;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHangHetHan().TongSoLuong")
     });
     this.xrLabel2.Dpi                        = 100F;
     this.xrLabel2.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel2.LocationFloat              = new DevExpress.Utils.PointFloat(160.5217F, 22.99999F);
     this.xrLabel2.Name                       = "xrLabel2";
     this.xrLabel2.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                      = new System.Drawing.SizeF(506.145F, 35.49998F);
     this.xrLabel2.StylePriority.UseFont      = false;
     this.xrLabel2.StylePriority.UseForeColor = false;
     xrSummary3.FormatString                  = "{0:#,#}";
     xrSummary3.Running                       = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel2.Summary                    = xrSummary3;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHangHetHan()";
     storedProcQuery1.StoredProcName = "GetHangHetHan";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                        = 100F;
     this.xrLabel4.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel4.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 22.99999F);
     this.xrLabel4.Name                       = "xrLabel4";
     this.xrLabel4.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                      = new System.Drawing.SizeF(150.5217F, 35.49998F);
     this.xrLabel4.StylePriority.UseFont      = false;
     this.xrLabel4.StylePriority.UseForeColor = false;
     this.xrLabel4.Text                       = "Tổng số lượng:";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi                        = 100F;
     this.xrLabel5.Font                       = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor                  = System.Drawing.Color.Navy;
     this.xrLabel5.LocationFloat              = new DevExpress.Utils.PointFloat(9.999998F, 58.49997F);
     this.xrLabel5.Name                       = "xrLabel5";
     this.xrLabel5.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                      = new System.Drawing.SizeF(109.8967F, 30.29168F);
     this.xrLabel5.StylePriority.UseFont      = false;
     this.xrLabel5.StylePriority.UseForeColor = false;
     this.xrLabel5.Text                       = "Tổng tiền:";
     //
     // BCHangHetHan
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter,
         this.GroupFooter1
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "GetHangHetHan()";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(10, 15, 34, 12);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BorrowedDocs));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7         = new DevExpress.XtraReports.UI.XRTableCell();
     this.DeliveryDateExceeded = new DevExpress.XtraReports.UI.FormattingRule();
     this.xrTableCell8         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11        = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader           = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell15        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3         = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel4             = new DevExpress.XtraReports.UI.XRLabel();
     this.companyLogo          = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.CompanyName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.User             = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     this.formattingRule2  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule3  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule4  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule5  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule6  = new DevExpress.XtraReports.UI.FormattingRule();
     this.formattingRule7  = new DevExpress.XtraReports.UI.FormattingRule();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.StatusImg        = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReceivedPercent  = new DevExpress.XtraReports.UI.CalculatedField();
     this.CompanyId        = new DevExpress.XtraReports.Parameters.Parameter();
     this.Culture          = new DevExpress.XtraReports.Parameters.Parameter();
     this.MappingDocIds    = new DevExpress.XtraReports.Parameters.Parameter();
     this.DocsIds          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportName       = new DevExpress.XtraReports.Parameters.Parameter();
     this.AssignEndDate    = new DevExpress.XtraReports.Parameters.Parameter();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.ConEmpStartDate  = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "SP_BorrowedDocs";
     queryParameter1.Name  = "@Culture";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.Culture]", typeof(string));
     queryParameter2.Name  = "@LoginCompanyId";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.CompanyId]", typeof(int));
     queryParameter3.Name  = "@Doc";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.MappingDocIds]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "SP_BorrowedDocs";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 63.5F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Silver;
     this.xrTable2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth   = 1F;
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.EvenStyleName = "tbl_odd_detail";
     this.xrTable2.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "tbl_even_detail";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders     = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont        = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Site")
     });
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell4.Weight        = 0.11056524965261336D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.Purpose")
     });
     this.xrTableCell1.Dpi  = 254F;
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell1.Weight        = 0.14548798205074123D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.ExpdelvryDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi = 254F;
     this.xrTableCell7.FormattingRules.Add(this.DeliveryDateExceeded);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.10827628442976688D;
     //
     // DeliveryDateExceeded
     //
     this.DeliveryDateExceeded.Condition              = "[ExpdelvryDate]<LocalDateTimeToday()";
     this.DeliveryDateExceeded.DataMember             = "SP_BorrowedDocs";
     this.DeliveryDateExceeded.Formatting.BorderWidth = 1F;
     this.DeliveryDateExceeded.Formatting.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.DeliveryDateExceeded.Formatting.Visible     = DevExpress.Utils.DefaultBoolean.True;
     this.DeliveryDateExceeded.Name = "DeliveryDateExceeded";
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.RecvDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell8.Dpi  = 254F;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.10964101182186527D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DocName")
     });
     this.xrTableCell9.Dpi  = 254F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.16753169367895224D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.JobName")
     });
     this.xrTableCell10.Dpi  = 254F;
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15556520642517518D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.EmpName")
     });
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.18201755971242239D;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 0F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.Dpi       = 254F;
     this.PageHeader.HeightF   = 63.5F;
     this.PageHeader.Name      = "PageHeader";
     this.PageHeader.StyleName = "tbl_header_style";
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(108.7084F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(2742.055F, 63.5F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell15,
         this.xrTableCell14,
         this.xrTableCell13,
         this.xrTableCell6,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Dpi    = 254F;
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "الجهة";
     this.xrTableCell15.Weight = 1.2191038081965198D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Dpi    = 254F;
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "الغرض للإعارة";
     this.xrTableCell14.Weight = 1.6041660107525171D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Dpi    = 254F;
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "التاريخ المتوقع للارتجاع";
     this.xrTableCell13.Weight = 1.1938659267354235D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Dpi    = 254F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "تاريخ الاستلام";
     this.xrTableCell6.Weight = 1.2089125351471246D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 254F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "المستندات المعارة";
     this.xrTableCell5.Weight = 1.8472222615835232D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi    = 254F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "الوظيفة";
     this.xrTableCell2.Weight = 1.7152782049704727D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 254F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "اسم الموظف";
     this.xrTableCell3.Weight = 2.0069445512426181D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.companyLogo,
         this.xrLabel11
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 218.1666F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(883.6393F, 40.98377F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1117.212F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "تقرير المستندات المُعارة للموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // companyLogo
     //
     this.companyLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.companyLogo.Dpi           = 254F;
     this.companyLogo.LocationFloat = new DevExpress.Utils.PointFloat(3.000032F, 1.986098F);
     this.companyLogo.Name          = "companyLogo";
     this.companyLogo.SizeF         = new System.Drawing.SizeF(400F, 200F);
     this.companyLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CompanyName, "Text", "")
     });
     this.xrLabel11.Dpi                            = 254F;
     this.xrLabel11.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(2029.93F, 0F);
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(934.0693F, 105.7759F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // CompanyName
     //
     this.CompanyName.Description = "CompanyName";
     this.CompanyName.Name        = "CompanyName";
     this.CompanyName.Visible     = false;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrPageInfo1,
         this.xrPageInfo2,
         this.xrLabel9
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 71.95106F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     this.xrLabel10.Dpi           = 254F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(707.6166F, 13.53106F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(254F, 58.42F);
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // User
     //
     this.User.Description = "User";
     this.User.Name        = "User";
     this.User.Visible     = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi                            = 254F;
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(2709F, 13.53104F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(254F, 58.42F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(2.999978F, 10.74665F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6506F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi           = 254F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(961.6166F, 13.53106F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(137.5833F, 58.41999F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "المستخدم";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // formattingRule2
     //
     this.formattingRule2.Condition              = "[EmpStatus] == 1";
     this.formattingRule2.DataMember             = "EmployeeDetailsReport";
     this.formattingRule2.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.formattingRule2.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule2.Formatting.BorderWidth = 10F;
     this.formattingRule2.Name = "formattingRule2";
     //
     // formattingRule3
     //
     this.formattingRule3.Condition              = "[EmpStatus] == 2";
     this.formattingRule3.DataMember             = "EmployeeDetailsReport";
     this.formattingRule3.Formatting.BackColor   = System.Drawing.Color.Yellow;
     this.formattingRule3.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule3.Formatting.BorderWidth = 10F;
     this.formattingRule3.Name = "formattingRule3";
     //
     // formattingRule4
     //
     this.formattingRule4.Condition              = "[EmpStatus] == 3";
     this.formattingRule4.DataMember             = "EmployeeDetailsReport";
     this.formattingRule4.Formatting.BackColor   = System.Drawing.Color.Red;
     this.formattingRule4.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule4.Formatting.BorderWidth = 10F;
     this.formattingRule4.Name = "formattingRule4";
     //
     // formattingRule5
     //
     this.formattingRule5.Condition              = "[EmpStatus] == 12";
     this.formattingRule5.DataMember             = "EmployeeDetailsReport";
     this.formattingRule5.Formatting.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.formattingRule5.Formatting.BorderColor = System.Drawing.Color.White;
     this.formattingRule5.Formatting.BorderWidth = 10F;
     this.formattingRule5.Name = "formattingRule5";
     //
     // formattingRule6
     //
     this.formattingRule6.Condition = "[EmpStatus]==1   Or ([EmpStatus] != 0   And  [EmpStatus] != 3   And  [EmpStatus] " +
                                      "!= 12   And [EmpStatus] != 2 )";
     this.formattingRule6.DataMember         = "EmployeeDetailsReport";
     this.formattingRule6.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule6.Name = "formattingRule6";
     //
     // formattingRule7
     //
     this.formattingRule7.Condition          = "[CompanyId] == 4172 And [Source]==\'Company\'  And [TypeId]=1";
     this.formattingRule7.DataMember         = "CompanyDocs.CompanyDocsCompanyDocuments";
     this.formattingRule7.Formatting.Visible = DevExpress.Utils.DefaultBoolean.True;
     this.formattingRule7.Name = "formattingRule7";
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor = System.Drawing.Color.Silver;
     this.GroupCaption3.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.BorderWidth   = 1F;
     this.tbl_header_style.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.BorderWidth   = 1F;
     this.tbl_even_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.BorderWidth   = 1F;
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(13, 13, 13, 13, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // StatusImg
     //
     this.StatusImg.DataMember = "EmployeeDetailsReport";
     this.StatusImg.Expression = "\'~/Content/Icons/\' + ToStr([EmpStatus]) + \'.png\'";
     this.StatusImg.Name       = "StatusImg";
     //
     // ReceivedPercent
     //
     this.ReceivedPercent.DataMember = "SP_EmployeeDocumentsReport";
     this.ReceivedPercent.Expression = "(100*[ReceivedPaperCount])/([MissingPaperCount]+[ReceivedPaperCount])";
     this.ReceivedPercent.Name       = "ReceivedPercent";
     //
     // CompanyId
     //
     this.CompanyId.Description = "CompanyId";
     this.CompanyId.Name        = "CompanyId";
     this.CompanyId.Type        = typeof(int);
     this.CompanyId.ValueInfo   = "0";
     this.CompanyId.Visible     = false;
     //
     // Culture
     //
     this.Culture.Description = "Culture";
     this.Culture.Name        = "Culture";
     this.Culture.ValueInfo   = "ar-EG";
     this.Culture.Visible     = false;
     //
     // MappingDocIds
     //
     this.MappingDocIds.Description = "MappingDocIds";
     this.MappingDocIds.Name        = "MappingDocIds";
     this.MappingDocIds.Visible     = false;
     //
     // DocsIds
     //
     this.DocsIds.Description = "اسم المستند";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "SP_BorrowedDocs";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "DocName";
     dynamicListLookUpSettings1.ValueMember   = "DocID";
     this.DocsIds.LookUpSettings = dynamicListLookUpSettings1;
     this.DocsIds.MultiValue     = true;
     this.DocsIds.Name           = "DocsIds";
     this.DocsIds.Type           = typeof(int);
     //
     // ReportName
     //
     this.ReportName.Description = "ReportName";
     this.ReportName.Name        = "ReportName";
     this.ReportName.ValueInfo   = "BorrowedDocs";
     this.ReportName.Visible     = false;
     //
     // AssignEndDate
     //
     this.AssignEndDate.Description = "إلي";
     this.AssignEndDate.Name        = "AssignEndDate";
     this.AssignEndDate.Type        = typeof(System.DateTime);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("DeptName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 95.25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SP_BorrowedDocs.DeptName")
     });
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2341F, 24.99998F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(509.7639F, 63.19446F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // ConEmpStartDate
     //
     this.ConEmpStartDate.Description = "تاريخ الاستلام من";
     this.ConEmpStartDate.Name        = "ConEmpStartDate";
     this.ConEmpStartDate.Type        = typeof(System.DateTime);
     //
     // BorrowedDocs
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.StatusImg,
         this.ReceivedPercent
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "SP_BorrowedDocs";
     this.DataSource   = this.sqlDataSource1;
     this.Dpi          = 254F;
     this.FilterString = "[RecvDate] Between(?ConEmpStartDate, ?AssignEndDate)";
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.DeliveryDateExceeded,
         this.formattingRule2,
         this.formattingRule3,
         this.formattingRule4,
         this.formattingRule5,
         this.formattingRule6,
         this.formattingRule7
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(3, 3, 0, 0);
     this.PageHeight = 2100;
     this.PageWidth  = 2970;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CompanyId,
         this.User,
         this.CompanyName,
         this.Culture,
         this.DocsIds,
         this.ConEmpStartDate,
         this.MappingDocIds,
         this.ReportName,
         this.AssignEndDate
     });
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
	/// <summary>
	/// Required method for Designer support - do not modify
	/// the contents of this method with the code editor.
	/// </summary>
	public void InitializeComponent() {
            string resourceFileName = "OgrenciSinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.OgrenciSinifListesi.ResourceManager;
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
            this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
            this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
            this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
            this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
            this.cat_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.dersid = new DevExpress.XtraReports.Parameters.Parameter();
            this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "CustomSqlQuery";
            relationColumnInfo1.NestedKeyColumn = "ogr_no";
            relationColumnInfo1.ParentKeyColumn = "ogr_no";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Ogrenci";
            relationInfo1.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo2.NestedKeyColumn = "Sinav_id";
            relationColumnInfo2.ParentKeyColumn = "Sinav_id";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Sinavlar";
            relationInfo2.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo3.NestedKeyColumn = "ders_id";
            relationColumnInfo3.ParentKeyColumn = "ders_id";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "Dersler";
            relationInfo3.ParentTable = "Sinavlar";
            relationColumnInfo4.NestedKeyColumn = "derslik_id";
            relationColumnInfo4.ParentKeyColumn = "derslik_id";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "Derslik";
            relationInfo4.ParentTable = "ogr_sinav_derslik";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4});
            tableInfo1.Name = "ogr_sinav_derslik";
            columnInfo1.Name = "ogr_no";
            columnInfo2.Name = "Sinav_id";
            columnInfo3.Name = "derslik_id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3});
            tableInfo2.Name = "Ogrenci";
            columnInfo4.Name = "ogr_adi";
            columnInfo5.Name = "ogr_soyadi";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo4,
            columnInfo5});
            tableInfo3.Name = "Sinavlar";
            columnInfo6.Name = "ders_id";
            columnInfo7.Name = "tarih";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6,
            columnInfo7});
            tableInfo4.Name = "Dersler";
            columnInfo8.Alias = "Dersler_ders_id";
            columnInfo8.Name = "ders_id";
            columnInfo9.Name = "ders_adi";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo8,
            columnInfo9});
            tableInfo5.Name = "Derslik";
            columnInfo10.Name = "derslik_adi";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo10});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4,
            tableInfo5});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 24.93844F;
            this.Detail.MultiColumn.ColumnSpacing = 10F;
            this.Detail.MultiColumn.ColumnWidth = 355F;
            this.Detail.MultiColumn.Layout = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
            this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StyleName = "DataField";
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrTable2
            // 
            this.xrTable2.BackColor = System.Drawing.Color.Transparent;
            this.xrTable2.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F);
            this.xrTable2.ForeColor = System.Drawing.Color.Black;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(737.5F, 24.39223F);
            this.xrTable2.StylePriority.UseBackColor = false;
            this.xrTable2.StylePriority.UseBorderColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseForeColor = false;
            this.xrTable2.StylePriority.UsePadding = false;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_no")});
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_adi")});
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_soyadi")});
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Text = "xrTableCell7";
            this.xrTableCell7.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.derslik_adi")});
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Weight = 1D;
            // 
            // Title
            // 
            this.Title.BackColor = System.Drawing.Color.Transparent;
            this.Title.BorderColor = System.Drawing.Color.Black;
            this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Title.BorderWidth = 1F;
            this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
            this.Title.ForeColor = System.Drawing.Color.Maroon;
            this.Title.Name = "Title";
            // 
            // FieldCaption
            // 
            this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
            this.FieldCaption.BorderColor = System.Drawing.Color.Black;
            this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.FieldCaption.BorderWidth = 1F;
            this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
            this.FieldCaption.Name = "FieldCaption";
            // 
            // PageInfo
            // 
            this.PageInfo.BackColor = System.Drawing.Color.Transparent;
            this.PageInfo.BorderColor = System.Drawing.Color.Black;
            this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.PageInfo.BorderWidth = 1F;
            this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.PageInfo.ForeColor = System.Drawing.Color.Black;
            this.PageInfo.Name = "PageInfo";
            // 
            // DataField
            // 
            this.DataField.BackColor = System.Drawing.Color.Transparent;
            this.DataField.BorderColor = System.Drawing.Color.Black;
            this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.DataField.BorderWidth = 1F;
            this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.DataField.ForeColor = System.Drawing.Color.Black;
            this.DataField.Name = "DataField";
            this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            // 
            // topMarginBand1
            // 
            this.topMarginBand1.HeightF = 0F;
            this.topMarginBand1.Name = "topMarginBand1";
            // 
            // bottomMarginBand1
            // 
            this.bottomMarginBand1.HeightF = 0F;
            this.bottomMarginBand1.Name = "bottomMarginBand1";
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.ReportHeader.HeightF = 27.41666F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.BorderWidth = 14F;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrLabel1.ForeColor = System.Drawing.Color.Black;
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(253.125F, 26.41666F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorderWidth = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseForeColor = false;
            this.xrLabel1.Text = "Öğrenci Sınıf Listesi";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.PageHeader.HeightF = 33.37498F;
            this.PageHeader.Name = "PageHeader";
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.SlateGray;
            this.xrTable1.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(737.5F, 32.29167F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseBorderColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UsePadding = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "Öğrenci Numarası";
            this.xrTableCell1.Weight = 1D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "Öğrenci Adi";
            this.xrTableCell2.Weight = 1D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "Öğrenci Soyadı";
            this.xrTableCell3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.Text = "Derslik";
            this.xrTableCell4.Weight = 1D;
            // 
            // sharedImageCollection1
            // 
            // 
            // 
            // 
            this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
            this.sharedImageCollection1.ParentControl = null;
            // 
            // cat_id
            // 
            this.cat_id.Description = "categoryid";
            this.cat_id.Name = "cat_id";
            this.cat_id.Type = typeof(int);
            this.cat_id.ValueInfo = "1";
            this.cat_id.Visible = false;
            // 
            // dersid
            // 
            this.dersid.Description = "dersid";
            this.dersid.Name = "dersid";
            this.dersid.Type = typeof(int);
            this.dersid.ValueInfo = "0";
            this.dersid.Visible = false;
            // 
            // formattingRule1
            // 
            this.formattingRule1.Name = "formattingRule1";
            // 
            // XtraReport1
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.topMarginBand1,
            this.bottomMarginBand1,
            this.ReportHeader,
            this.PageHeader});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "CustomSqlQuery";
            this.DataSource = this.sqlDataSource1;
            this.FilterString = "[Sinav_id] = ?dersid";
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1});
            this.Margins = new System.Drawing.Printing.Margins(65, 0, 0, 0);
            this.PageHeight = 1169;
            this.PageWidth = 827;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.cat_id,
            this.dersid});
            this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12;
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
Exemple #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1       = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table3             = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources          = new System.ComponentModel.ComponentResourceManager(typeof(Successful));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData1     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader    = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.pageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1          = new DevExpress.XtraReports.UI.XRLabel();
     this.table1          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.table2          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell10     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPictureBox2   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel7        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel8        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox3   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel9        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox4   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel10       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox5   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox6   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox7   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox8   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox9   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox10  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox11  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox12  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox13  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox14  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox15  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox16  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox17  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox18  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox19  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox20  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox21  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox22  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox23  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox24  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox25  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox26  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox27  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox28  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrRichText1     = new DevExpress.XtraReports.UI.XRRichText();
     this.parameter1      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "desktop-blobtuq\\sqlexpress.INF370test.dbo";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "INF370test";
     msSqlConnectionParameters1.ServerName        = "DESKTOP-BLOBTUQ\\SQLEXPRESS";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "RequestID";
     table3.Name                   = "ServiceRequest";
     columnExpression1.Table       = table3;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "DateStart";
     columnExpression2.Table       = table3;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "DateEnd";
     columnExpression3.Table       = table3;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "Pets";
     columnExpression4.Table       = table3;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "StatusDescription";
     columnExpression5.Table       = table3;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "SpecialNote";
     columnExpression6.Table       = table3;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "PetParentID";
     columnExpression7.Table       = table3;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "PaymentID";
     columnExpression8.Table       = table3;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "TypeID";
     columnExpression9.Table       = table3;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "SuburbID";
     columnExpression10.Table      = table3;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "CityID";
     columnExpression11.Table      = table3;
     column11.Expression           = columnExpression11;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Name = "ServiceRequest";
     selectQuery1.Tables.Add(table3);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption1
     //
     this.DetailCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(23)))), ((int)(((byte)(104)))), ((int)(((byte)(196)))));
     this.DetailCaption1.BorderColor   = System.Drawing.Color.White;
     this.DetailCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.DetailCaption1.BorderWidth   = 2F;
     this.DetailCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.DetailCaption1.ForeColor     = System.Drawing.Color.White;
     this.DetailCaption1.Name          = "DetailCaption1";
     this.DetailCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData1
     //
     this.DetailData1.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.DetailData1.BorderWidth   = 2F;
     this.DetailData1.Font          = new System.Drawing.Font("Arial", 8.25F);
     this.DetailData1.ForeColor     = System.Drawing.Color.Black;
     this.DetailData1.Name          = "DetailData1";
     this.DetailData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(245)))), ((int)(((byte)(248)))));
     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("Arial", 8.25F);
     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;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox2,
         this.xrLabel7,
         this.xrPictureBox1,
         this.xrLabel8,
         this.xrPictureBox3,
         this.xrLabel9,
         this.xrPictureBox4,
         this.xrLabel10,
         this.xrPictureBox5,
         this.xrPictureBox6,
         this.xrPictureBox7,
         this.xrPictureBox8,
         this.xrPictureBox9,
         this.xrPictureBox10,
         this.xrPictureBox11,
         this.xrPictureBox12,
         this.xrPictureBox13,
         this.xrPictureBox14,
         this.xrPictureBox15,
         this.xrPictureBox16,
         this.xrPictureBox17,
         this.xrPictureBox18,
         this.xrPictureBox19,
         this.xrPictureBox20,
         this.xrPictureBox21,
         this.xrPictureBox22,
         this.xrPictureBox23,
         this.xrPictureBox24,
         this.xrPictureBox25,
         this.xrPictureBox26,
         this.xrPictureBox27,
         this.xrPictureBox28
     });
     this.TopMargin.HeightF = 116.4583F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText1,
         this.label1
     });
     this.ReportHeader.HeightF = 148.125F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 28F;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.BackColor     = System.Drawing.Color.MidnightBlue;
     this.label1.BorderColor   = System.Drawing.Color.Black;
     this.label1.ForeColor     = System.Drawing.Color.White;
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.StylePriority.UseBackColor   = false;
     this.label1.StylePriority.UseBorderColor = false;
     this.label1.StylePriority.UseForeColor   = false;
     this.label1.Text = "Successful Booking Report";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 28F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell3,
         this.tableCell4,
         this.tableCell5
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "DetailCaption1";
     this.tableCell1.StylePriority.UseBorders       = false;
     this.tableCell1.StylePriority.UseTextAlignment = false;
     this.tableCell1.Text          = "Request ID";
     this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell1.Weight        = 0.20565889798677883D;
     //
     // tableCell2
     //
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "DetailCaption1";
     this.tableCell2.Text      = "Date Start";
     this.tableCell2.Weight    = 0.18973743145282451D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "DetailCaption1";
     this.tableCell3.Text      = "Date End";
     this.tableCell3.Weight    = 0.17731775137094352D;
     //
     // tableCell4
     //
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "DetailCaption1";
     this.tableCell4.Text      = "Pets";
     this.tableCell4.Weight    = 0.10650382408728966D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "DetailCaption1";
     this.tableCell5.Text      = "Status Description";
     this.tableCell5.Weight    = 0.32078211857722355D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table2.Name          = "table2";
     this.table2.OddStyleName  = "DetailData3_Odd";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell6,
         this.tableCell7,
         this.tableCell8,
         this.tableCell9,
         this.tableCell10
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 11.5D;
     //
     // tableCell6
     //
     this.tableCell6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[RequestID]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "DetailData1";
     this.tableCell6.StylePriority.UseBorders       = false;
     this.tableCell6.StylePriority.UseTextAlignment = false;
     this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell6.Weight        = 0.20565889798677883D;
     //
     // tableCell7
     //
     this.tableCell7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateStart]")
     });
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "DetailData1";
     this.tableCell7.Weight    = 0.18973743145282451D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateEnd]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "DetailData1";
     this.tableCell8.Weight    = 0.17731775137094352D;
     //
     // tableCell9
     //
     this.tableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Pets]")
     });
     this.tableCell9.Name      = "tableCell9";
     this.tableCell9.StyleName = "DetailData1";
     this.tableCell9.Weight    = 0.10650382408728966D;
     //
     // tableCell10
     //
     this.tableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[StatusDescription]")
     });
     this.tableCell10.Name      = "tableCell10";
     this.tableCell10.StyleName = "DetailData1";
     this.tableCell10.Weight    = 0.32078209510216349D;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox2.ImageSource"));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(438.4616F, 15.6795F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel7
     //
     this.xrLabel7.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(471.795F, 15.6795F);
     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(178.205F, 23F);
     this.xrLabel7.StylePriority.UseForeColor = false;
     this.xrLabel7.Text = "Company Contact:0721345678";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(438.4616F, 49.01283F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel8
     //
     this.xrLabel8.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel8.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(471.795F, 49.01283F);
     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(178.205F, 23F);
     this.xrLabel8.StylePriority.UseBackColor = false;
     this.xrLabel8.StylePriority.UseForeColor = false;
     this.xrLabel8.Text = "Company:Petcetra";
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(21.47438F, 15.6795F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel9
     //
     this.xrLabel9.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(54.80772F, 15.6795F);
     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(178.8462F, 23F);
     this.xrLabel9.StylePriority.UseForeColor = false;
     this.xrLabel9.Text = "Generated by:Admin\r\n";
     //
     // xrPictureBox4
     //
     this.xrPictureBox4.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox4.ImageSource"));
     this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(21.47438F, 49.01285F);
     this.xrPictureBox4.Name          = "xrPictureBox4";
     this.xrPictureBox4.SizeF         = new System.Drawing.SizeF(33.33333F, 33.33333F);
     this.xrPictureBox4.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
     //
     // xrLabel10
     //
     this.xrLabel10.ForeColor     = System.Drawing.Color.RoyalBlue;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(54.80772F, 49.01283F);
     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(178.8462F, 23F);
     this.xrLabel10.StylePriority.UseForeColor = false;
     this.xrLabel10.Text = "Date Generated:2019/07/08";
     //
     // xrPictureBox5
     //
     this.xrPictureBox5.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox5.ImageSource"));
     this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(10F, 83.45831F);
     this.xrPictureBox5.Name          = "xrPictureBox5";
     this.xrPictureBox5.SizeF         = new System.Drawing.SizeF(32.30772F, 32.99999F);
     //
     // xrPictureBox6
     //
     this.xrPictureBox6.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox6.ImageSource"));
     this.xrPictureBox6.LocationFloat = new DevExpress.Utils.PointFloat(42.30772F, 83.45831F);
     this.xrPictureBox6.Name          = "xrPictureBox6";
     this.xrPictureBox6.SizeF         = new System.Drawing.SizeF(26.49533F, 32.99999F);
     //
     // xrPictureBox7
     //
     this.xrPictureBox7.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox7.ImageSource"));
     this.xrPictureBox7.LocationFloat = new DevExpress.Utils.PointFloat(68.80304F, 83.45831F);
     this.xrPictureBox7.Name          = "xrPictureBox7";
     this.xrPictureBox7.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox8
     //
     this.xrPictureBox8.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox8.ImageSource"));
     this.xrPictureBox8.LocationFloat = new DevExpress.Utils.PointFloat(95.90244F, 83.45831F);
     this.xrPictureBox8.Name          = "xrPictureBox8";
     this.xrPictureBox8.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox9
     //
     this.xrPictureBox9.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox9.ImageSource"));
     this.xrPictureBox9.LocationFloat = new DevExpress.Utils.PointFloat(123.0018F, 83.45831F);
     this.xrPictureBox9.Name          = "xrPictureBox9";
     this.xrPictureBox9.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox10
     //
     this.xrPictureBox10.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox10.ImageSource"));
     this.xrPictureBox10.LocationFloat = new DevExpress.Utils.PointFloat(150.1012F, 83.45831F);
     this.xrPictureBox10.Name          = "xrPictureBox10";
     this.xrPictureBox10.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox11
     //
     this.xrPictureBox11.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox11.ImageSource"));
     this.xrPictureBox11.LocationFloat = new DevExpress.Utils.PointFloat(177.2006F, 83.45831F);
     this.xrPictureBox11.Name          = "xrPictureBox11";
     this.xrPictureBox11.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox12
     //
     this.xrPictureBox12.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox12.ImageSource"));
     this.xrPictureBox12.LocationFloat = new DevExpress.Utils.PointFloat(204.2999F, 83.45831F);
     this.xrPictureBox12.Name          = "xrPictureBox12";
     this.xrPictureBox12.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox13
     //
     this.xrPictureBox13.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox13.ImageSource"));
     this.xrPictureBox13.LocationFloat = new DevExpress.Utils.PointFloat(231.3993F, 83.45834F);
     this.xrPictureBox13.Name          = "xrPictureBox13";
     this.xrPictureBox13.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox14
     //
     this.xrPictureBox14.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox14.ImageSource"));
     this.xrPictureBox14.LocationFloat = new DevExpress.Utils.PointFloat(258.4986F, 83.45834F);
     this.xrPictureBox14.Name          = "xrPictureBox14";
     this.xrPictureBox14.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox15
     //
     this.xrPictureBox15.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox15.ImageSource"));
     this.xrPictureBox15.LocationFloat = new DevExpress.Utils.PointFloat(285.598F, 83.45834F);
     this.xrPictureBox15.Name          = "xrPictureBox15";
     this.xrPictureBox15.SizeF         = new System.Drawing.SizeF(27.09938F, 32.99999F);
     //
     // xrPictureBox16
     //
     this.xrPictureBox16.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox16.ImageSource"));
     this.xrPictureBox16.LocationFloat = new DevExpress.Utils.PointFloat(312.6974F, 83.45834F);
     this.xrPictureBox16.Name          = "xrPictureBox16";
     this.xrPictureBox16.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox17
     //
     this.xrPictureBox17.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox17.ImageSource"));
     this.xrPictureBox17.LocationFloat = new DevExpress.Utils.PointFloat(339.7807F, 83.45834F);
     this.xrPictureBox17.Name          = "xrPictureBox17";
     this.xrPictureBox17.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox18
     //
     this.xrPictureBox18.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox18.ImageSource"));
     this.xrPictureBox18.LocationFloat = new DevExpress.Utils.PointFloat(366.864F, 83.45834F);
     this.xrPictureBox18.Name          = "xrPictureBox18";
     this.xrPictureBox18.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox19
     //
     this.xrPictureBox19.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox19.ImageSource"));
     this.xrPictureBox19.LocationFloat = new DevExpress.Utils.PointFloat(393.9474F, 83.45831F);
     this.xrPictureBox19.Name          = "xrPictureBox19";
     this.xrPictureBox19.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox20
     //
     this.xrPictureBox20.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox20.ImageSource"));
     this.xrPictureBox20.LocationFloat = new DevExpress.Utils.PointFloat(421.0307F, 83.45834F);
     this.xrPictureBox20.Name          = "xrPictureBox20";
     this.xrPictureBox20.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox21
     //
     this.xrPictureBox21.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox21.ImageSource"));
     this.xrPictureBox21.LocationFloat = new DevExpress.Utils.PointFloat(448.114F, 83.45834F);
     this.xrPictureBox21.Name          = "xrPictureBox21";
     this.xrPictureBox21.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox22
     //
     this.xrPictureBox22.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox22.ImageSource"));
     this.xrPictureBox22.LocationFloat = new DevExpress.Utils.PointFloat(475.1974F, 83.45831F);
     this.xrPictureBox22.Name          = "xrPictureBox22";
     this.xrPictureBox22.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox23
     //
     this.xrPictureBox23.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox23.ImageSource"));
     this.xrPictureBox23.LocationFloat = new DevExpress.Utils.PointFloat(502.2807F, 83.45834F);
     this.xrPictureBox23.Name          = "xrPictureBox23";
     this.xrPictureBox23.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox24
     //
     this.xrPictureBox24.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox24.ImageSource"));
     this.xrPictureBox24.LocationFloat = new DevExpress.Utils.PointFloat(529.364F, 83.45831F);
     this.xrPictureBox24.Name          = "xrPictureBox24";
     this.xrPictureBox24.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox25
     //
     this.xrPictureBox25.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox25.ImageSource"));
     this.xrPictureBox25.LocationFloat = new DevExpress.Utils.PointFloat(556.4473F, 83.45831F);
     this.xrPictureBox25.Name          = "xrPictureBox25";
     this.xrPictureBox25.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox26
     //
     this.xrPictureBox26.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox26.ImageSource"));
     this.xrPictureBox26.LocationFloat = new DevExpress.Utils.PointFloat(583.5307F, 83.45834F);
     this.xrPictureBox26.Name          = "xrPictureBox26";
     this.xrPictureBox26.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox27
     //
     this.xrPictureBox27.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("svg", resources.GetString("xrPictureBox27.ImageSource"));
     this.xrPictureBox27.LocationFloat = new DevExpress.Utils.PointFloat(612.9167F, 83.45831F);
     this.xrPictureBox27.Name          = "xrPictureBox27";
     this.xrPictureBox27.SizeF         = new System.Drawing.SizeF(27.08331F, 32.99999F);
     //
     // xrPictureBox28
     //
     this.xrPictureBox28.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox28.ImageSource"));
     this.xrPictureBox28.LocationFloat = new DevExpress.Utils.PointFloat(258.4986F, 0F);
     this.xrPictureBox28.Name          = "xrPictureBox28";
     this.xrPictureBox28.SizeF         = new System.Drawing.SizeF(162.532F, 74.40813F);
     this.xrPictureBox28.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrRichText1
     //
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 38.12501F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(600.614F, 99.99999F);
     //
     // parameter1
     //
     this.parameter1.Description              = "Parameter1";
     dynamicListLookUpSettings1.DataMember    = "ServiceRequest";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "StatusDescription";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.ValueMember   = "StatusDescription";
     this.parameter1.LookUpSettings           = dynamicListLookUpSettings1;
     this.parameter1.Name = "parameter1";
     //
     // Successful
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.Detail
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "ServiceRequest";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[StatusDescription] = \'Successful\'";
     this.Font         = new System.Drawing.Font("Arial", 9.75F);
     this.Margins      = new System.Drawing.Printing.Margins(100, 100, 116, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.parameter1
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption1,
         this.DetailData1,
         this.DetailData3_Odd,
         this.PageInfo
     });
     this.Version = "19.1";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonthlyPayroll));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.DetailReport2     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail4           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.Money             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.header            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport4     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail5           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.Branch            = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.Ref              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.Payment          = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel25        = new DevExpress.XtraReports.UI.XRLabel();
     this.Department       = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel22        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrCrossBandBox1  = new DevExpress.XtraReports.UI.XRCrossBandBox();
     this.xrCrossBandLine1 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     this.xrCrossBandLine2 = new DevExpress.XtraReports.UI.XRCrossBandLine();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName    = "DataField";
     this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrLabel12
     //
     resources.ApplyResources(this.xrLabel12, "xrLabel12");
     this.xrLabel12.Name    = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     //
     // TopMargin
     //
     resources.ApplyResources(this.TopMargin, "TopMargin");
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // BottomMargin
     //
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel24,
         this.xrLabel23,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel24, "xrLabel24");
     this.xrLabel24.Name    = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // User
     //
     resources.ApplyResources(this.User, "User");
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel23
     //
     resources.ApplyResources(this.xrLabel23, "xrLabel23");
     this.xrLabel23.Name    = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // xrPageInfo1
     //
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     //
     // xrPageInfo2
     //
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel15
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel18
     //
     this.xrLabel18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PayDate")
     });
     resources.ApplyResources(this.xrLabel18, "xrLabel18");
     this.xrLabel18.Name    = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.StylePriority.UseFont = false;
     //
     // xrLabel17
     //
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Multiline             = true;
     this.xrLabel17.Name                  = "xrLabel17";
     this.xrLabel17.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.BeforePrint          += new System.Drawing.Printing.PrintEventHandler(this.xrLabel17_BeforePrint);
     //
     // xrLabel15
     //
     resources.ApplyResources(this.xrLabel15, "xrLabel15");
     this.xrLabel15.Name      = "xrLabel15";
     this.xrLabel15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.StyleName = "Title";
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor     = System.Drawing.Color.Transparent;
     this.DataField.BorderColor   = System.Drawing.Color.Black;
     this.DataField.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth   = 1F;
     this.DataField.Font          = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor     = System.Drawing.Color.Black;
     this.DataField.Name          = "DataField";
     this.DataField.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DataField.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1
     });
     this.DetailReport.DataMember   = "Names";
     this.DetailReport.DataSource   = this.objectDataSource1;
     this.DetailReport.Level        = 1;
     this.DetailReport.Name         = "DetailReport";
     this.DetailReport.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport_BeforePrint);
     //
     // Detail1
     //
     resources.ApplyResources(this.Detail1, "Detail1");
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel14,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel1
     });
     this.Detail1.KeepTogether            = true;
     this.Detail1.MultiColumn.ColumnCount = 15;
     this.Detail1.MultiColumn.ColumnWidth = 60F;
     this.Detail1.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail1.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail1.Name = "Detail1";
     this.Detail1.StylePriority.UseBackColor = false;
     //
     // xrLabel14
     //
     resources.ApplyResources(this.xrLabel14, "xrLabel14");
     this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel14.Name    = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel14.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel14.StyleName                  = "header";
     this.xrLabel14.StylePriority.UseBackColor = false;
     this.xrLabel14.StylePriority.UseBorders   = false;
     this.xrLabel14.StylePriority.UseFont      = false;
     this.xrLabel14.StylePriority.UsePadding   = false;
     //
     // xrLabel8
     //
     resources.ApplyResources(this.xrLabel8, "xrLabel8");
     this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel8.Name    = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel8.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel8.StyleName                  = "header";
     this.xrLabel8.StylePriority.UseBackColor = false;
     this.xrLabel8.StylePriority.UseBorders   = false;
     this.xrLabel8.StylePriority.UseFont      = false;
     this.xrLabel8.StylePriority.UsePadding   = false;
     //
     // xrLabel7
     //
     resources.ApplyResources(this.xrLabel7, "xrLabel7");
     this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel7.Name    = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel7.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel7.StyleName                  = "header";
     this.xrLabel7.StylePriority.UseBackColor = false;
     this.xrLabel7.StylePriority.UseBorders   = false;
     this.xrLabel7.StylePriority.UseFont      = false;
     this.xrLabel7.StylePriority.UsePadding   = false;
     //
     // xrLabel6
     //
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel6.Name    = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel6.ProcessDuplicatesMode      = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel6.StyleName                  = "header";
     this.xrLabel6.StylePriority.UseBackColor = false;
     this.xrLabel6.StylePriority.UseBorders   = false;
     this.xrLabel6.StylePriority.UseFont      = false;
     this.xrLabel6.StylePriority.UsePadding   = false;
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Names.name")
     });
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.StyleName = "header";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UsePadding       = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Reports.MonthlyPayrollCollection);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.DetailReport2
     });
     this.DetailReport1.DataMember   = "Payrolls";
     this.DetailReport1.DataSource   = this.objectDataSource1;
     this.DetailReport1.Level        = 2;
     this.DetailReport1.Name         = "DetailReport1";
     this.DetailReport1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport1_BeforePrint);
     //
     // Detail2
     //
     resources.ApplyResources(this.Detail2, "Detail2");
     this.Detail2.Name = "Detail2";
     //
     // DetailReport2
     //
     this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3
     });
     this.DetailReport2.DataMember = "Payrolls.Entitlements";
     this.DetailReport2.DataSource = this.objectDataSource1;
     this.DetailReport2.Level      = 0;
     this.DetailReport2.Name       = "DetailReport2";
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel13,
         this.xrLabel4,
         this.xrLabel2,
         this.xrLabel3
     });
     resources.ApplyResources(this.Detail3, "Detail3");
     this.Detail3.KeepTogether            = true;
     this.Detail3.MultiColumn.ColumnCount = 15;
     this.Detail3.MultiColumn.ColumnWidth = 60F;
     this.Detail3.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail3.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.Entitlements.AmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel5, "xrLabel5");
     this.xrLabel5.Name      = "xrLabel5";
     this.xrLabel5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel5.StyleName = "Money";
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UsePadding       = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     //
     // xrLabel13
     //
     this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.calendarDays")
     });
     resources.ApplyResources(this.xrLabel13, "xrLabel13");
     this.xrLabel13.Name    = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel13.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel13.StylePriority.UseBorders       = false;
     this.xrLabel13.StylePriority.UsePadding       = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.BasicAmountString", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name    = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel4.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel4.StyleName                      = "Money";
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UsePadding       = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.days")
     });
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name    = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel2.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel2.StyleName                      = "Money";
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Payrolls.name")
     });
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name    = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel3.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UsePadding       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail4
     });
     this.DetailReport3.DataMember   = "Totals";
     this.DetailReport3.DataSource   = this.objectDataSource1;
     this.DetailReport3.Level        = 3;
     this.DetailReport3.Name         = "DetailReport3";
     this.DetailReport3.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.DetailReport3_BeforePrint);
     //
     // Detail4
     //
     this.Detail4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel9
     });
     resources.ApplyResources(this.Detail4, "Detail4");
     this.Detail4.MultiColumn.ColumnCount = 15;
     this.Detail4.MultiColumn.ColumnWidth = 60F;
     this.Detail4.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail4.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail4.Name = "Detail4";
     //
     // xrLabel11
     //
     this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     resources.ApplyResources(this.xrLabel11, "xrLabel11");
     this.xrLabel11.Name    = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel11.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel11.StylePriority.UseBorders       = false;
     this.xrLabel11.StylePriority.UsePadding       = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     //
     // xrLabel10
     //
     this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalBasics", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel10, "xrLabel10");
     this.xrLabel10.Name    = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel10.ProcessDuplicatesMode          = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel10.StyleName                      = "Money";
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UsePadding       = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     //
     // xrLabel9
     //
     this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Totals.amount", "{0:#,#}")
     });
     resources.ApplyResources(this.xrLabel9, "xrLabel9");
     this.xrLabel9.Name      = "xrLabel9";
     this.xrLabel9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel9.StyleName = "Money";
     this.xrLabel9.StylePriority.UseBorders       = false;
     this.xrLabel9.StylePriority.UsePadding       = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     //
     // Money
     //
     this.Money.Name          = "Money";
     this.Money.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // header
     //
     this.header.Name          = "header";
     this.header.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
     //
     // DetailReport4
     //
     this.DetailReport4.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail5
     });
     this.DetailReport4.DataMember = "Headers";
     this.DetailReport4.DataSource = this.objectDataSource1;
     this.DetailReport4.Level      = 0;
     this.DetailReport4.Name       = "DetailReport4";
     //
     // Detail5
     //
     this.Detail5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16
     });
     resources.ApplyResources(this.Detail5, "Detail5");
     this.Detail5.MultiColumn.ColumnCount = 12;
     this.Detail5.MultiColumn.ColumnWidth = 60F;
     this.Detail5.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail5.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
     this.Detail5.Name = "Detail5";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Headers.name")
     });
     resources.ApplyResources(this.xrLabel16, "xrLabel16");
     this.xrLabel16.Name    = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel28,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25,
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrLabel19
     });
     resources.ApplyResources(this.PageHeader, "PageHeader");
     this.PageHeader.Name = "PageHeader";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Branch, "Text", "")
     });
     resources.ApplyResources(this.xrLabel28, "xrLabel28");
     this.xrLabel28.Name    = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     //
     // Branch
     //
     resources.ApplyResources(this.Branch, "Branch");
     this.Branch.Name    = "Branch";
     this.Branch.Visible = false;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Ref, "Text", "")
     });
     resources.ApplyResources(this.xrLabel27, "xrLabel27");
     this.xrLabel27.Name    = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.StylePriority.UseTextAlignment = false;
     //
     // Ref
     //
     resources.ApplyResources(this.Ref, "Ref");
     this.Ref.Name    = "Ref";
     this.Ref.Visible = false;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Payment, "Text", "")
     });
     resources.ApplyResources(this.xrLabel26, "xrLabel26");
     this.xrLabel26.Name    = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     //
     // Payment
     //
     resources.ApplyResources(this.Payment, "Payment");
     this.Payment.Name    = "Payment";
     this.Payment.Visible = false;
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.Department, "Text", "")
     });
     resources.ApplyResources(this.xrLabel25, "xrLabel25");
     this.xrLabel25.Name    = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     //
     // Department
     //
     resources.ApplyResources(this.Department, "Department");
     this.Department.Name    = "Department";
     this.Department.Visible = false;
     //
     // xrLabel22
     //
     resources.ApplyResources(this.xrLabel22, "xrLabel22");
     this.xrLabel22.Name    = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     //
     // xrLabel21
     //
     resources.ApplyResources(this.xrLabel21, "xrLabel21");
     this.xrLabel21.Name    = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     //
     // xrLabel20
     //
     resources.ApplyResources(this.xrLabel20, "xrLabel20");
     this.xrLabel20.Name    = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     //
     // xrLabel19
     //
     resources.ApplyResources(this.xrLabel19, "xrLabel19");
     this.xrLabel19.Name    = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     //
     // xrCrossBandBox1
     //
     this.xrCrossBandBox1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandBox1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandBox1, "xrCrossBandBox1");
     this.xrCrossBandBox1.Name      = "xrCrossBandBox1";
     this.xrCrossBandBox1.StartBand = this.PageHeader;
     this.xrCrossBandBox1.WidthF    = 940.625F;
     //
     // xrCrossBandLine1
     //
     this.xrCrossBandLine1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine1.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine1, "xrCrossBandLine1");
     this.xrCrossBandLine1.Name      = "xrCrossBandLine1";
     this.xrCrossBandLine1.StartBand = this.PageHeader;
     this.xrCrossBandLine1.WidthF    = 1.041667F;
     //
     // xrCrossBandLine2
     //
     this.xrCrossBandLine2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrCrossBandLine2.EndBand        = this.PageHeader;
     resources.ApplyResources(this.xrCrossBandLine2, "xrCrossBandLine2");
     this.xrCrossBandLine2.Name      = "xrCrossBandLine2";
     this.xrCrossBandLine2.StartBand = this.PageHeader;
     this.xrCrossBandLine2.WidthF    = 938.5417F;
     //
     // MonthlyPayroll
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport,
         this.DetailReport1,
         this.DetailReport3,
         this.DetailReport4,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.CrossBandControls.AddRange(new DevExpress.XtraReports.UI.XRCrossBandControl[] {
         this.xrCrossBandLine2,
         this.xrCrossBandLine1,
         this.xrCrossBandBox1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Department,
         this.Branch,
         this.Payment,
         this.Ref,
         this.User
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField,
         this.Money,
         this.header
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #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();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrChart1          = new DevExpress.XtraReports.UI.XRChart();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrChart4          = new DevExpress.XtraReports.UI.XRChart();
     this.xrChart3          = new DevExpress.XtraReports.UI.XRChart();
     this.xrChart2          = new DevExpress.XtraReports.UI.XRChart();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.HeaderStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.OddStyle          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.EventStyle        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.BackColor = System.Drawing.Color.Transparent;
     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.StylePriority.UseBackColor = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.EvenStyleName = "EventStyle";
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(150.1667F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "OddStyle";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(501.3889F, 25F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BorderColor = System.Drawing.Color.Transparent;
     this.xrTableCell1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell1.StylePriority.UseBorderColor   = false;
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "xrTableCell1";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell1.Weight        = 0.90473458689040809D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BorderColor = System.Drawing.Color.Transparent;
     this.xrTableCell2.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OEM]")
     });
     this.xrTableCell2.Name    = "xrTableCell2";
     this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell2.StylePriority.UseBorderColor   = false;
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell2.Weight        = 0.69016207814362285D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.BorderColor = System.Drawing.Color.Transparent;
     this.xrTableCell3.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Total]")
     });
     this.xrTableCell3.Name    = "xrTableCell3";
     this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell3.StylePriority.UseBorderColor   = false;
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UsePadding       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell3.Weight        = 0.41706994188445867D;
     //
     // xrChart1
     //
     this.xrChart1.BorderColor        = System.Drawing.Color.Black;
     this.xrChart1.Borders            = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart1.Legend.Name        = "Default Legend";
     this.xrChart1.LocationFloat      = new DevExpress.Utils.PointFloat(0F, 63.19449F);
     this.xrChart1.Name               = "xrChart1";
     this.xrChart1.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     this.xrChart1.SizeF              = new System.Drawing.SizeF(789F, 200F);
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 11.11111F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(300F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(201.3889F, 38.27777F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Report Tikets";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 140.9722F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrChart4,
         this.xrChart3,
         this.xrChart2,
         this.xrTable2,
         this.xrChart1,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 751.3889F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrChart4
     //
     this.xrChart4.BorderColor        = System.Drawing.Color.Black;
     this.xrChart4.Borders            = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart4.Legend.Name        = "Default Legend";
     this.xrChart4.LocationFloat      = new DevExpress.Utils.PointFloat(0F, 275F);
     this.xrChart4.Name               = "xrChart4";
     this.xrChart4.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     this.xrChart4.SizeF              = new System.Drawing.SizeF(789F, 200F);
     //
     // xrChart3
     //
     this.xrChart3.BorderColor        = System.Drawing.Color.Black;
     this.xrChart3.Borders            = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart3.Legend.Name        = "Default Legend";
     this.xrChart3.LocationFloat      = new DevExpress.Utils.PointFloat(400.8055F, 500.0001F);
     this.xrChart3.Name               = "xrChart3";
     this.xrChart3.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     this.xrChart3.SizeF              = new System.Drawing.SizeF(388.1945F, 200.0001F);
     //
     // xrChart2
     //
     this.xrChart2.BorderColor        = System.Drawing.Color.Black;
     this.xrChart2.Borders            = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart2.Legend.Name        = "Default Legend";
     this.xrChart2.LocationFloat      = new DevExpress.Utils.PointFloat(0F, 500.0002F);
     this.xrChart2.Name               = "xrChart2";
     this.xrChart2.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     this.xrChart2.SizeF              = new System.Drawing.SizeF(388.824F, 200F);
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(150.1667F, 725.6945F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF     = new System.Drawing.SizeF(501.3889F, 25F);
     this.xrTable2.StyleName = "HeaderStyle";
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Font    = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell4.Name    = "xrTableCell4";
     this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.StylePriority.UseFont    = false;
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.Text   = "Name";
     this.xrTableCell4.Weight = 1.3490304428415429D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Font    = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell5.Name    = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.StylePriority.UseFont    = false;
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Text   = "Vendor";
     this.xrTableCell5.Weight = 1.029085984360703D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Font    = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name    = "xrTableCell6";
     this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 3, 3, 0, 100F);
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseFont          = false;
     this.xrTableCell6.StylePriority.UsePadding       = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Total";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell6.Weight        = 0.62188357279775408D;
     //
     // HeaderStyle
     //
     this.HeaderStyle.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.HeaderStyle.BorderColor = System.Drawing.Color.Gray;
     this.HeaderStyle.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.HeaderStyle.BorderWidth = 1F;
     this.HeaderStyle.Font        = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HeaderStyle.ForeColor   = System.Drawing.Color.White;
     this.HeaderStyle.Name        = "HeaderStyle";
     this.HeaderStyle.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     //
     // OddStyle
     //
     this.OddStyle.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(245)))), ((int)(((byte)(255)))));
     this.OddStyle.BorderColor = System.Drawing.Color.Transparent;
     this.OddStyle.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.OddStyle.BorderWidth = 1F;
     this.OddStyle.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OddStyle.ForeColor   = System.Drawing.Color.Black;
     this.OddStyle.Name        = "OddStyle";
     this.OddStyle.Padding     = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     //
     // EventStyle
     //
     this.EventStyle.BackColor   = System.Drawing.Color.White;
     this.EventStyle.BorderColor = System.Drawing.Color.Transparent;
     this.EventStyle.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.EventStyle.BorderWidth = 1F;
     this.EventStyle.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EventStyle.ForeColor   = System.Drawing.Color.Black;
     this.EventStyle.Name        = "EventStyle";
     this.EventStyle.Padding     = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(ATCPortal.ClsReport);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // ReportTicket
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(29, 32, 11, 141);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.HeaderStyle,
         this.OddStyle,
         this.EventStyle
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).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();
     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();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "XRPrintInvoice.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GrandTotal = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuplicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.SPName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerName = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.CustomerCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.PaymentType = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvDate = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.InvoiceNumber = new DevExpress.XtraReports.Parameters.Parameter();
     this.InvoiceId = new DevExpress.XtraReports.Parameters.Parameter();
     this.AmmountDue = new DevExpress.XtraReports.Parameters.Parameter();
     this.DueAmmount = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.TotalPaid = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.dsPrintInvoice1 = new DsPrintInvoice();
     this.SPCode = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lblNote = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail.Dpi = 254F;
     this.Detail.HeightF = 61F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.BorderColor = System.Drawing.Color.Transparent;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Dpi = 254F;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(5F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(2238F, 61F);
     this.xrTable2.StylePriority.UseBorderColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell10,
         this.xrTableCell12});
     this.xrTableRow2.Dpi = 254F;
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemCode")});
     this.xrTableCell4.Dpi = 254F;
     this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 11.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell4.StylePriority.UseFont = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell4.Weight = 0.083109919571045576;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemDescription")});
     this.xrTableCell5.Dpi = 254F;
     this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell5.StylePriority.UseFont = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell5.Weight = 0.57327971403038425;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Quantity")});
     this.xrTableCell6.Dpi = 254F;
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     this.xrTableCell6.Weight = 0.055406613047363718;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Price", "{0:0.00}")});
     this.xrTableCell10.Dpi = 254F;
     this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell10.Weight = 0.13717605004468275;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.CanShrink = true;
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.TotalPrice", "{0:0.00}")});
     this.xrTableCell12.Dpi = 254F;
     this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UseFont = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
     this.xrTableCell12.Weight = 0.15102770330652368;
     //
     // GrandTotal
     //
     this.GrandTotal.Name = "GrandTotal";
     this.GrandTotal.Type = typeof(decimal);
     this.GrandTotal.Value = 0;
     //
     // PageHeader
     //
     this.PageHeader.Dpi = 254F;
     this.PageHeader.HeightF = 0F;
     this.PageHeader.Name = "PageHeader";
     this.PageHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageHeader.StylePriority.UseTextAlignment = false;
     this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Quantity")});
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell9.Weight = 0;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Price")});
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell8.Weight = 0;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuplicate,
         this.xrLabel8,
         this.xrLabel11,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4});
     this.ReportHeader.Dpi = 254F;
     this.ReportHeader.HeightF = 638F;
     this.ReportHeader.Name = "ReportHeader";
     //
     // lblDuplicate
     //
     this.lblDuplicate.BackColor = System.Drawing.Color.Transparent;
     this.lblDuplicate.Dpi = 254F;
     this.lblDuplicate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
     this.lblDuplicate.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 445F);
     this.lblDuplicate.Name = "lblDuplicate";
     this.lblDuplicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblDuplicate.SizeF = new System.Drawing.SizeF(297.9999F, 58.41995F);
     this.lblDuplicate.StylePriority.UseBackColor = false;
     this.lblDuplicate.StylePriority.UseFont = false;
     this.lblDuplicate.Text = "DUPLICATE";
     this.lblDuplicate.Visible = false;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.SPName, "Text", "")});
     this.xrLabel8.Dpi = 254F;
     this.xrLabel8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 339F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text = "xrLabel8";
     //
     // SPName
     //
     this.SPName.Name = "SPName";
     this.SPName.Value = "";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerName, "Text", "")});
     this.xrLabel11.Dpi = 254F;
     this.xrLabel11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(100F, 234F);
     this.xrLabel11.Multiline = true;
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(339F, 64F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.Text = "xrLabel11";
     //
     // CustomerName
     //
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.Value = "";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.CustomerCode, "Text", "")});
     this.xrLabel7.Dpi = 254F;
     this.xrLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(100F, 444F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.Text = "xrLabel7";
     //
     // CustomerCode
     //
     this.CustomerCode.Name = "CustomerCode";
     this.CustomerCode.Value = "";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.PaymentType, "Text", "")});
     this.xrLabel6.Dpi = 254F;
     this.xrLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 445F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text = "xrLabel6";
     //
     // PaymentType
     //
     this.PaymentType.Name = "PaymentType";
     this.PaymentType.Value = "";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvDate, "Text", "{0:dd-MMM-yyyy}")});
     this.xrLabel5.Dpi = 254F;
     this.xrLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 234F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(347F, 64F);
     this.xrLabel5.StylePriority.UseFont = false;
     xrSummary1.FormatString = "dd/MMM/yyyy{0}";
     this.xrLabel5.Summary = xrSummary1;
     this.xrLabel5.Text = "xrLabel5";
     //
     // InvDate
     //
     this.InvDate.Name = "InvDate";
     this.InvDate.Type = typeof(System.DateTime);
     this.InvDate.Value = new System.DateTime(((long)(0)));
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.InvoiceNumber, "Text", "")});
     this.xrLabel4.Dpi = 254F;
     this.xrLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 339F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(361F, 64F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // InvoiceNumber
     //
     this.InvoiceNumber.Name = "InvoiceNumber";
     this.InvoiceNumber.Value = "";
     //
     // InvoiceId
     //
     this.InvoiceId.Name = "InvoiceId";
     this.InvoiceId.Type = typeof(int);
     this.InvoiceId.Value = 0;
     //
     // AmmountDue
     //
     this.AmmountDue.Name = "AmmountDue";
     this.AmmountDue.Type = typeof(decimal);
     this.AmmountDue.Value = 0;
     //
     // DueAmmount
     //
     this.DueAmmount.Name = "DueAmmount";
     this.DueAmmount.Type = typeof(decimal);
     this.DueAmmount.Value = 0;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel3,
         this.xrLabel14,
         this.xrLabel17,
         this.xrLabel12,
         this.xrLabel2});
     this.ReportFooter.Dpi = 254F;
     this.ReportFooter.HeightF = 274F;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.PrintAtBottom = true;
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi = 254F;
     this.xrLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(1569F, 130F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(294F, 63F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "Amount";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi = 254F;
     this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(1469F, 66F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(397F, 58F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text = "Recieved Amount";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.DueAmmount, "Text", "")});
     this.xrLabel14.Dpi = 254F;
     this.xrLabel14.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.ForeColor = System.Drawing.Color.Maroon;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 133F);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel14.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.StylePriority.UseForeColor = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel17
     //
     this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.TotalPaid, "Text", "")});
     this.xrLabel17.Dpi = 254F;
     this.xrLabel17.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 67F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text = "xrLabel17";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // TotalPaid
     //
     this.TotalPaid.Name = "TotalPaid";
     this.TotalPaid.Type = typeof(decimal);
     this.TotalPaid.Value = 0;
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.GrandTotal, "Text", "")});
     this.xrLabel12.Dpi = 254F;
     this.xrLabel12.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 210F);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel12.SizeF = new System.Drawing.SizeF(346F, 64F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text = "xrLabel12";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi = 254F;
     this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(1468F, 130F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 63F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text = "Due";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BorderColor = System.Drawing.SystemColors.Desktop;
     this.xrControlStyle1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name = "xrControlStyle1";
     //
     // dsPrintInvoice1
     //
     this.dsPrintInvoice1.DataSetName = "DsPrintInvoice";
     this.dsPrintInvoice1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // SPCode
     //
     this.SPCode.Name = "SPCode";
     this.SPCode.Value = "";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblNote,
         this.xrPageInfo1});
     this.PageFooter.Dpi = 254F;
     this.PageFooter.HeightF = 65.00002F;
     this.PageFooter.Name = "PageFooter";
     this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lblNote
     //
     this.lblNote.Dpi = 254F;
     this.lblNote.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.lblNote.LocationFloat = new DevExpress.Utils.PointFloat(0F, 5.579924F);
     this.lblNote.Name = "lblNote";
     this.lblNote.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.lblNote.SizeF = new System.Drawing.SizeF(1246.188F, 58.42F);
     this.lblNote.StylePriority.UseFont = false;
     this.lblNote.Text = "Cash returns are not accepted. This invoice should be submitted for any returns.";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi = 254F;
     this.xrPageInfo1.Font = new System.Drawing.Font("Times New Roman", 11F);
     this.xrPageInfo1.Format = "Page {0} of {1}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1989F, 0F);
     this.xrPageInfo1.Name = "xrPageInfo1";
     this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo1.SizeF = new System.Drawing.SizeF(254F, 64F);
     this.xrPageInfo1.StylePriority.UseFont = false;
     //
     // topMarginBand1
     //
     this.topMarginBand1.Dpi = 254F;
     this.topMarginBand1.HeightF = 5F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Dpi = 254F;
     this.bottomMarginBand1.HeightF = 5F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XRPrintInvoice
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.PageFooter,
         this.topMarginBand1,
         this.bottomMarginBand1});
     this.DataMember = "vw_Invoice_Detail_Sel_Report";
     this.DataSource = this.dsPrintInvoice1;
     this.Dpi = 254F;
     this.Margins = new System.Drawing.Printing.Margins(5, 5, 5, 5);
     this.PageHeight = 2000;
     this.PageWidth = 2317;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.InvoiceId,
         this.InvoiceNumber,
         this.InvDate,
         this.CustomerCode,
         this.CustomerName,
         this.GrandTotal,
         this.AmmountDue,
         this.PaymentType,
         this.DueAmmount,
         this.TotalPaid,
         this.SPCode,
         this.SPName});
     this.ReportUnit = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1});
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
	/// <summary>
	/// Required method for Designer support - do not modify
	/// the contents of this method with the code editor.
	/// </summary>
	private void InitializeComponent() {
            string resourceFileName = "SinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.SinifListesi.ResourceManager;
            DevExpress.DataAccess.Sql.CustomSqlQuery customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
            DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
            this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
            this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
            this.sinav_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.derslikid = new DevExpress.XtraReports.Parameters.Parameter();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            customSqlQuery1.Name = "ogr_sinav_derslik";
            customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            customSqlQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel11,
            this.xrLabel10,
            this.xrTable1,
            this.xrLabel13});
            this.Detail.HeightF = 23.75F;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StylePriority.UseBorders = false;
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel11
            // 
            this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel11.Name = "xrLabel11";
            this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel11.SizeF = new System.Drawing.SizeF(64.06253F, 23.75F);
            this.xrLabel11.StylePriority.UseBorders = false;
            this.xrLabel11.StylePriority.UseFont = false;
            xrSummary1.FormatString = "{0:}";
            xrSummary1.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
            xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
            this.xrLabel11.Summary = xrSummary1;
            // 
            // xrLabel10
            // 
            this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(518.1033F, 0F);
            this.xrLabel10.Name = "xrLabel10";
            this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel10.SizeF = new System.Drawing.SizeF(131.8967F, 23.75F);
            this.xrLabel10.StylePriority.UseBorders = false;
            this.xrLabel10.StylePriority.UseFont = false;
            // 
            // xrTable1
            // 
            this.xrTable1.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(75F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(443.1033F, 23.75F);
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_no")});
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderDashStyle = false;
            this.xrTableCell1.StylePriority.UseBorders = false;
            this.xrTableCell1.Text = " xrTableCell1";
            this.xrTableCell1.Weight = 0.75994065325908811D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_adi")});
            this.xrTableCell2.Multiline = true;
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell2.StylePriority.UseBorders = false;
            this.xrTableCell2.StylePriority.UsePadding = false;
            this.xrTableCell2.Text = " xrTableCell2";
            this.xrTableCell2.Weight = 1.0306610344403175D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_soyadi")});
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.StylePriority.UseBorders = false;
            this.xrTableCell3.Text = " xrTableCell3";
            this.xrTableCell3.Weight = 0.92589477536983389D;
            // 
            // xrLabel13
            // 
            this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 9.75F);
            this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(64.0625F, 0F);
            this.xrLabel13.Multiline = true;
            this.xrLabel13.Name = "xrLabel13";
            this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel13.SizeF = new System.Drawing.SizeF(10.93748F, 23.75F);
            this.xrLabel13.StylePriority.UseBorders = false;
            this.xrLabel13.StylePriority.UseFont = false;
            this.xrLabel13.Text = "\r\n";
            // 
            // TopMargin
            // 
            this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel3,
            this.xrLabel2,
            this.xrLabel1});
            this.TopMargin.HeightF = 83F;
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel9
            // 
            this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 50.24999F);
            this.xrLabel9.Name = "xrLabel9";
            this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF = new System.Drawing.SizeF(120.8333F, 16.75F);
            this.xrLabel9.StylePriority.UseBorders = false;
            this.xrLabel9.Text = "Sınav Tarih / Saat :";
            // 
            // xrLabel8
            // 
            this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33.5F);
            this.xrLabel8.Name = "xrLabel8";
            this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel8.SizeF = new System.Drawing.SizeF(75F, 16.74999F);
            this.xrLabel8.StylePriority.UseBorders = false;
            this.xrLabel8.Text = "Sınav Türü:";
            // 
            // xrLabel7
            // 
            this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.75F);
            this.xrLabel7.Name = "xrLabel7";
            this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF = new System.Drawing.SizeF(75F, 16.75F);
            this.xrLabel7.StylePriority.UseBorders = false;
            this.xrLabel7.Text = "Ders Adı:";
            // 
            // xrLabel6
            // 
            this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(75F, 16.75F);
            this.xrLabel6.StylePriority.UseBorders = false;
            this.xrLabel6.Text = "Bölüm Adı:";
            // 
            // xrLabel5
            // 
            this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.sinav_saati")});
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(195.2141F, 50.24999F);
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(146.1054F, 16.75F);
            this.xrLabel5.StylePriority.UseBorders = false;
            // 
            // xrLabel4
            // 
            this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.tarih")});
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(120.8333F, 50.24999F);
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(74.38071F, 16.75F);
            this.xrLabel4.StylePriority.UseBorders = false;
            // 
            // xrLabel3
            // 
            this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ders_adi")});
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(75F, 16.75F);
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(485.0694F, 16.75F);
            this.xrLabel3.StylePriority.UseBorders = false;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.sinav_tur")});
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(75F, 33.5F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 16.74999F);
            this.xrLabel2.StylePriority.UseBorders = false;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.bolum_adi")});
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(75F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(485.0694F, 16.75F);
            this.xrLabel1.StylePriority.UseBorders = false;
            // 
            // BottomMargin
            // 
            this.BottomMargin.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.BottomMargin.HeightF = 10.62501F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.StylePriority.UseBorders = false;
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // reportHeaderBand1
            // 
            this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel12,
            this.xrTable3});
            this.reportHeaderBand1.HeightF = 25.00003F;
            this.reportHeaderBand1.Name = "reportHeaderBand1";
            // 
            // xrLabel12
            // 
            this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel12.Name = "xrLabel12";
            this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel12.SizeF = new System.Drawing.SizeF(64.06253F, 25.00003F);
            this.xrLabel12.StylePriority.UseBorders = false;
            this.xrLabel12.Text = "Sıra No";
            // 
            // xrTable3
            // 
            this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(64.06253F, 0F);
            this.xrTable3.Name = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3});
            this.xrTable3.SizeF = new System.Drawing.SizeF(585.9374F, 25.00001F);
            this.xrTable3.StylePriority.UseBorders = false;
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseBorders = false;
            this.xrTableCell4.Text = " Öğrenci No";
            this.xrTableCell4.Weight = 0.76618290343549933D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseBorders = false;
            this.xrTableCell5.Text = " Öğrenci Adı";
            this.xrTableCell5.Weight = 0.94315419211474694D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.StylePriority.UseBorders = false;
            this.xrTableCell7.Text = " Öğrenci Soyadı";
            this.xrTableCell7.Weight = 0.94315465469699966D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Text = " İmza";
            this.xrTableCell8.Weight = 0.77053532448251061D;
            // 
            // Title
            // 
            this.Title.BackColor = System.Drawing.Color.Transparent;
            this.Title.BorderColor = System.Drawing.Color.Black;
            this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Title.BorderWidth = 1F;
            this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
            this.Title.ForeColor = System.Drawing.Color.Maroon;
            this.Title.Name = "Title";
            // 
            // FieldCaption
            // 
            this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
            this.FieldCaption.BorderColor = System.Drawing.Color.Black;
            this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.FieldCaption.BorderWidth = 1F;
            this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
            this.FieldCaption.Name = "FieldCaption";
            // 
            // PageInfo
            // 
            this.PageInfo.BackColor = System.Drawing.Color.Transparent;
            this.PageInfo.BorderColor = System.Drawing.Color.Black;
            this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.PageInfo.BorderWidth = 1F;
            this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.PageInfo.ForeColor = System.Drawing.Color.Black;
            this.PageInfo.Name = "PageInfo";
            // 
            // DataField
            // 
            this.DataField.BackColor = System.Drawing.Color.Transparent;
            this.DataField.BorderColor = System.Drawing.Color.Black;
            this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.DataField.BorderWidth = 1F;
            this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.DataField.ForeColor = System.Drawing.Color.Black;
            this.DataField.Name = "DataField";
            this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            // 
            // sinav_id
            // 
            this.sinav_id.Description = "sinav_id";
            this.sinav_id.Name = "sinav_id";
            this.sinav_id.Type = typeof(int);
            this.sinav_id.ValueInfo = "1";
            this.sinav_id.Visible = false;
            // 
            // derslikid
            // 
            this.derslikid.Description = "derslikid";
            dynamicListLookUpSettings1.DataAdapter = null;
            dynamicListLookUpSettings1.DataMember = "ogr_sinav_derslik";
            dynamicListLookUpSettings1.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings1.DisplayMember = "derslik_id";
            dynamicListLookUpSettings1.FilterString = null;
            dynamicListLookUpSettings1.ValueMember = "derslik_id";
            this.derslikid.LookUpSettings = dynamicListLookUpSettings1;
            this.derslikid.Name = "derslikid";
            this.derslikid.Type = typeof(int);
            this.derslikid.ValueInfo = "0";
            this.derslikid.Visible = false;
            // 
            // SinifListesi
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.reportHeaderBand1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "ogr_sinav_derslik";
            this.DataSource = this.sqlDataSource1;
            this.ExportOptions.Image.ExportMode = DevExpress.XtraPrinting.ImageExportMode.DifferentFiles;
            this.ExportOptions.Image.Format = System.Drawing.Imaging.ImageFormat.Wmf;
            this.FilterString = "[derslik_id] = ?derslikid And [Sinav_id] = ?sinav_id";
            this.Margins = new System.Drawing.Printing.Margins(100, 100, 83, 11);
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.sinav_id,
            this.derslikid});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     //string resourceFileName = "RepVendasTaxasDiarias.resx";
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.ltaxa            = new DevExpress.XtraReports.UI.XRLabel();
     this.ldata            = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ltusuario        = new DevExpress.XtraReports.UI.XRLabel();
     this.ltempresa        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.ltitulorelatorio = new DevExpress.XtraReports.UI.XRLabel();
     this.grupocabecalho   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel18        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19        = new DevExpress.XtraReports.UI.XRLabel();
     this.grupofiltros     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.lftaxa           = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.lcaminho         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.lfperiodo        = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.ltaxa,
         this.ldata
     });
     this.Detail.EvenStyleName = "xrControlStyle1";
     this.Detail.HeightF       = 11.04167F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "xrControlStyle2";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltaxa
     //
     this.ltaxa.Font          = new System.Drawing.Font("Calibri", 7F);
     this.ltaxa.ForeColor     = System.Drawing.Color.Black;
     this.ltaxa.LocationFloat = new DevExpress.Utils.PointFloat(84.63166F, 0F);
     this.ltaxa.Name          = "ltaxa";
     this.ltaxa.NullValueText = " ";
     this.ltaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltaxa.SizeF         = new System.Drawing.SizeF(202.5985F, 10F);
     this.ltaxa.StylePriority.UseBackColor     = false;
     this.ltaxa.StylePriority.UseFont          = false;
     this.ltaxa.StylePriority.UseTextAlignment = false;
     this.ltaxa.Text          = "ltaxa";
     this.ltaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.ltaxa.WordWrap      = false;
     //
     // ldata
     //
     this.ldata.Font          = new System.Drawing.Font("Calibri", 6.5F);
     this.ldata.ForeColor     = System.Drawing.Color.Black;
     this.ldata.LocationFloat = new DevExpress.Utils.PointFloat(0.0001518815F, 0F);
     this.ldata.Name          = "ldata";
     this.ldata.NullValueText = " ";
     this.ldata.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ldata.SizeF         = new System.Drawing.SizeF(84.63151F, 10F);
     this.ldata.StylePriority.UseBackColor = false;
     this.ldata.StylePriority.UseFont      = false;
     this.ldata.Text          = "ldata";
     this.ldata.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.ldata.WordWrap      = false;
     //
     // TopMargin
     //
     this.TopMargin.BackColor = System.Drawing.Color.Transparent;
     this.TopMargin.HeightF   = 48.81465F;
     this.TopMargin.Name      = "TopMargin";
     this.TopMargin.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ltusuario
     //
     this.ltusuario.BackColor     = System.Drawing.Color.White;
     this.ltusuario.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltusuario.LocationFloat = new DevExpress.Utils.PointFloat(910.0001F, 14F);
     this.ltusuario.Name          = "ltusuario";
     this.ltusuario.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltusuario.SizeF         = new System.Drawing.SizeF(128.9999F, 14F);
     this.ltusuario.StylePriority.UseBackColor     = false;
     this.ltusuario.StylePriority.UseFont          = false;
     this.ltusuario.StylePriority.UseTextAlignment = false;
     this.ltusuario.Text          = "ltusuario";
     this.ltusuario.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltempresa
     //
     this.ltempresa.BackColor     = System.Drawing.Color.Transparent;
     this.ltempresa.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltempresa.Font          = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ltempresa.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.ltempresa.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 40.91218F);
     this.ltempresa.Name          = "ltempresa";
     this.ltempresa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltempresa.SizeF         = new System.Drawing.SizeF(461.0147F, 17.08783F);
     this.ltempresa.StylePriority.UseBackColor     = false;
     this.ltempresa.StylePriority.UseBorders       = false;
     this.ltempresa.StylePriority.UseFont          = false;
     this.ltempresa.StylePriority.UseForeColor     = false;
     this.ltempresa.StylePriority.UseTextAlignment = false;
     this.ltempresa.Text          = "ltempresa";
     this.ltempresa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.BackColor     = System.Drawing.Color.Transparent;
     this.xrPageInfo2.BorderWidth   = 0F;
     this.xrPageInfo2.Font          = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format        = "{0:dddd, d\' de \'MMMM\' de \'yyyy HH:mm:ss}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(806.3752F, 0F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(230.62F, 14F);
     this.xrPageInfo2.StylePriority.UseBackColor     = false;
     this.xrPageInfo2.StylePriority.UseBorderWidth   = false;
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 24.16428F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.BackColor = System.Drawing.Color.LightGray;
     this.PageHeader.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrPageInfo3,
         this.ltitulorelatorio,
         this.xrPageInfo2,
         this.ltempresa,
         this.ltusuario
     });
     this.PageHeader.Font    = new System.Drawing.Font("Calibri", 9.75F);
     this.PageHeader.HeightF = 76.04166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor = false;
     this.PageHeader.StylePriority.UseBorders   = false;
     this.PageHeader.StylePriority.UseFont      = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor     = System.Drawing.Color.Azure;
     this.xrPictureBox1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
     this.xrPictureBox1.BorderWidth     = 0F;
     this.xrPictureBox1.ImageUrl        = "~\\images\\logomarca\\logoCliente_pequena_75x129px.jpg";
     this.xrPictureBox1.LocationFloat   = new DevExpress.Utils.PointFloat(1.00015F, 0F);
     this.xrPictureBox1.Name            = "xrPictureBox1";
     this.xrPictureBox1.SizeF           = new System.Drawing.SizeF(129F, 75F);
     this.xrPictureBox1.Sizing          = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     this.xrPictureBox1.StylePriority.UseBorderColor     = false;
     this.xrPictureBox1.StylePriority.UseBorderDashStyle = false;
     this.xrPictureBox1.StylePriority.UseBorderWidth     = false;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.BackColor     = System.Drawing.Color.White;
     this.xrPageInfo3.Font          = new System.Drawing.Font("Calibri", 8F);
     this.xrPageInfo3.Format        = "Pág: {0}/{1}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(939.0001F, 28.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(100F, 14F);
     this.xrPageInfo3.StylePriority.UseBackColor     = false;
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ltitulorelatorio
     //
     this.ltitulorelatorio.BackColor     = System.Drawing.Color.Transparent;
     this.ltitulorelatorio.BorderColor   = System.Drawing.Color.Empty;
     this.ltitulorelatorio.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.ltitulorelatorio.Font          = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
     this.ltitulorelatorio.ForeColor     = System.Drawing.Color.Black;
     this.ltitulorelatorio.LocationFloat = new DevExpress.Utils.PointFloat(271.0265F, 14F);
     this.ltitulorelatorio.Name          = "ltitulorelatorio";
     this.ltitulorelatorio.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ltitulorelatorio.SizeF         = new System.Drawing.SizeF(461.0147F, 21.54171F);
     this.ltitulorelatorio.StylePriority.UseBackColor     = false;
     this.ltitulorelatorio.StylePriority.UseBorderColor   = false;
     this.ltitulorelatorio.StylePriority.UseBorders       = false;
     this.ltitulorelatorio.StylePriority.UseFont          = false;
     this.ltitulorelatorio.StylePriority.UseForeColor     = false;
     this.ltitulorelatorio.StylePriority.UseTextAlignment = false;
     this.ltitulorelatorio.Text          = "RELATÓRIO TAXAS DIÁRIAS";
     this.ltitulorelatorio.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // grupocabecalho
     //
     this.grupocabecalho.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel18,
         this.xrLabel26,
         this.xrLabel19
     });
     this.grupocabecalho.HeightF         = 13F;
     this.grupocabecalho.Name            = "grupocabecalho";
     this.grupocabecalho.RepeatEveryPage = true;
     //
     // xrLabel18
     //
     this.xrLabel18.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel18.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel18.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel18.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001554136F, 0F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(87.23003F, 13F);
     this.xrLabel18.StylePriority.UseBackColor     = false;
     this.xrLabel18.StylePriority.UseBorderColor   = false;
     this.xrLabel18.StylePriority.UseBorders       = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseForeColor     = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Data";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel26.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel26.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel26.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel26.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(287.2302F, 0F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(761.7698F, 13F);
     this.xrLabel26.StylePriority.UseBackColor     = false;
     this.xrLabel26.StylePriority.UseBorderColor   = false;
     this.xrLabel26.StylePriority.UseBorders       = false;
     this.xrLabel26.StylePriority.UseFont          = false;
     this.xrLabel26.StylePriority.UseForeColor     = false;
     this.xrLabel26.StylePriority.UseTextAlignment = false;
     this.xrLabel26.Text          = "|";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor   = System.Drawing.Color.Silver;
     this.xrLabel19.BorderColor = System.Drawing.Color.LightSlateGray;
     this.xrLabel19.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel19.Font          = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Bold);
     this.xrLabel19.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(83)))), ((int)(((byte)(149)))));
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(87.23018F, 0F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(200F, 13F);
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseBorderColor   = false;
     this.xrLabel19.StylePriority.UseBorders       = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseForeColor     = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Taxa Dia";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // grupofiltros
     //
     this.grupofiltros.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lfperiodo,
         this.xrLabel1,
         this.lftaxa,
         this.xrLabel4
     });
     this.grupofiltros.HeightF = 29.16667F;
     this.grupofiltros.Level   = 1;
     this.grupofiltros.Name    = "grupofiltros";
     //
     // lftaxa
     //
     this.lftaxa.LocationFloat = new DevExpress.Utils.PointFloat(82.23017F, 5.000007F);
     this.lftaxa.Name          = "lftaxa";
     this.lftaxa.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lftaxa.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lftaxa.StylePriority.UseTextAlignment = false;
     this.lftaxa.Text          = "lftaxa";
     this.lftaxa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(4.999998F, 5.00001F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Taxa:";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lcaminho
     });
     this.PageFooter.HeightF = 22.91667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // lcaminho
     //
     this.lcaminho.Font                  = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lcaminho.LocationFloat         = new DevExpress.Utils.PointFloat(4.999995F, 4F);
     this.lcaminho.Name                  = "lcaminho";
     this.lcaminho.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lcaminho.SizeF                 = new System.Drawing.SizeF(322.9165F, 14F);
     this.lcaminho.StylePriority.UseFont = false;
     this.lcaminho.Text                  = "Gitano ->SGFin ->Vendas ->Relatório Taxas Diárias";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(594.5196F, 5.000051F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(74.63166F, 20F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Período:";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // lfperiodo
     //
     this.lfperiodo.LocationFloat = new DevExpress.Utils.PointFloat(671.7498F, 5.000019F);
     this.lfperiodo.Name          = "lfperiodo";
     this.lfperiodo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lfperiodo.SizeF         = new System.Drawing.SizeF(377.2502F, 20F);
     this.lfperiodo.StylePriority.UseTextAlignment = false;
     this.lfperiodo.Text          = "lfperiodo";
     this.lfperiodo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // RepVendasTaxasDiarias
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.grupocabecalho,
         this.grupofiltros,
         this.PageFooter
     });
     this.Font = new System.Drawing.Font("Calibri", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(50, 70, 49, 24);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version      = "13.2";
     this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.RepVendasTaxasDiarias_BeforePrint);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(EmployeeDocument));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery3 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPictureBox8    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo3      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Odding           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption3    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Title            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle4  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_header_style = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_even_detail  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.tbl_odd_detail   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.HasExDate        = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource2   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupHeader3     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.sqlDataSource3   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrSubreport1     = new DevExpress.XtraReports.UI.XRSubreport();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 254F;
     this.Detail.HeightF       = 1.763889F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 254F;
     this.TopMargin.HeightF       = 14F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 254F;
     this.BottomMargin.HeightF       = 18F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox8,
         this.xrLabel1,
         this.xrLabel5,
         this.xrLabel4
     });
     this.ReportHeader.Dpi     = 254F;
     this.ReportHeader.HeightF = 305F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrPictureBox8
     //
     this.xrPictureBox8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "GetCompanyLogo.file_stream")
     });
     this.xrPictureBox8.Dpi           = 254F;
     this.xrPictureBox8.LocationFloat = new DevExpress.Utils.PointFloat(25.4F, 0F);
     this.xrPictureBox8.Name          = "xrPictureBox8";
     this.xrPictureBox8.SizeF         = new System.Drawing.SizeF(363.3611F, 284.9463F);
     this.xrPictureBox8.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel1.Dpi           = 254F;
     this.xrLabel1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(2339.26F, 21.16667F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(502.6323F, 91.66478F);
     this.xrLabel1.StylePriority.UseBorderColor   = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "شركة العين للتوزيع";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel5.Dpi           = 254F;
     this.xrLabel5.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169)))));
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(2421.503F, 112.8315F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(448.6116F, 70.63511F);
     this.xrLabel5.StylePriority.UseBorderColor   = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "منطقة العين - الدمام السعودية";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderColor   = System.Drawing.Color.Transparent;
     this.xrLabel4.Dpi           = 254F;
     this.xrLabel4.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1180.839F, 143.5808F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(1178.278F, 161.0023F);
     this.xrLabel4.StylePriority.UseBorderColor   = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "بيانات مرفقات الموظفين";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo3,
         this.xrPageInfo2
     });
     this.PageFooter.Dpi     = 254F;
     this.PageFooter.HeightF = 73.2367F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Dpi                            = 254F;
     this.xrPageInfo3.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo3.Format                         = "صفحة {0} من {1}";
     this.xrPageInfo3.LocationFloat                  = new DevExpress.Utils.PointFloat(2687.375F, 0F);
     this.xrPageInfo3.Name                           = "xrPageInfo3";
     this.xrPageInfo3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo3.SizeF                          = new System.Drawing.SizeF(254.0002F, 58.42F);
     this.xrPageInfo3.StylePriority.UseFont          = false;
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi                            = 254F;
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.Format                         = "{0:yyyy-MM-dd h:mm tt}";
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(24.99999F, 0F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(664.6505F, 58.42F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Odding
     //
     this.Odding.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.Odding.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Odding.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Odding.Name    = "Odding";
     this.Odding.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // GroupCaption3
     //
     this.GroupCaption3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.GroupCaption3.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption3.BorderWidth   = 2F;
     this.GroupCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.GroupCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupCaption3.Name          = "GroupCaption3";
     this.GroupCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(15, 5, 0, 0, 254F);
     this.GroupCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220)))));
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // xrControlStyle4
     //
     this.xrControlStyle4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle4.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle4.Name    = "xrControlStyle4";
     this.xrControlStyle4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle2.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrControlStyle2.Name    = "xrControlStyle2";
     this.xrControlStyle2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F);
     //
     // tbl_header_style
     //
     this.tbl_header_style.BackColor       = System.Drawing.Color.Silver;
     this.tbl_header_style.BorderColor     = System.Drawing.Color.Black;
     this.tbl_header_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_header_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_header_style.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_header_style.ForeColor     = System.Drawing.Color.Black;
     this.tbl_header_style.Name          = "tbl_header_style";
     this.tbl_header_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 254F);
     this.tbl_header_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_even_detail
     //
     this.tbl_even_detail.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tbl_even_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_even_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_even_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_even_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_even_detail.Name          = "tbl_even_detail";
     this.tbl_even_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_even_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tbl_odd_detail
     //
     this.tbl_odd_detail.BackColor       = System.Drawing.Color.White;
     this.tbl_odd_detail.BorderColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.tbl_odd_detail.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.tbl_odd_detail.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbl_odd_detail.ForeColor     = System.Drawing.Color.Black;
     this.tbl_odd_detail.Name          = "tbl_odd_detail";
     this.tbl_odd_detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 254F);
     this.tbl_odd_detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "HrContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "EmployeeDocuments";
     storedProcQuery1.StoredProcName = "EmployeeDocuments";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTable2
     //
     this.xrTable2.Dpi           = 254F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell11,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow2.Dpi    = 254F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 0.5679012345679012D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EndDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell6.Dpi  = 254F;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell6.Weight        = 0.058898504773092768D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Dpi  = 254F;
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell11.Weight        = 0.0583797479597113D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.StartDate", "{0:yyyy-MM-dd}")
     });
     this.xrTableCell7.Dpi           = 254F;
     this.xrTableCell7.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell7.Name          = "xrTableCell7";
     this.xrTableCell7.OddStyleName  = "tbl_even_detail";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell7.Weight        = 0.072820293199522115D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocReqOpt")
     });
     this.xrTableCell8.Dpi           = 254F;
     this.xrTableCell8.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell8.Name          = "xrTableCell8";
     this.xrTableCell8.OddStyleName  = "tbl_even_detail";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell8.Weight        = 0.15029585798816569D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.DocType")
     });
     this.xrTableCell9.Dpi           = 254F;
     this.xrTableCell9.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell9.Name          = "xrTableCell9";
     this.xrTableCell9.OddStyleName  = "tbl_even_detail";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell9.Weight        = 0.15029585798816569D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.docTypeName")
     });
     this.xrTableCell10.Dpi           = 254F;
     this.xrTableCell10.EvenStyleName = "tbl_odd_detail";
     this.xrTableCell10.Name          = "xrTableCell10";
     this.xrTableCell10.OddStyleName  = "tbl_even_detail";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrTableCell10.Weight        = 0.15029585798816569D;
     //
     // xrTable1
     //
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable1.Dpi           = 254F;
     this.xrTable1.Font          = new System.Drawing.Font("Frutiger LT Arabic 55 Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(329.417F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF     = new System.Drawing.SizeF(2630.583F, 63.5F);
     this.xrTable1.StyleName = "tbl_header_style";
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont    = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5
     });
     this.xrTableRow1.Dpi    = 254F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 0.5679012345679012D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell1.Dpi     = 254F;
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "تاريخ الانتهاء";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell1.Weight        = 0.12219295708371847D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 254F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "تاريخ الاصدار";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell2.Weight        = 0.0758719550880966D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi  = 254F;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "درجة إلزامية الوثيقة";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell3.Weight        = 0.15659421787239322D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 254F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "نوع الوثيقة";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell4.Weight        = 0.1628925777566208D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi  = 254F;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "اسم الوثيقة";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell5.Weight        = 0.15029585798816569D;
     //
     // HasExDate
     //
     this.HasExDate.DataMember = "EmployeeDocuments";
     this.HasExDate.Expression = "Iif([HasExpiryDate]=true,\'لها تاريخ انتهاء\',\'ليس لها تاريخ انتهاء\')";
     this.HasExDate.Name       = "HasExDate";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionName = "HrContext";
     this.sqlDataSource2.Name           = "sqlDataSource2";
     storedProcQuery2.Name     = "sp_GetRequiredPaper";
     queryParameter1.Name      = "@jobId";
     queryParameter1.Type      = typeof(int);
     queryParameter1.ValueInfo = "0";
     storedProcQuery2.Parameters.Add(queryParameter1);
     storedProcQuery2.StoredProcName = "sp_GetRequiredPaper";
     this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery2
     });
     this.sqlDataSource2.ResultSchemaSerializable = resources.GetString("sqlDataSource2.ResultSchemaSerializable");
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel2
     });
     this.GroupHeader1.Dpi = 254F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("EmpName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 58.42F;
     this.GroupHeader1.Level   = 2;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.JobName")
     });
     this.xrLabel3.Dpi           = 254F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(197.1254F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(2396.652F, 58.42F);
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel2
     //
     this.xrLabel2.BackColor = System.Drawing.Color.LightGray;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_EmployeeDocumentReport.EmpName")
     });
     this.xrLabel2.Dpi           = 254F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(2593.778F, 0F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(366.2224F, 58.42F);
     this.xrLabel2.StylePriority.UseBackColor     = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader2.Dpi = 254F;
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("docTypeName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 63.5F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrSubreport1
     });
     this.GroupFooter1.Dpi     = 254F;
     this.GroupFooter1.HeightF = 143.8628F;
     this.GroupFooter1.Level   = 1;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader3.Dpi     = 254F;
     this.GroupHeader3.HeightF = 63.5F;
     this.GroupHeader3.Level   = 1;
     this.GroupHeader3.Name    = "GroupHeader3";
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionName = "HrContext";
     this.sqlDataSource3.Name           = "sqlDataSource3";
     storedProcQuery3.Name           = "sp_EmployeeDocumentReport";
     storedProcQuery3.StoredProcName = "sp_EmployeeDocumentReport";
     this.sqlDataSource3.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery3
     });
     this.sqlDataSource3.ResultSchemaSerializable = resources.GetString("sqlDataSource3.ResultSchemaSerializable");
     //
     // xrSubreport1
     //
     this.xrSubreport1.Dpi           = 254F;
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(197.1249F, 0F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("CompanyId", null, "sp_EmployeeDocumentReport.CompanyId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("EmpId", null, "sp_EmployeeDocumentReport.EmpId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Nationality", null, "sp_EmployeeDocumentReport.nationalityId"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Gender", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("Culture", null, "sp_EmployeeDocumentReport.Gender"));
     this.xrSubreport1.ReportSource = new Sub();
     this.xrSubreport1.SizeF        = new System.Drawing.SizeF(2762.875F, 138.5711F);
     //
     // EmployeeDocument
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupFooter1,
         this.GroupHeader3
     });
     this.Bookmark = "الهيكل التوظيفى";
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.HasExDate
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1,
         this.sqlDataSource2,
         this.sqlDataSource3
     });
     this.DataMember   = "sp_EmployeeDocumentReport";
     this.DataSource   = this.sqlDataSource3;
     this.Dpi          = 254F;
     this.Landscape    = true;
     this.Margins      = new System.Drawing.Printing.Margins(0, 10, 14, 18);
     this.PageHeight   = 2100;
     this.PageWidth    = 2970;
     this.PaperKind    = System.Drawing.Printing.PaperKind.A4;
     this.ReportUnit   = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter;
     this.SnapGridSize = 25F;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Odding,
         this.GroupCaption3,
         this.xrControlStyle1,
         this.Title,
         this.xrControlStyle4,
         this.xrControlStyle2,
         this.tbl_header_style,
         this.tbl_even_detail,
         this.tbl_odd_detail
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.EntityFramework.EFConnectionParameters efConnectionParameters1 = new DevExpress.DataAccess.EntityFramework.EFConnectionParameters();
     DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo  efStoredProcedureInfo1  = new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo();
     DevExpress.DataAccess.EntityFramework.EFParameter            efParameter1            = new DevExpress.DataAccess.EntityFramework.EFParameter();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.efDataSource1     = new DevExpress.DataAccess.EntityFramework.EFDataSource(this.components);
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.AssessmentId      = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel12,
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLine1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 189.5F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.Dpi           = 100F;
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 159.5417F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel15.StyleName     = "FieldCaption";
     this.xrLabel15.Text          = "NAME";
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.ITaxAccount.ITaxpayer.TaxpayerName")
     });
     this.xrLabel14.Dpi           = 100F;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(174F, 159.5417F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel14.Text          = "xrLabel14";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.ITaxAccount.ITaxpayer.TIN")
     });
     this.xrLabel12.Dpi           = 100F;
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(174F, 129F);
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel12.Text          = "xrLabel12";
     //
     // xrLabel1
     //
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 9F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "ASSESSMENT #";
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi           = 100F;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 33F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "ASSESSMENT DATE";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(6F, 57F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "TAX ACCOUNT #";
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi           = 100F;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(6F, 81F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel4.StyleName     = "FieldCaption";
     this.xrLabel4.Text          = "ASSESSMENT YEAR";
     //
     // xrLabel5
     //
     this.xrLabel5.Dpi           = 100F;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(6F, 105F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel5.StyleName     = "FieldCaption";
     this.xrLabel5.Text          = "TAX PAYABLE";
     //
     // xrLabel6
     //
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(6F, 129F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(162F, 18F);
     this.xrLabel6.StyleName     = "FieldCaption";
     this.xrLabel6.Text          = "TIN";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentId")
     });
     this.xrLabel7.Dpi           = 100F;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(174F, 9F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel7.StyleName     = "DataField";
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentDate", "{0:dd MMMM, yyyy}")
     });
     this.xrLabel8.Dpi           = 100F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(174F, 33F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel8.StyleName     = "DataField";
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.TaxAccountNo")
     });
     this.xrLabel9.Dpi           = 100F;
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(174F, 57F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel9.StyleName     = "DataField";
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.AssessmentYear")
     });
     this.xrLabel10.Dpi           = 100F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(174F, 81F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel10.StyleName     = "DataField";
     this.xrLabel10.Text          = "xrLabel10";
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "IAssessments.TaxPayable")
     });
     this.xrLabel11.Dpi           = 100F;
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(174F, 105F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(470F, 18F);
     this.xrLabel11.StyleName     = "DataField";
     this.xrLabel11.Text          = "xrLabel11";
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 3F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 50F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 12.8334F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // efDataSource1
     //
     efConnectionParameters1.ConnectionString     = "";
     efConnectionParameters1.ConnectionStringName = "TAAPsDBContext";
     efConnectionParameters1.Source          = typeof(TAAPs.Model.TAAPsDBContext);
     this.efDataSource1.ConnectionParameters = efConnectionParameters1;
     this.efDataSource1.Name     = "efDataSource1";
     efStoredProcedureInfo1.Name = "ITaxAccountSummary";
     efParameter1.Name           = "TaxAccountNo";
     efParameter1.Type           = typeof(int);
     efParameter1.ValueInfo      = "0";
     efStoredProcedureInfo1.Parameters.AddRange(new DevExpress.DataAccess.EntityFramework.EFParameter[] {
         efParameter1
     });
     this.efDataSource1.StoredProcedures.AddRange(new DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo[] {
         efStoredProcedureInfo1
     });
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi           = 100F;
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel13
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 51F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel13
     //
     this.xrLabel13.Dpi           = 100F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(638F, 33F);
     this.xrLabel13.StyleName     = "Title";
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text          = "Taxpayer Assessment Detail";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.Title.ForeColor   = System.Drawing.Color.Maroon;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Maroon;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 12F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // AssessmentId
     //
     this.AssessmentId.Name      = "AssessmentId";
     this.AssessmentId.Type      = typeof(int);
     this.AssessmentId.ValueInfo = "0";
     //
     // IAssessmentSummary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.efDataSource1
     });
     this.DataMember  = "IAssessments";
     this.DataSource  = this.efDataSource1;
     this.DisplayName = "Individual Asessments";
     this.Margins     = new System.Drawing.Printing.Margins(46, 140, 50, 13);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.AssessmentId
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.efDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivisonsReport));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Yes = new DevExpress.XtraReports.Parameters.Parameter();
     this.No  = new DevExpress.XtraReports.Parameters.Parameter();
     this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrTable2
     //
     this.xrTable2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     resources.ApplyResources(this.xrTable2, "xrTable2");
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell7,
         this.xrTableCell9
     });
     this.xrTableRow4.Name = "xrTableRow4";
     resources.ApplyResources(this.xrTableRow4, "xrTableRow4");
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableCell8.CanGrow = false;
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "name")
     });
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.StyleName = "DataField";
     this.xrTableCell8.StylePriority.UseBorders       = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell8, "xrTableCell8");
     //
     // xrTableCell7
     //
     this.xrTableCell7.CanGrow = false;
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "timeZone")
     });
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell7, "xrTableCell7");
     this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint);
     //
     // xrTableCell9
     //
     this.xrTableCell9.CanGrow = false;
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "calculatedField1")
     });
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     resources.ApplyResources(this.xrTableCell9, "xrTableCell9");
     this.xrTableCell9.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell9_BeforePrint);
     //
     // TopMargin
     //
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.TopMargin, "TopMargin");
     //
     // BottomMargin
     //
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Company.Structure.Division);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3
     });
     resources.ApplyResources(this.pageHeaderBand1, "pageHeaderBand1");
     this.pageHeaderBand1.Name = "pageHeaderBand1";
     //
     // xrLabel5
     //
     this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel5, "xrLabel5");
     this.xrLabel5.Name    = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.StylePriority.UseBorders       = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     //
     // xrLabel4
     //
     this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name    = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.StylePriority.UseBorders       = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name    = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.StylePriority.UseBorders       = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name = "xrTableRow1";
     resources.ApplyResources(this.xrTableRow1, "xrTableRow1");
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name = "xrTableCell1";
     resources.ApplyResources(this.xrTableCell1, "xrTableCell1");
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     resources.ApplyResources(this.xrTableCell2, "xrTableCell2");
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name = "xrTableCell3";
     resources.ApplyResources(this.xrTableCell3, "xrTableCell3");
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow2.Name = "xrTableRow2";
     resources.ApplyResources(this.xrTableRow2, "xrTableRow2");
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     resources.ApplyResources(this.xrTableCell4, "xrTableCell4");
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name = "xrTableCell5";
     resources.ApplyResources(this.xrTableCell5, "xrTableCell5");
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name = "xrTableCell6";
     resources.ApplyResources(this.xrTableCell6, "xrTableCell6");
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel2,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Name    = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     //
     // User
     //
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name    = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     this.xrPageInfo1.StylePriority.UseBorders       = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     this.xrPageInfo2.StylePriority.UseBorders       = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.StyleName = "Title";
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17
     });
     resources.ApplyResources(this.GroupHeader1, "GroupHeader1");
     this.GroupHeader1.Name         = "GroupHeader1";
     this.GroupHeader1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupHeader1_BeforePrint);
     //
     // xrLabel17
     //
     this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.None;
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Name    = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StylePriority.UseBorders       = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     //
     // Yes
     //
     resources.ApplyResources(this.Yes, "Yes");
     this.Yes.Name    = "Yes";
     this.Yes.Visible = false;
     //
     // No
     //
     this.No.Name    = "No";
     this.No.Visible = false;
     //
     // calculatedField1
     //
     resources.ApplyResources(this.calculatedField1, "calculatedField1");
     this.calculatedField1.Expression = "Iif([isInactive] ==True , [Parameters.Yes] ,[Parameters.No] )";
     this.calculatedField1.Name       = "calculatedField1";
     //
     // DivisonsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.GroupHeader1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.User,
         this.Yes,
         this.No
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
	/// <summary>
	/// Required method for Designer support - do not modify
	/// the contents of this method with the code editor.
	/// </summary>
	private void InitializeComponent() {
            string resourceFileName = "TvListReport.resx";
            System.Resources.ResourceManager resources = global::Resources.TvListReport.ResourceManager;
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo5 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo5 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo13 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo14 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo15 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo16 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo17 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo18 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo6 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
            this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
            this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
            this.Sinav_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.radialMenu1 = new DevExpress.XtraBars.Ribbon.RadialMenu(this.components);
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrLabel17 = 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.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
            ((System.ComponentModel.ISupportInitialize)(this.radialMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "ogr_sinav_derslik";
            relationColumnInfo1.NestedKeyColumn = "derslik_id";
            relationColumnInfo1.ParentKeyColumn = "derslik_id";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Derslik";
            relationInfo1.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo2.NestedKeyColumn = "ogr_no";
            relationColumnInfo2.ParentKeyColumn = "ogr_no";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Ogrenci";
            relationInfo2.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo3.NestedKeyColumn = "bolum_id";
            relationColumnInfo3.ParentKeyColumn = "bolum_id";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "Bolumler";
            relationInfo3.ParentTable = "Ogrenci";
            relationColumnInfo4.NestedKeyColumn = "Sinav_id";
            relationColumnInfo4.ParentKeyColumn = "Sinav_id";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "Sinavlar";
            relationInfo4.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo5.NestedKeyColumn = "ders_id";
            relationColumnInfo5.ParentKeyColumn = "ders_id";
            relationInfo5.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo5});
            relationInfo5.NestedTable = "Dersler";
            relationInfo5.ParentTable = "Sinavlar";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4,
            relationInfo5});
            tableInfo1.Name = "ogr_sinav_derslik";
            columnInfo1.Name = "ogr_no";
            columnInfo2.Name = "Sinav_id";
            columnInfo3.Name = "derslik_id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3});
            tableInfo2.Name = "Derslik";
            columnInfo4.Alias = "Derslik_derslik_id";
            columnInfo4.Name = "derslik_id";
            columnInfo5.Name = "derslik_adi";
            columnInfo6.Name = "derslik_kapasite";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo4,
            columnInfo5,
            columnInfo6});
            tableInfo3.Name = "Ogrenci";
            columnInfo7.Alias = "Ogrenci_ogr_no";
            columnInfo7.Name = "ogr_no";
            columnInfo8.Name = "ogr_adi";
            columnInfo9.Name = "ogr_soyadi";
            columnInfo10.Name = "bolum_id";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo7,
            columnInfo8,
            columnInfo9,
            columnInfo10});
            tableInfo4.Name = "Bolumler";
            columnInfo11.Alias = "Bolumler_bolum_id";
            columnInfo11.Name = "bolum_id";
            columnInfo12.Name = "bolum_adi";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo11,
            columnInfo12});
            tableInfo5.Name = "Sinavlar";
            columnInfo13.Alias = "Sinavlar_Sinav_id";
            columnInfo13.Name = "Sinav_id";
            columnInfo14.Name = "ders_id";
            columnInfo15.Name = "tarih";
            columnInfo16.Name = "sinav_tur";
            columnInfo17.Name = "yapilis_tur";
            columnInfo18.Name = "sinav_saati";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo13,
            columnInfo14,
            columnInfo15,
            columnInfo16,
            columnInfo17,
            columnInfo18});
            tableInfo6.Name = "Dersler";
            columnInfo19.Alias = "Dersler_ders_id";
            columnInfo19.Name = "ders_id";
            columnInfo20.Name = "ders_adi";
            tableInfo6.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo19,
            columnInfo20});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4,
            tableInfo5,
            tableInfo6});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel2,
            this.xrLabel1,
            this.xrLabel3,
            this.xrLabel4});
            this.Detail.Font = new System.Drawing.Font("Times New Roman", 18F);
            this.Detail.HeightF = 39.91667F;
            this.Detail.MultiColumn.ColumnCount = 3;
            this.Detail.MultiColumn.ColumnSpacing = 2F;
            this.Detail.MultiColumn.ColumnWidth = 570F;
            this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StylePriority.UseBorders = false;
            this.Detail.StylePriority.UseFont = false;
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel2.CanGrow = false;
            this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_no")});
            this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 18F);
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F);
            this.xrLabel2.StylePriority.UseBorders = false;
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.StylePriority.UsePadding = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text = "xrLabel2";
            this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel1.CanGrow = false;
            this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.derslik_adi")});
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(453.1249F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F);
            this.xrLabel1.StylePriority.UseBorderDashStyle = false;
            this.xrLabel1.StylePriority.UseBorders = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.Text = "xrLabel1";
            // 
            // xrLabel3
            // 
            this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel3.CanGrow = false;
            this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_adi")});
            this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 18F);
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(157.3187F, 0F);
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F);
            this.xrLabel3.StylePriority.UseBorderDashStyle = false;
            this.xrLabel3.StylePriority.UseBorders = false;
            this.xrLabel3.StylePriority.UseFont = false;
            this.xrLabel3.StylePriority.UsePadding = false;
            this.xrLabel3.StylePriority.UseTextAlignment = false;
            this.xrLabel3.Text = "xrLabel3";
            this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel4
            // 
            this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel4.CanGrow = false;
            this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_soyadi")});
            this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 18F);
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(297.5491F, 0F);
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F);
            this.xrLabel4.StylePriority.UseBorders = false;
            this.xrLabel4.StylePriority.UseFont = false;
            this.xrLabel4.StylePriority.UsePadding = false;
            this.xrLabel4.StylePriority.UseTextAlignment = false;
            this.xrLabel4.Text = "xrLabel4";
            this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // TopMargin
            // 
            this.TopMargin.HeightF = 0F;
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // BottomMargin
            // 
            this.BottomMargin.HeightF = 0F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // Title
            // 
            this.Title.BackColor = System.Drawing.Color.Transparent;
            this.Title.BorderColor = System.Drawing.Color.Black;
            this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Title.BorderWidth = 1F;
            this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
            this.Title.ForeColor = System.Drawing.Color.Maroon;
            this.Title.Name = "Title";
            // 
            // FieldCaption
            // 
            this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
            this.FieldCaption.BorderColor = System.Drawing.Color.Black;
            this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.FieldCaption.BorderWidth = 1F;
            this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
            this.FieldCaption.Name = "FieldCaption";
            // 
            // PageInfo
            // 
            this.PageInfo.BackColor = System.Drawing.Color.Transparent;
            this.PageInfo.BorderColor = System.Drawing.Color.Black;
            this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.PageInfo.BorderWidth = 1F;
            this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.PageInfo.ForeColor = System.Drawing.Color.Black;
            this.PageInfo.Name = "PageInfo";
            // 
            // DataField
            // 
            this.DataField.BackColor = System.Drawing.Color.Transparent;
            this.DataField.BorderColor = System.Drawing.Color.Black;
            this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.DataField.BorderWidth = 1F;
            this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.DataField.ForeColor = System.Drawing.Color.Black;
            this.DataField.Name = "DataField";
            this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            // 
            // Sinav_id
            // 
            this.Sinav_id.Description = "Sinav_id";
            dynamicListLookUpSettings1.DataAdapter = null;
            dynamicListLookUpSettings1.DataMember = null;
            dynamicListLookUpSettings1.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings1.DisplayMember = "ogr_sinav_derslik.Sinav_id";
            dynamicListLookUpSettings1.FilterString = null;
            dynamicListLookUpSettings1.ValueMember = null;
            this.Sinav_id.LookUpSettings = dynamicListLookUpSettings1;
            this.Sinav_id.Name = "Sinav_id";
            this.Sinav_id.Type = typeof(int);
            this.Sinav_id.ValueInfo = "0";
            this.Sinav_id.Visible = false;
            // 
            // radialMenu1
            // 
            this.radialMenu1.Name = "radialMenu1";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel17,
            this.xrLabel16,
            this.xrLabel15,
            this.xrLabel14,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel9,
            this.xrLabel13,
            this.xrLabel12,
            this.xrLabel11,
            this.xrLabel10});
            this.PageHeader.HeightF = 100F;
            this.PageHeader.Name = "PageHeader";
            // 
            // xrLabel17
            // 
            this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel17.CanGrow = false;
            this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1442.139F, 60.08333F);
            this.xrLabel17.Name = "xrLabel17";
            this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel17.SizeF = new System.Drawing.SizeF(155.5757F, 39.91666F);
            this.xrLabel17.StylePriority.UseBorders = false;
            this.xrLabel17.StylePriority.UseFont = false;
            this.xrLabel17.StylePriority.UsePadding = false;
            this.xrLabel17.StylePriority.UseTextAlignment = false;
            this.xrLabel17.Text = "Soyadı";
            this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel16
            // 
            this.xrLabel16.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel16.CanGrow = false;
            this.xrLabel16.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(1302.495F, 60.08333F);
            this.xrLabel16.Name = "xrLabel16";
            this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel16.SizeF = new System.Drawing.SizeF(139.6445F, 39.91666F);
            this.xrLabel16.StylePriority.UseBorderDashStyle = false;
            this.xrLabel16.StylePriority.UseBorders = false;
            this.xrLabel16.StylePriority.UseFont = false;
            this.xrLabel16.StylePriority.UsePadding = false;
            this.xrLabel16.StylePriority.UseTextAlignment = false;
            this.xrLabel16.Text = "Adı";
            this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel15
            // 
            this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel15.CanGrow = false;
            this.xrLabel15.Font = new System.Drawing.Font("Times New Roman", 13F);
            this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(1154.363F, 60.08333F);
            this.xrLabel15.Name = "xrLabel15";
            this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel15.SizeF = new System.Drawing.SizeF(148.1322F, 39.91667F);
            this.xrLabel15.StylePriority.UseBorders = false;
            this.xrLabel15.StylePriority.UseFont = false;
            this.xrLabel15.StylePriority.UsePadding = false;
            this.xrLabel15.StylePriority.UseTextAlignment = false;
            this.xrLabel15.Text = "Öğrenci Numarası";
            this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel14
            // 
            this.xrLabel14.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel14.CanGrow = false;
            this.xrLabel14.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1597.715F, 60.08333F);
            this.xrLabel14.Name = "xrLabel14";
            this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel14.SizeF = new System.Drawing.SizeF(118.125F, 39.91666F);
            this.xrLabel14.StylePriority.UseBorderDashStyle = false;
            this.xrLabel14.StylePriority.UseBorders = false;
            this.xrLabel14.StylePriority.UseFont = false;
            this.xrLabel14.Text = "Derslik";
            // 
            // xrLabel8
            // 
            this.xrLabel8.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel8.CanGrow = false;
            this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(453.1251F, 60.08333F);
            this.xrLabel8.Name = "xrLabel8";
            this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel8.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F);
            this.xrLabel8.StylePriority.UseBorderDashStyle = false;
            this.xrLabel8.StylePriority.UseBorders = false;
            this.xrLabel8.StylePriority.UseFont = false;
            this.xrLabel8.Text = "Derslik";
            // 
            // xrLabel7
            // 
            this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel7.CanGrow = false;
            this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 13F);
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(10F, 60.08333F);
            this.xrLabel7.Name = "xrLabel7";
            this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F);
            this.xrLabel7.StylePriority.UseBorders = false;
            this.xrLabel7.StylePriority.UseFont = false;
            this.xrLabel7.StylePriority.UsePadding = false;
            this.xrLabel7.StylePriority.UseTextAlignment = false;
            this.xrLabel7.Text = "Öğrenci Numarası";
            this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel6
            // 
            this.xrLabel6.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel6.CanGrow = false;
            this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(157.3186F, 60.08333F);
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F);
            this.xrLabel6.StylePriority.UseBorderDashStyle = false;
            this.xrLabel6.StylePriority.UseBorders = false;
            this.xrLabel6.StylePriority.UseFont = false;
            this.xrLabel6.StylePriority.UsePadding = false;
            this.xrLabel6.StylePriority.UseTextAlignment = false;
            this.xrLabel6.Text = "Adı";
            this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel5
            // 
            this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel5.CanGrow = false;
            this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(297.5491F, 60.08333F);
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F);
            this.xrLabel5.StylePriority.UseBorders = false;
            this.xrLabel5.StylePriority.UseFont = false;
            this.xrLabel5.StylePriority.UsePadding = false;
            this.xrLabel5.StylePriority.UseTextAlignment = false;
            this.xrLabel5.Text = "Soyadı";
            this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel9
            // 
            this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ders_adi")});
            this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 25F);
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2.094022F);
            this.xrLabel9.Name = "xrLabel9";
            this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF = new System.Drawing.SizeF(453.1249F, 47.02353F);
            this.xrLabel9.StylePriority.UseFont = false;
            // 
            // xrLabel13
            // 
            this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel13.CanGrow = false;
            this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(870.3422F, 60.08333F);
            this.xrLabel13.Name = "xrLabel13";
            this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel13.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F);
            this.xrLabel13.StylePriority.UseBorders = false;
            this.xrLabel13.StylePriority.UseFont = false;
            this.xrLabel13.StylePriority.UsePadding = false;
            this.xrLabel13.StylePriority.UseTextAlignment = false;
            this.xrLabel13.Text = "Soyadı";
            this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel12
            // 
            this.xrLabel12.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel12.CanGrow = false;
            this.xrLabel12.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(730.1115F, 60.08333F);
            this.xrLabel12.Name = "xrLabel12";
            this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel12.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F);
            this.xrLabel12.StylePriority.UseBorderDashStyle = false;
            this.xrLabel12.StylePriority.UseBorders = false;
            this.xrLabel12.StylePriority.UseFont = false;
            this.xrLabel12.StylePriority.UsePadding = false;
            this.xrLabel12.StylePriority.UseTextAlignment = false;
            this.xrLabel12.Text = "Adı";
            this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel11
            // 
            this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel11.CanGrow = false;
            this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 13F);
            this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(582.793F, 60.08333F);
            this.xrLabel11.Name = "xrLabel11";
            this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel11.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F);
            this.xrLabel11.StylePriority.UseBorders = false;
            this.xrLabel11.StylePriority.UseFont = false;
            this.xrLabel11.StylePriority.UsePadding = false;
            this.xrLabel11.StylePriority.UseTextAlignment = false;
            this.xrLabel11.Text = "Öğrenci Numarası";
            this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel10
            // 
            this.xrLabel10.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
            this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrLabel10.CanGrow = false;
            this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 16F);
            this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1025.918F, 60.08333F);
            this.xrLabel10.Name = "xrLabel10";
            this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel10.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F);
            this.xrLabel10.StylePriority.UseBorderDashStyle = false;
            this.xrLabel10.StylePriority.UseBorders = false;
            this.xrLabel10.StylePriority.UseFont = false;
            this.xrLabel10.Text = "Derslik";
            // 
            // TvListReportcs
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.PageHeader});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "ogr_sinav_derslik";
            this.DataSource = this.sqlDataSource1;
            this.ExportOptions.Image.ExportMode = DevExpress.XtraPrinting.ImageExportMode.DifferentFiles;
            this.ExportOptions.Xls.ExportMode = DevExpress.XtraPrinting.XlsExportMode.DifferentFiles;
            this.FilterString = "[Sinav_id] = ?Sinav_id";
            this.Margins = new System.Drawing.Printing.Margins(100, 100, 0, 0);
            this.PageHeight = 1080;
            this.PageWidth = 1920;
            this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.Sinav_id});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.radialMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(ParentHoursReport));
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel18         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel22         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PatientName       = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderName      = new DevExpress.XtraReports.UI.CalculatedField();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.CaseID            = new DevExpress.XtraReports.Parameters.Parameter();
     this.StartDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.EndDate           = new DevExpress.XtraReports.Parameters.Parameter();
     this.BCBAName          = new DevExpress.XtraReports.UI.CalculatedField();
     this.BCBASignature     = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderSignature = new DevExpress.XtraReports.UI.CalculatedField();
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel16         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel15         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel31         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel30         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel27         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel23         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1  = new DevExpress.XtraReports.UI.CalculatedField();
     this.FinalizationID    = new DevExpress.XtraReports.UI.CalculatedField();
     this.ProviderID        = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProviderTypeLabel = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName     = "DataField";
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.Visible       = false;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Dpi           = 100F;
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(423.1246F, 9.999974F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(33.48204F, 18.37179F);
     this.xrLabel18.StyleName     = "FieldCaption";
     this.xrLabel18.Text          = "Hrs";
     //
     // xrLabel13
     //
     this.xrLabel13.Dpi           = 100F;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(323.7936F, 9.999974F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(75.00002F, 18.37179F);
     this.xrLabel13.StyleName     = "FieldCaption";
     this.xrLabel13.Text          = "Time Out";
     //
     // xrLabel10
     //
     this.xrLabel10.Dpi           = 100F;
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(225.5297F, 9.999974F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(71.18059F, 18.37179F);
     this.xrLabel10.StyleName     = "FieldCaption";
     this.xrLabel10.Text          = "Time In";
     //
     // xrLabel3
     //
     this.xrLabel3.Dpi           = 100F;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(124.7159F, 9.999974F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(72.68874F, 18.37179F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Date";
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi           = 100F;
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(480.4332F, 9.999974F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(56.95837F, 18.37178F);
     this.xrLabel8.StyleName     = "FieldCaption";
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "Service";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 1.041635F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLine2
     //
     this.xrLine2.Dpi           = 100F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(5.999947F, 28.37181F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(696F, 2F);
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo2
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 45.66663F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi           = 100F;
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(81.74996F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel22,
         this.xrLabel21,
         this.xrLabel20,
         this.xrPictureBox1,
         this.xrLabel19,
         this.xrLabel2,
         this.xrLabel17
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 207.1488F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel22
     //
     this.xrLabel22.Dpi                            = 100F;
     this.xrLabel22.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.LocationFloat                  = new DevExpress.Utils.PointFloat(512.6127F, 174.5655F);
     this.xrLabel22.Name                           = "xrLabel22";
     this.xrLabel22.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF                          = new System.Drawing.SizeF(51.86224F, 20.66664F);
     this.xrLabel22.StyleName                      = "Title";
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text                           = "through";
     this.xrLabel22.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.StartDate", "{0:M/d/yyyy}")
     });
     this.xrLabel21.Dpi           = 100F;
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(411.2205F, 174.5655F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.Text          = "xrLabel21";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel20
     //
     this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.EndDate", "{0:M/d/yyyy}")
     });
     this.xrLabel20.Dpi           = 100F;
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(564.4752F, 174.5655F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel20.Text          = "xrLabel20";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Dpi           = 100F;
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(6.000019F, 1.999991F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(154.1667F, 136.25F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel19
     //
     this.xrLabel19.Dpi                   = 100F;
     this.xrLabel19.Font                  = new System.Drawing.Font("Trebuchet MS", 9.75F);
     this.xrLabel19.LocationFloat         = new DevExpress.Utils.PointFloat(174.75F, 18.66668F);
     this.xrLabel19.Multiline             = true;
     this.xrLabel19.Name                  = "xrLabel19";
     this.xrLabel19.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF                 = new System.Drawing.SizeF(308.9399F, 105.2917F);
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.Text                  = "Applied Behavioral Mental Health Counseling P.C.\r\n1970 52nd St, Bmt, Brooklyn, NY" +
                                            " 11204\r\nPhone: 718-360-9548\r\nFax: 718-874-0052\r\[email protected]\r\nwww.a" +
                                            "ppliedabc.com";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.PatientName")
     });
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(401.0257F, 143.5655F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(276.4063F, 31F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi           = 100F;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 143.5655F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(276.8622F, 38.99998F);
     this.xrLabel17.StyleName     = "Title";
     this.xrLabel17.Text          = "Patient Hours Detail";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 24F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Times New Roman", 8F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // PatientName
     //
     this.PatientName.DataMember = "webreports_PatientHoursReportDetail";
     this.PatientName.Expression = "[PatientLastName] + \', \' + [PatientFirstName]";
     this.PatientName.Name       = "PatientName";
     //
     // ProviderName
     //
     this.ProviderName.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderName.Expression = "[ProviderLastName] + \', \' + [ProviderFirstName]";
     this.ProviderName.Name       = "ProviderName";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "CoreConnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "webreports_PatientHoursReportDetail";
     queryParameter1.Name  = "@CaseID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter2.Name  = "@StartDate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter3.Name  = "@EndDate";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.StoredProcName = "webreports.PatientHoursReportDetail";
     storedProcQuery2.Name           = "webreports_PatientHoursReportDetailSignatures";
     queryParameter4.Name            = "@CaseID";
     queryParameter4.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value           = new DevExpress.DataAccess.Expression("[Parameters.CaseID]", typeof(int));
     queryParameter5.Name            = "@StartDate";
     queryParameter5.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value           = new DevExpress.DataAccess.Expression("[Parameters.StartDate]", typeof(System.DateTime));
     queryParameter6.Name            = "@EndDate";
     queryParameter6.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value           = new DevExpress.DataAccess.Expression("[Parameters.EndDate]", typeof(System.DateTime));
     storedProcQuery2.Parameters.Add(queryParameter4);
     storedProcQuery2.Parameters.Add(queryParameter5);
     storedProcQuery2.Parameters.Add(queryParameter6);
     storedProcQuery2.StoredProcName = "webreports.PatientHoursReportDetailSignatures";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // CaseID
     //
     this.CaseID.Description = "Case ID";
     this.CaseID.Name        = "CaseID";
     this.CaseID.Type        = typeof(int);
     this.CaseID.ValueInfo   = "0";
     //
     // StartDate
     //
     this.StartDate.Description = "Start Date";
     this.StartDate.Name        = "StartDate";
     this.StartDate.Type        = typeof(System.DateTime);
     //
     // EndDate
     //
     this.EndDate.Description = "End Date";
     this.EndDate.Name        = "EndDate";
     this.EndDate.Type        = typeof(System.DateTime);
     //
     // BCBAName
     //
     this.BCBAName.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBAName.Expression = "[reportedBCBALastName] + \', \' + [reportedBCBAFirstName]";
     this.BCBAName.Name       = "BCBAName";
     //
     // BCBASignature
     //
     this.BCBASignature.DataMember = "webreports_PatientHoursReportDetail";
     this.BCBASignature.Expression = "[reportedBCBAFirstName] + \' \' + [reportedBCBALastName]";
     this.BCBASignature.Name       = "BCBASignature";
     //
     // ProviderSignature
     //
     this.ProviderSignature.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderSignature.Expression = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.ProviderSignature.Name       = "ProviderSignature";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.GroupHeader2,
         this.GroupFooter1,
         this.ReportHeader
     });
     this.DetailReport1.DataMember   = "webreports_PatientHoursReportDetail";
     this.DetailReport1.DataSource   = this.sqlDataSource1;
     this.DetailReport1.Dpi          = 100F;
     this.DetailReport1.FilterString = "[ProviderID] = ?ProviderID";
     this.DetailReport1.Level        = 0;
     this.DetailReport1.Name         = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16,
         this.xrLabel12,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel1,
         this.xrLabel28
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 23F;
     this.Detail2.Name    = "Detail2";
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ID")
     });
     this.xrLabel16.Dpi                   = 100F;
     this.xrLabel16.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(41.24997F, 0F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(59.50743F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "xrLabel16";
     //
     // xrLabel12
     //
     this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ServiceCode")
     });
     this.xrLabel12.Dpi                   = 100F;
     this.xrLabel12.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(480.4332F, 0F);
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(56.95837F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTotal")
     });
     this.xrLabel9.Dpi                   = 100F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(423.1246F, 0F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(33.48203F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "xrLabel9";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeOut", "{0:h:mm tt}")
     });
     this.xrLabel6.Dpi                   = 100F;
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(323.7936F, 0F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(75.00002F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursTimeIn", "{0:h:mm tt}")
     });
     this.xrLabel1.Dpi                   = 100F;
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(225.5295F, 0F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(71.1806F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.HoursDate", "{0:M/d/yyyy}")
     });
     this.xrLabel28.Dpi                            = 100F;
     this.xrLabel28.Font                           = new System.Drawing.Font("Times New Roman", 8.5F);
     this.xrLabel28.LocationFloat                  = new DevExpress.Utils.PointFloat(124.7159F, 0F);
     this.xrLabel28.Name                           = "xrLabel28";
     this.xrLabel28.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.SizeF                          = new System.Drawing.SizeF(72.68874F, 15F);
     this.xrLabel28.StylePriority.UseFont          = false;
     this.xrLabel28.StylePriority.UseTextAlignment = false;
     this.xrLabel28.Text                           = "xrLabel11";
     this.xrLabel28.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel8,
         this.xrLabel3,
         this.xrLabel10,
         this.xrLabel13,
         this.xrLabel18,
         this.xrLine1,
         this.xrLine2
     });
     this.GroupHeader2.Dpi             = 100F;
     this.GroupHeader2.HeightF         = 31.25F;
     this.GroupHeader2.Name            = "GroupHeader2";
     this.GroupHeader2.RepeatEveryPage = true;
     //
     // xrLabel15
     //
     this.xrLabel15.Dpi           = 100F;
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(41.24997F, 9.999974F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(59.50743F, 18.37179F);
     this.xrLabel15.StyleName     = "FieldCaption";
     this.xrLabel15.Text          = "ID";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel31,
         this.xrLabel30,
         this.xrLine3,
         this.xrLabel27,
         this.xrLabel26,
         this.xrLabel25
     });
     this.GroupFooter1.Dpi     = 100F;
     this.GroupFooter1.HeightF = 86.12499F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLabel31
     //
     this.xrLabel31.Dpi                   = 100F;
     this.xrLabel31.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLabel31.LocationFloat         = new DevExpress.Utils.PointFloat(510.7407F, 55.25004F);
     this.xrLabel31.Name                  = "xrLabel31";
     this.xrLabel31.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.SizeF                 = new System.Drawing.SizeF(89.58331F, 23F);
     this.xrLabel31.StyleName             = "Title";
     this.xrLabel31.StylePriority.UseFont = false;
     this.xrLabel31.Text                  = "Signature ID:";
     //
     // xrLabel30
     //
     this.xrLabel30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.FinalizationID")
     });
     this.xrLabel30.Dpi           = 100F;
     this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(600.324F, 55.25004F);
     this.xrLabel30.Name          = "xrLabel30";
     this.xrLabel30.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.SizeF         = new System.Drawing.SizeF(101.6758F, 23F);
     this.xrLabel30.Text          = "xrLabel30";
     //
     // xrLine3
     //
     this.xrLine3.Dpi           = 100F;
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(5.999883F, 9.999974F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(696F, 5.95832F);
     //
     // xrLabel27
     //
     this.xrLabel27.Dpi                   = 100F;
     this.xrLabel27.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel27.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.25002F);
     this.xrLabel27.Name                  = "xrLabel27";
     this.xrLabel27.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.SizeF                 = new System.Drawing.SizeF(175.8206F, 23F);
     this.xrLabel27.StyleName             = "Title";
     this.xrLabel27.StylePriority.UseFont = false;
     this.xrLabel27.Text                  = "Electronically signed:";
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.LatestSignoffDate")
     });
     this.xrLabel26.Dpi           = 100F;
     this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(510.7407F, 32.25002F);
     this.xrLabel26.Name          = "xrLabel26";
     this.xrLabel26.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.SizeF         = new System.Drawing.SizeF(191.2593F, 23F);
     this.xrLabel26.Text          = "xrLabel26";
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderSignature")
     });
     this.xrLabel25.Dpi                            = 100F;
     this.xrLabel25.Font                           = new System.Drawing.Font("Kunstler Script", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel25.LocationFloat                  = new DevExpress.Utils.PointFloat(213.3768F, 20.41664F);
     this.xrLabel25.Name                           = "xrLabel25";
     this.xrLabel25.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                          = new System.Drawing.SizeF(283.3333F, 44.875F);
     this.xrLabel25.StylePriority.UseFont          = false;
     this.xrLabel25.StylePriority.UseTextAlignment = false;
     this.xrLabel25.Text                           = "xrLabel25";
     this.xrLabel25.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel23,
         this.xrLabel24
     });
     this.ReportHeader.Dpi     = 100F;
     this.ReportHeader.HeightF = 69.79166F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderTypeLabel")
     });
     this.xrLabel23.Dpi                   = 100F;
     this.xrLabel23.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel23.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrLabel23.Name                  = "xrLabel23";
     this.xrLabel23.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF                 = new System.Drawing.SizeF(157.9349F, 23F);
     this.xrLabel23.StylePriority.UseFont = false;
     this.xrLabel23.Text                  = "xrLabel23";
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "webreports_PatientHoursReportDetail.ProviderName")
     });
     this.xrLabel24.Dpi                   = 100F;
     this.xrLabel24.Font                  = new System.Drawing.Font("Times New Roman", 12F);
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 32.99999F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(389.5833F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "xrLabel24";
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember  = "webreports_PatientHoursReportDetailSignatures";
     this.calculatedField1.DisplayName = "ProviderSignature";
     this.calculatedField1.Expression  = "[ProviderFirstName] + \' \' + [ProviderLastName]";
     this.calculatedField1.Name        = "calculatedField1";
     //
     // FinalizationID
     //
     this.FinalizationID.DataMember = "webreports_PatientHoursReportDetail";
     this.FinalizationID.Expression = "ToInt(Rnd() * 100000)";
     this.FinalizationID.Name       = "FinalizationID";
     //
     // ProviderID
     //
     this.ProviderID.Description = "Provider ID";
     this.ProviderID.Name        = "ProviderID";
     this.ProviderID.Type        = typeof(int);
     this.ProviderID.ValueInfo   = "0";
     //
     // ProviderTypeLabel
     //
     this.ProviderTypeLabel.DataMember = "webreports_PatientHoursReportDetail";
     this.ProviderTypeLabel.Expression = "Iif([ProviderTypeCode] = \'BCBA\', \'BCBA\', \'Behavior Technician\')";
     this.ProviderTypeLabel.Name       = "ProviderTypeLabel";
     //
     // ParentHoursReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.PatientName,
         this.ProviderName,
         this.BCBAName,
         this.BCBASignature,
         this.ProviderSignature,
         this.calculatedField1,
         this.FinalizationID,
         this.ProviderTypeLabel
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(74, 64, 100, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.CaseID,
         this.StartDate,
         this.EndDate,
         this.ProviderID
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "16.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table5            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ZaposleniSaoOsig2));
     this.sqlDataSource1         = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption1          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupData1             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupFooterBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo               = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader           = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader2           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader3           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader4           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupFooter1           = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.pageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.table1                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table2                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table3                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table4                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.label2                 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "localhost_DesignSaoOsig1_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "DesignSaoOsig1";
     msSqlConnectionParameters1.ServerName        = "(LocalDb)\\MSSQLLocalDB";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "PrezimeIme";
     table5.Name                  = "tblZaposleni_AD";
     columnExpression1.Table      = table5;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "NetworkLogin";
     columnExpression2.Table      = table5;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "OrgUnitID";
     columnExpression3.Table      = table5;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Status";
     columnExpression4.Table      = table5;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Name = "tblZaposleni_AD";
     selectQuery1.Tables.Add(table5);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // GroupCaption1
     //
     this.GroupCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupCaption1.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption1.BorderWidth   = 2F;
     this.GroupCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupCaption1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupCaption1.Name          = "GroupCaption1";
     this.GroupCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupData1
     //
     this.GroupData1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(159)))), ((int)(((byte)(228)))));
     this.GroupData1.BorderColor   = System.Drawing.Color.White;
     this.GroupData1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupData1.BorderWidth   = 2F;
     this.GroupData1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupData1.ForeColor     = System.Drawing.Color.White;
     this.GroupData1.Name          = "GroupData1";
     this.GroupData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooterBackground3
     //
     this.GroupFooterBackground3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(117)))), ((int)(((byte)(129)))));
     this.GroupFooterBackground3.BorderColor   = System.Drawing.Color.White;
     this.GroupFooterBackground3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupFooterBackground3.BorderWidth   = 2F;
     this.GroupFooterBackground3.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupFooterBackground3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupFooterBackground3.Name          = "GroupFooterBackground3";
     this.GroupFooterBackground3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupFooterBackground3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label1
     });
     this.ReportHeader.HeightF = 60F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Status", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 27F;
     this.GroupHeader1.Level      = 1;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrgUnitID", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader2.HeightF    = 27F;
     this.GroupHeader2.Level      = 2;
     this.GroupHeader2.Name       = "GroupHeader2";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table3
     });
     this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("NetworkLogin", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader3.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader3.HeightF    = 27F;
     this.GroupHeader3.Level      = 3;
     this.GroupHeader3.Name       = "GroupHeader3";
     //
     // GroupHeader4
     //
     this.GroupHeader4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table4
     });
     this.GroupHeader4.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("PrezimeIme", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader4.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader4.HeightF    = 27F;
     this.GroupHeader4.Level      = 4;
     this.GroupHeader4.Name       = "GroupHeader4";
     //
     // Detail
     //
     this.Detail.HeightF = 0F;
     this.Detail.Name    = "Detail";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label2
     });
     this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
     this.GroupFooter1.HeightF    = 6F;
     this.GroupFooter1.Name       = "GroupFooter1";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.Text          = "Izvjestaj o zaposlenicima SaoOsig";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "GroupCaption1";
     this.tableCell1.Text      = "STATUS";
     this.tableCell1.Weight    = 0.082820504995492789D;
     //
     // tableCell2
     //
     this.tableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Status]")
     });
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "GroupData1";
     this.tableCell2.Weight    = 0.91717951847956736D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table2.Name          = "table2";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell3,
         this.tableCell4
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 1D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "GroupCaption1";
     this.tableCell3.Text      = "ORG UNIT ID";
     this.tableCell3.Weight    = 0.12101206852839544D;
     //
     // tableCell4
     //
     this.tableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrgUnitID]")
     });
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "GroupData1";
     this.tableCell4.Weight    = 0.87898794320913465D;
     //
     // table3
     //
     this.table3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table3.Name          = "table3";
     this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow3
     });
     this.table3.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow3
     //
     this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow3.Name   = "tableRow3";
     this.tableRow3.Weight = 1D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "GroupCaption1";
     this.tableCell5.Text      = "NETWORK LOGIN";
     this.tableCell5.Weight    = 0.16409270066481371D;
     //
     // tableCell6
     //
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NetworkLogin]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "GroupData1";
     this.tableCell6.Weight    = 0.83590726412259619D;
     //
     // table4
     //
     this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table4.Name          = "table4";
     this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow4
     });
     this.table4.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow4
     //
     this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell7,
         this.tableCell8
     });
     this.tableRow4.Name   = "tableRow4";
     this.tableRow4.Weight = 1D;
     //
     // tableCell7
     //
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "GroupCaption1";
     this.tableCell7.Text      = "PREZIME IME";
     this.tableCell7.Weight    = 0.12689961360051083D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PrezimeIme]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "GroupData1";
     this.tableCell8.Weight    = 0.87310039813701923D;
     //
     // label2
     //
     this.label2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.label2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.label2.Name                     = "label2";
     this.label2.SizeF                    = new System.Drawing.SizeF(650F, 2.08F);
     this.label2.StyleName                = "GroupFooterBackground3";
     this.label2.StylePriority.UseBorders = false;
     //
     // ZaposleniSaoOsig2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupHeader3,
         this.GroupHeader4,
         this.Detail,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblZaposleni_AD";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.GroupCaption1,
         this.GroupData1,
         this.GroupFooterBackground3,
         this.PageInfo
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.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();
 }
    /// <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();
    }
Exemple #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(rep_pro_ba_descriptions));
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.xrRichText1          = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel5             = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel6             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2             = new DevExpress.XtraReports.UI.XRLabel();
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel8             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo2          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel7             = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel16            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10            = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20            = new DevExpress.XtraReports.UI.XRLabel();
     this.calculatedField1     = new DevExpress.XtraReports.UI.CalculatedField();
     this.label_style          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.output_style         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.ProjectID            = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectName          = new DevExpress.XtraReports.Parameters.Parameter();
     this.ProjectColor         = new DevExpress.XtraReports.Parameters.Parameter();
     this.Add_space_after_item = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrPageBreak1         = new DevExpress.XtraReports.UI.XRPageBreak();
     this.GroupFooter1         = new DevExpress.XtraReports.UI.GroupFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrRichText1,
         this.xrLabel5
     });
     this.Detail.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Detail.HeightF = 117.625F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ba response", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.Detail.StylePriority.UseFont = false;
     this.Detail.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrRichText1
     //
     this.xrRichText1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrRichText1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Html", "[res_response]")
     });
     this.xrRichText1.Font                     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrRichText1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 30.20833F);
     this.xrRichText1.Name                     = "xrRichText1";
     this.xrRichText1.SerializableRtfString    = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                    = new System.Drawing.SizeF(750.0004F, 87.41666F);
     this.xrRichText1.StyleName                = "output_style";
     this.xrRichText1.StylePriority.UseBorders = false;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderColor = System.Drawing.Color.Black;
     this.xrLabel5.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel5.BorderWidth   = 1F;
     this.xrLabel5.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(749.9998F, 30.20833F);
     this.xrLabel5.StyleName     = "label_style";
     this.xrLabel5.StylePriority.UseBorderColor = false;
     this.xrLabel5.StylePriority.UseBorders     = false;
     this.xrLabel5.StylePriority.UseBorderWidth = false;
     this.xrLabel5.StylePriority.UseFont        = false;
     this.xrLabel5.Text = "Business Area Response:";
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 47.91667F;
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseFont = false;
     this.TopMargin.TextAlignment         = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 28F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel2
     });
     this.ReportHeader.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportHeader.HeightF = 68.46434F;
     this.ReportHeader.Name    = "ReportHeader";
     this.ReportHeader.StylePriority.UseFont = false;
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[ProjectName]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(382.334F, 0F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(367.6665F, 46.33334F);
     this.xrLabel6.StylePriority.UseBorders       = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "Project name";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrLabel6.BeforePrint                   += new System.Drawing.Printing.PrintEventHandler(this.xrLabel6_BeforePrint);
     //
     // xrLabel2
     //
     this.xrLabel2.Bookmark                       = "Summary";
     this.xrLabel2.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.Font                           = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(8, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(382.3333F, 46.33334F);
     this.xrLabel2.StylePriority.UseBorders       = false;
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UsePadding       = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "Business Area Summary";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel8,
         this.xrPageInfo2,
         this.xrLabel7,
         this.xrPageInfo1
     });
     this.PageFooter.Font    = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PageFooter.HeightF = 79.42709F;
     this.PageFooter.Name    = "PageFooter";
     this.PageFooter.StylePriority.UseFont = false;
     //
     // xrLabel8
     //
     this.xrLabel8.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel8.LocationFloat                  = new DevExpress.Utils.PointFloat(641.6665F, 43.92707F);
     this.xrLabel8.Name                           = "xrLabel8";
     this.xrLabel8.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                          = new System.Drawing.SizeF(49.47913F, 35.50002F);
     this.xrLabel8.StylePriority.UseFont          = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text                           = "Page";
     this.xrLabel8.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrLabel8.TextTrimming                   = System.Drawing.StringTrimming.None;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo2.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 42.8854F);
     this.xrPageInfo2.Name                           = "xrPageInfo2";
     this.xrPageInfo2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo                       = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF                          = new System.Drawing.SizeF(269.2708F, 36.54169F);
     this.xrPageInfo2.StylePriority.UseFont          = false;
     this.xrPageInfo2.StylePriority.UseTextAlignment = false;
     this.xrPageInfo2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font                           = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(7.947286E-05F, 19.79167F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(197.2917F, 23.09373F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "Generated by ReadyCert® for";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                           = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(691.1456F, 43.92707F);
     this.xrPageInfo1.Name                           = "xrPageInfo1";
     this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(58.85419F, 35.50002F);
     this.xrPageInfo1.StylePriority.UseFont          = false;
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel16,
         this.xrLabel11,
         this.xrLabel10
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("area_identifier", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 30.20833F;
     this.GroupHeader1.Level           = 1;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrLabel16
     //
     this.xrLabel16.BorderColor = System.Drawing.Color.Black;
     this.xrLabel16.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel16.BorderWidth   = 1F;
     this.xrLabel16.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(125F, 30.20833F);
     this.xrLabel16.StyleName     = "label_style";
     this.xrLabel16.StylePriority.UseBorderColor = false;
     this.xrLabel16.StylePriority.UseBorders     = false;
     this.xrLabel16.StylePriority.UseBorderWidth = false;
     this.xrLabel16.StylePriority.UseFont        = false;
     this.xrLabel16.Text = "Business Area:";
     //
     // xrLabel11
     //
     this.xrLabel11.BorderColor = System.Drawing.Color.Black;
     this.xrLabel11.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel11.BorderWidth = 1F;
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_identifier]")
     });
     this.xrLabel11.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(125F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(113.9583F, 30.20833F);
     this.xrLabel11.StyleName     = "output_style";
     this.xrLabel11.StylePriority.UseBorderColor   = false;
     this.xrLabel11.StylePriority.UseBorders       = false;
     this.xrLabel11.StylePriority.UseBorderWidth   = false;
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text          = "area id";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.BorderColor = System.Drawing.Color.Black;
     this.xrLabel10.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.BorderWidth = 1F;
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[area_name]")
     });
     this.xrLabel10.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(238.9583F, 0F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(511.0418F, 30.20833F);
     this.xrLabel10.StyleName     = "output_style";
     this.xrLabel10.StylePriority.UseBorderColor   = false;
     this.xrLabel10.StylePriority.UseBorders       = false;
     this.xrLabel10.StylePriority.UseBorderWidth   = false;
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text          = "area name";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel21,
         this.xrLabel20
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("mil_name", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 30.20833F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // xrLabel21
     //
     this.xrLabel21.BorderColor = System.Drawing.Color.Black;
     this.xrLabel21.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel21.BorderWidth   = 1F;
     this.xrLabel21.Font          = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(125F, 30.20833F);
     this.xrLabel21.StyleName     = "label_style";
     this.xrLabel21.StylePriority.UseBorderColor = false;
     this.xrLabel21.StylePriority.UseBorders     = false;
     this.xrLabel21.StylePriority.UseBorderWidth = false;
     this.xrLabel21.StylePriority.UseFont        = false;
     this.xrLabel21.Text = "Milestone:";
     //
     // xrLabel20
     //
     this.xrLabel20.BorderColor = System.Drawing.Color.Black;
     this.xrLabel20.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel20.BorderWidth = 1F;
     this.xrLabel20.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[mil_name]")
     });
     this.xrLabel20.Font          = new System.Drawing.Font("Segoe UI", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(125F, 0F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(625.0005F, 30.20833F);
     this.xrLabel20.StyleName     = "output_style";
     this.xrLabel20.StylePriority.UseBorderColor   = false;
     this.xrLabel20.StylePriority.UseBorders       = false;
     this.xrLabel20.StylePriority.UseBorderWidth   = false;
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text          = "Milestone name";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // calculatedField1
     //
     this.calculatedField1.DataMember  = "Query";
     this.calculatedField1.DisplayName = "tostr-milname";
     this.calculatedField1.Expression  = "tostr([mil_name])";
     this.calculatedField1.FieldType   = DevExpress.XtraReports.UI.FieldType.String;
     this.calculatedField1.Name        = "calculatedField1";
     //
     // label_style
     //
     this.label_style.BackColor       = System.Drawing.Color.LemonChiffon;
     this.label_style.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.label_style.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.label_style.Borders         = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.label_style.BorderWidth     = 2F;
     this.label_style.Font            = new System.Drawing.Font("Segoe UI", 11F);
     this.label_style.Name            = "label_style";
     this.label_style.Padding         = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 3, 0, 100F);
     this.label_style.TextAlignment   = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // output_style
     //
     this.output_style.BackColor     = System.Drawing.Color.WhiteSmoke;
     this.output_style.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.output_style.Font          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.output_style.Name          = "output_style";
     this.output_style.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 1, 0, 100F);
     this.output_style.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DevDB";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "ProjectID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.ProjectID]", typeof(System.Guid));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // ProjectID
     //
     this.ProjectID.Description = "ProjectID";
     this.ProjectID.Name        = "ProjectID";
     this.ProjectID.Type        = typeof(System.Guid);
     this.ProjectID.ValueInfo   = "00000000-0000-0000-0000-000000000000";
     this.ProjectID.Visible     = false;
     //
     // ProjectName
     //
     this.ProjectName.Description = "ProjectName";
     this.ProjectName.Name        = "ProjectName";
     this.ProjectName.Visible     = false;
     //
     // ProjectColor
     //
     this.ProjectColor.Description = "ProjectColor";
     this.ProjectColor.Name        = "ProjectColor";
     this.ProjectColor.Visible     = false;
     //
     // Add_space_after_item
     //
     this.Add_space_after_item.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1
     });
     this.Add_space_after_item.HeightF = 13.54167F;
     this.Add_space_after_item.Level   = 1;
     this.Add_space_after_item.Name    = "Add_space_after_item";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.HeightF = 0F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // rep_pro_ba_descriptions
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.Add_space_after_item,
         this.GroupFooter1
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calculatedField1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Query";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margins    = new System.Drawing.Printing.Margins(49, 51, 48, 28);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.ProjectID,
         this.ProjectName,
         this.ProjectColor
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.label_style,
         this.output_style
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemple #34
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(JobHistory));
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.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.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     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.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8          = new DevExpress.XtraReports.UI.XRLabel();
     this.groupHeaderBand2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel20         = new DevExpress.XtraReports.UI.XRLabel();
     this.User              = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel19         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DataField         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel9          = new DevExpress.XtraReports.UI.XRLabel();
     this.Division          = new DevExpress.XtraReports.Parameters.Parameter();
     this.Branch            = new DevExpress.XtraReports.Parameters.Parameter();
     this.Position          = new DevExpress.XtraReports.Parameters.Parameter();
     this.Department        = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     resources.ApplyResources(this.Detail, "Detail");
     this.Detail.Name         = "Detail";
     this.Detail.Padding      = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName    = "DataField";
     this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.groupHeaderBand1_BeforePrint);
     //
     // xrTable1
     //
     resources.ApplyResources(this.xrTable1, "xrTable1");
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     //
     // 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.xrTableRow1.Name = "xrTableRow1";
     resources.ApplyResources(this.xrTableRow1, "xrTableRow1");
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "employeeName")
     });
     this.xrTableCell1.Name = "xrTableCell1";
     resources.ApplyResources(this.xrTableCell1, "xrTableCell1");
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "departmentName")
     });
     this.xrTableCell2.Name = "xrTableCell2";
     resources.ApplyResources(this.xrTableCell2, "xrTableCell2");
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "branchName")
     });
     this.xrTableCell3.Name = "xrTableCell3";
     resources.ApplyResources(this.xrTableCell3, "xrTableCell3");
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "positionName")
     });
     this.xrTableCell5.Name = "xrTableCell5";
     resources.ApplyResources(this.xrTableCell5, "xrTableCell5");
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "reportToName")
     });
     this.xrTableCell6.Name = "xrTableCell6";
     resources.ApplyResources(this.xrTableCell6, "xrTableCell6");
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateString", "{0:MM/dd/yyyy}")
     });
     this.xrTableCell7.Name = "xrTableCell7";
     resources.ApplyResources(this.xrTableCell7, "xrTableCell7");
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "notes")
     });
     this.xrTableCell8.Name = "xrTableCell8";
     resources.ApplyResources(this.xrTableCell8, "xrTableCell8");
     //
     // TopMargin
     //
     resources.ApplyResources(this.TopMargin, "TopMargin");
     this.TopMargin.Name    = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // BottomMargin
     //
     resources.ApplyResources(this.BottomMargin, "BottomMargin");
     this.BottomMargin.Name    = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8
     });
     resources.ApplyResources(this.groupHeaderBand1, "groupHeaderBand1");
     this.groupHeaderBand1.Level           = 1;
     this.groupHeaderBand1.Name            = "groupHeaderBand1";
     this.groupHeaderBand1.RepeatEveryPage = true;
     this.groupHeaderBand1.BeforePrint    += new System.Drawing.Printing.PrintEventHandler(this.groupHeaderBand1_BeforePrint);
     //
     // xrLabel1
     //
     resources.ApplyResources(this.xrLabel1, "xrLabel1");
     this.xrLabel1.Name      = "xrLabel1";
     this.xrLabel1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.StyleName = "FieldCaption";
     //
     // xrLabel2
     //
     resources.ApplyResources(this.xrLabel2, "xrLabel2");
     this.xrLabel2.Name      = "xrLabel2";
     this.xrLabel2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.StyleName = "FieldCaption";
     //
     // xrLabel3
     //
     resources.ApplyResources(this.xrLabel3, "xrLabel3");
     this.xrLabel3.Name      = "xrLabel3";
     this.xrLabel3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.StyleName = "FieldCaption";
     //
     // xrLabel4
     //
     resources.ApplyResources(this.xrLabel4, "xrLabel4");
     this.xrLabel4.Name      = "xrLabel4";
     this.xrLabel4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.StyleName = "FieldCaption";
     //
     // xrLabel6
     //
     resources.ApplyResources(this.xrLabel6, "xrLabel6");
     this.xrLabel6.Name      = "xrLabel6";
     this.xrLabel6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.StyleName = "FieldCaption";
     //
     // xrLabel7
     //
     resources.ApplyResources(this.xrLabel7, "xrLabel7");
     this.xrLabel7.Name      = "xrLabel7";
     this.xrLabel7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.StyleName = "FieldCaption";
     //
     // xrLabel8
     //
     resources.ApplyResources(this.xrLabel8, "xrLabel8");
     this.xrLabel8.Name      = "xrLabel8";
     this.xrLabel8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.StyleName = "FieldCaption";
     //
     // groupHeaderBand2
     //
     this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine1,
         this.xrLine2
     });
     resources.ApplyResources(this.groupHeaderBand2, "groupHeaderBand2");
     this.groupHeaderBand2.Name            = "groupHeaderBand2";
     this.groupHeaderBand2.RepeatEveryPage = true;
     this.groupHeaderBand2.StyleName       = "FieldCaption";
     this.groupHeaderBand2.BeforePrint    += new System.Drawing.Printing.PrintEventHandler(this.groupHeaderBand1_BeforePrint);
     //
     // xrLine1
     //
     resources.ApplyResources(this.xrLine1, "xrLine1");
     this.xrLine1.Name = "xrLine1";
     //
     // xrLine2
     //
     resources.ApplyResources(this.xrLine2, "xrLine2");
     this.xrLine2.Name = "xrLine2";
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel20,
         this.xrLabel19,
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     resources.ApplyResources(this.pageFooterBand1, "pageFooterBand1");
     this.pageFooterBand1.Name = "pageFooterBand1";
     //
     // xrLabel20
     //
     this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.User, "Text", "")
     });
     resources.ApplyResources(this.xrLabel20, "xrLabel20");
     this.xrLabel20.Name      = "xrLabel20";
     this.xrLabel20.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.StyleName = "PageInfo";
     //
     // User
     //
     resources.ApplyResources(this.User, "User");
     this.User.Name    = "User";
     this.User.Visible = false;
     //
     // xrLabel19
     //
     resources.ApplyResources(this.xrLabel19, "xrLabel19");
     this.xrLabel19.Name      = "xrLabel19";
     this.xrLabel19.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.StyleName = "PageInfo";
     //
     // xrPageInfo1
     //
     resources.ApplyResources(this.xrPageInfo1, "xrPageInfo1");
     this.xrPageInfo1.Name      = "xrPageInfo1";
     this.xrPageInfo1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo  = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.StyleName = "PageInfo";
     //
     // xrPageInfo2
     //
     resources.ApplyResources(this.xrPageInfo2, "xrPageInfo2");
     this.xrPageInfo2.Name      = "xrPageInfo2";
     this.xrPageInfo2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.StyleName = "PageInfo";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17
     });
     resources.ApplyResources(this.reportHeaderBand1, "reportHeaderBand1");
     this.reportHeaderBand1.Name = "reportHeaderBand1";
     //
     // xrLabel17
     //
     resources.ApplyResources(this.xrLabel17, "xrLabel17");
     this.xrLabel17.Name      = "xrLabel17";
     this.xrLabel17.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.StyleName = "Title";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // DataField
     //
     this.DataField.BackColor   = System.Drawing.Color.Transparent;
     this.DataField.BorderColor = System.Drawing.Color.Black;
     this.DataField.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.DataField.BorderWidth = 1F;
     this.DataField.Font        = new System.Drawing.Font("Arial", 9F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(Model.Reports.RT105);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9
     });
     resources.ApplyResources(this.GroupHeader1, "GroupHeader1");
     this.GroupHeader1.Level        = 2;
     this.GroupHeader1.Name         = "GroupHeader1";
     this.GroupHeader1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupHeader1_BeforePrint);
     //
     // xrLabel9
     //
     resources.ApplyResources(this.xrLabel9, "xrLabel9");
     this.xrLabel9.Name    = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // Division
     //
     resources.ApplyResources(this.Division, "Division");
     this.Division.Name      = "Division";
     this.Division.ValueInfo = "All";
     this.Division.Visible   = false;
     //
     // Branch
     //
     resources.ApplyResources(this.Branch, "Branch");
     this.Branch.Name      = "Branch";
     this.Branch.ValueInfo = "All";
     this.Branch.Visible   = false;
     //
     // Position
     //
     resources.ApplyResources(this.Position, "Position");
     this.Position.Name      = "Position";
     this.Position.ValueInfo = "All";
     this.Position.Visible   = false;
     //
     // Department
     //
     resources.ApplyResources(this.Department, "Department");
     this.Department.Name      = "Department";
     this.Department.ValueInfo = "All";
     this.Department.Visible   = false;
     //
     // PageHeader
     //
     resources.ApplyResources(this.PageHeader, "PageHeader");
     this.PageHeader.Name = "PageHeader";
     //
     // JobHistory
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.groupHeaderBand1,
         this.groupHeaderBand2,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.GroupHeader1,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     resources.ApplyResources(this, "$this");
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.Department,
         this.Branch,
         this.Position,
         this.Division,
         this.User
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
         DevExpress.DataAccess.Sql.StoredProcQuery storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
         DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
         System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptReporteAsistencia));
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
         this.groupHeaderBand2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
         this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
         this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
         this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
         this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
         this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
         this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
         this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
         this.pEvento = new DevExpress.XtraReports.Parameters.Parameter();
         this.pTipo = new DevExpress.XtraReports.Parameters.Parameter();
         this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
         this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
         this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel17,
         this.xrLabel19,
         this.xrLabel20,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel24,
         this.xrLabel25});
         this.Detail.HeightF = 23F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StyleName = "DataField";
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel15
         //
         this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Confirmado")});
         this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(616.8115F, 0F);
         this.xrLabel15.Name = "xrLabel15";
         this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel15.SizeF = new System.Drawing.SizeF(84.2738F, 15F);
         this.xrLabel15.StylePriority.UseTextAlignment = false;
         this.xrLabel15.Text = "xrLabel15";
         this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel17
         //
         this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Estado")});
         this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(701.0853F, 0F);
         this.xrLabel17.Name = "xrLabel17";
         this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel17.SizeF = new System.Drawing.SizeF(87.28574F, 15F);
         this.xrLabel17.StylePriority.UseTextAlignment = false;
         this.xrLabel17.Text = "xrLabel17";
         this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel19
         //
         this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.FechaAsistencia", "{0:H:mm:ss}")});
         this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 0F);
         this.xrLabel19.Name = "xrLabel19";
         this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel19.SizeF = new System.Drawing.SizeF(114.4802F, 15F);
         this.xrLabel19.StylePriority.UseTextAlignment = false;
         this.xrLabel19.Text = "xrLabel19";
         this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel20
         //
         this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.IdAsociado")});
         this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLabel20.Name = "xrLabel20";
         this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel20.SizeF = new System.Drawing.SizeF(71.17064F, 15F);
         this.xrLabel20.Text = "xrLabel20";
         //
         // xrLabel22
         //
         this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Nombre")});
         this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(77.17071F, 0F);
         this.xrLabel22.Name = "xrLabel22";
         this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel22.SizeF = new System.Drawing.SizeF(241.8293F, 15F);
         this.xrLabel22.Text = "xrLabel22";
         //
         // xrLabel23
         //
         this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.NumeroCedula")});
         this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(319.0001F, 0F);
         this.xrLabel23.Name = "xrLabel23";
         this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel23.SizeF = new System.Drawing.SizeF(93.54164F, 15F);
         this.xrLabel23.StylePriority.UseTextAlignment = false;
         this.xrLabel23.Text = "xrLabel23";
         this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel24
         //
         this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Presente")});
         this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 0F);
         this.xrLabel24.Name = "xrLabel24";
         this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel24.SizeF = new System.Drawing.SizeF(61.62891F, 15F);
         this.xrLabel24.StylePriority.UseTextAlignment = false;
         this.xrLabel24.Text = "xrLabel24";
         this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel25
         //
         this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Telefono")});
         this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 0F);
         this.xrLabel25.Name = "xrLabel25";
         this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel25.SizeF = new System.Drawing.SizeF(89.78967F, 15F);
         this.xrLabel25.StylePriority.UseTextAlignment = false;
         this.xrLabel25.Text = "xrLabel25";
         this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 71.875F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 100F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // sqlDataSource1
         //
         this.sqlDataSource1.ConnectionName = "DBEventos";
         this.sqlDataSource1.Name = "sqlDataSource1";
         storedProcQuery1.Name = "sp_Reportes_Read";
         queryParameter1.Name = "@IdEvento";
         queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.pEvento]", typeof(int));
         queryParameter2.Name = "@Tipo";
         queryParameter2.Type = typeof(DevExpress.DataAccess.Expression);
         queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.pTipo]", typeof(string));
         storedProcQuery1.Parameters.Add(queryParameter1);
         storedProcQuery1.Parameters.Add(queryParameter2);
         storedProcQuery1.StoredProcName = "sp_Reportes_Read";
         this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1});
         this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
         //
         // groupHeaderBand2
         //
         this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel5,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel12,
         this.xrLabel13});
         this.groupHeaderBand2.HeightF = 39.37499F;
         this.groupHeaderBand2.Name = "groupHeaderBand2";
         this.groupHeaderBand2.StyleName = "FieldCaption";
         //
         // xrLabel3
         //
         this.xrLabel3.BackColor = System.Drawing.Color.Blue;
         this.xrLabel3.ForeColor = System.Drawing.Color.White;
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(616.8114F, 5.999994F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(84.2738F, 20F);
         this.xrLabel3.StylePriority.UseBackColor = false;
         this.xrLabel3.StylePriority.UseForeColor = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "Confirmado";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel5
         //
         this.xrLabel5.BackColor = System.Drawing.Color.Blue;
         this.xrLabel5.ForeColor = System.Drawing.Color.White;
         this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(701.0852F, 5.999994F);
         this.xrLabel5.Name = "xrLabel5";
         this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel5.SizeF = new System.Drawing.SizeF(87.28574F, 20F);
         this.xrLabel5.StylePriority.UseBackColor = false;
         this.xrLabel5.StylePriority.UseForeColor = false;
         this.xrLabel5.StylePriority.UseTextAlignment = false;
         this.xrLabel5.Text = "Estado";
         this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel7
         //
         this.xrLabel7.BackColor = System.Drawing.Color.Blue;
         this.xrLabel7.ForeColor = System.Drawing.Color.White;
         this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 5.999994F);
         this.xrLabel7.Name = "xrLabel7";
         this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel7.SizeF = new System.Drawing.SizeF(114.4801F, 20F);
         this.xrLabel7.StylePriority.UseBackColor = false;
         this.xrLabel7.StylePriority.UseForeColor = false;
         this.xrLabel7.StylePriority.UseTextAlignment = false;
         this.xrLabel7.Text = "Hora Asistencia";
         this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel8
         //
         this.xrLabel8.BackColor = System.Drawing.Color.Blue;
         this.xrLabel8.ForeColor = System.Drawing.Color.White;
         this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 5.999994F);
         this.xrLabel8.Name = "xrLabel8";
         this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel8.SizeF = new System.Drawing.SizeF(71.17064F, 20F);
         this.xrLabel8.StylePriority.UseBackColor = false;
         this.xrLabel8.StylePriority.UseForeColor = false;
         this.xrLabel8.StylePriority.UseTextAlignment = false;
         this.xrLabel8.Text = "Id";
         this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel10
         //
         this.xrLabel10.BackColor = System.Drawing.Color.Blue;
         this.xrLabel10.ForeColor = System.Drawing.Color.White;
         this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(77.17064F, 6.00001F);
         this.xrLabel10.Name = "xrLabel10";
         this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel10.SizeF = new System.Drawing.SizeF(241.8294F, 20F);
         this.xrLabel10.StylePriority.UseBackColor = false;
         this.xrLabel10.StylePriority.UseForeColor = false;
         this.xrLabel10.StylePriority.UseTextAlignment = false;
         this.xrLabel10.Text = "Nombre";
         this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel11
         //
         this.xrLabel11.BackColor = System.Drawing.Color.Blue;
         this.xrLabel11.ForeColor = System.Drawing.Color.White;
         this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(319F, 5.999994F);
         this.xrLabel11.Name = "xrLabel11";
         this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel11.SizeF = new System.Drawing.SizeF(93.54164F, 20F);
         this.xrLabel11.StylePriority.UseBackColor = false;
         this.xrLabel11.StylePriority.UseForeColor = false;
         this.xrLabel11.StylePriority.UseTextAlignment = false;
         this.xrLabel11.Text = "Cédula";
         this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // xrLabel12
         //
         this.xrLabel12.BackColor = System.Drawing.Color.Blue;
         this.xrLabel12.ForeColor = System.Drawing.Color.White;
         this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 5.999994F);
         this.xrLabel12.Name = "xrLabel12";
         this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel12.SizeF = new System.Drawing.SizeF(61.62897F, 20F);
         this.xrLabel12.StylePriority.UseBackColor = false;
         this.xrLabel12.StylePriority.UseForeColor = false;
         this.xrLabel12.StylePriority.UseTextAlignment = false;
         this.xrLabel12.Text = "Presente";
         this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // xrLabel13
         //
         this.xrLabel13.BackColor = System.Drawing.Color.Blue;
         this.xrLabel13.ForeColor = System.Drawing.Color.White;
         this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 6.00001F);
         this.xrLabel13.Name = "xrLabel13";
         this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel13.SizeF = new System.Drawing.SizeF(89.78967F, 20F);
         this.xrLabel13.StylePriority.UseBackColor = false;
         this.xrLabel13.StylePriority.UseForeColor = false;
         this.xrLabel13.StylePriority.UseTextAlignment = false;
         this.xrLabel13.Text = "Teléfono";
         this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // pageFooterBand1
         //
         this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrPageInfo1,
         this.xrPageInfo2});
         this.pageFooterBand1.HeightF = 31F;
         this.pageFooterBand1.Name = "pageFooterBand1";
         //
         // xrLine2
         //
         this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F);
         this.xrLine2.Name = "xrLine2";
         this.xrLine2.SizeF = new System.Drawing.SizeF(844F, 8F);
         //
         // xrPageInfo1
         //
         this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 8F);
         this.xrPageInfo1.Name = "xrPageInfo1";
         this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
         this.xrPageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo1.StyleName = "PageInfo";
         //
         // xrPageInfo2
         //
         this.xrPageInfo2.Format = "Página {0} de {1}";
         this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(536.9999F, 8F);
         this.xrPageInfo2.Name = "xrPageInfo2";
         this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrPageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F);
         this.xrPageInfo2.StyleName = "PageInfo";
         this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
         //
         // reportHeaderBand1
         //
         this.reportHeaderBand1.HeightF = 78.08336F;
         this.reportHeaderBand1.Name = "reportHeaderBand1";
         //
         // Title
         //
         this.Title.BackColor = System.Drawing.Color.Transparent;
         this.Title.BorderColor = System.Drawing.Color.Black;
         this.Title.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.Title.BorderWidth = 1F;
         this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.Title.ForeColor = System.Drawing.Color.Navy;
         this.Title.Name = "Title";
         //
         // FieldCaption
         //
         this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
         this.FieldCaption.BorderColor = System.Drawing.Color.Black;
         this.FieldCaption.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.FieldCaption.BorderWidth = 1F;
         this.FieldCaption.Font = new System.Drawing.Font("Times New Roman", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.FieldCaption.ForeColor = System.Drawing.Color.Navy;
         this.FieldCaption.Name = "FieldCaption";
         //
         // PageInfo
         //
         this.PageInfo.BackColor = System.Drawing.Color.Transparent;
         this.PageInfo.BorderColor = System.Drawing.Color.Black;
         this.PageInfo.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.PageInfo.BorderWidth = 1F;
         this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.PageInfo.ForeColor = System.Drawing.Color.Navy;
         this.PageInfo.Name = "PageInfo";
         //
         // DataField
         //
         this.DataField.BackColor = System.Drawing.Color.Transparent;
         this.DataField.BorderColor = System.Drawing.Color.Black;
         this.DataField.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
         this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
         this.DataField.BorderWidth = 1F;
         this.DataField.Font = new System.Drawing.Font("Arial", 8F);
         this.DataField.ForeColor = System.Drawing.Color.Black;
         this.DataField.Name = "DataField";
         //
         // pEvento
         //
         this.pEvento.Description = "Seleccione un evento";
         this.pEvento.Name = "pEvento";
         this.pEvento.Type = typeof(int);
         this.pEvento.ValueInfo = "0";
         this.pEvento.Visible = false;
         //
         // pTipo
         //
         this.pTipo.Description = "Seleccione un tipo";
         this.pTipo.Name = "pTipo";
         this.pTipo.Visible = false;
         //
         // PageHeader
         //
         this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine3,
         this.xrLine4,
         this.xrLabel27});
         this.PageHeader.HeightF = 60.41667F;
         this.PageHeader.Name = "PageHeader";
         //
         // xrLine3
         //
         this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 58.41667F);
         this.xrLine3.Name = "xrLine3";
         this.xrLine3.SizeF = new System.Drawing.SizeF(843.9999F, 2F);
         //
         // xrLine4
         //
         this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrLine4.Name = "xrLine4";
         this.xrLine4.SizeF = new System.Drawing.SizeF(843.9999F, 16.00001F);
         //
         // xrLabel27
         //
         this.xrLabel27.BackColor = System.Drawing.Color.Blue;
         this.xrLabel27.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
         this.xrLabel27.ForeColor = System.Drawing.Color.White;
         this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.00001F);
         this.xrLabel27.Name = "xrLabel27";
         this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel27.SizeF = new System.Drawing.SizeF(843.9999F, 34.16666F);
         this.xrLabel27.StyleName = "Title";
         this.xrLabel27.StylePriority.UseBackColor = false;
         this.xrLabel27.StylePriority.UseFont = false;
         this.xrLabel27.StylePriority.UseForeColor = false;
         this.xrLabel27.StylePriority.UseTextAlignment = false;
         this.xrLabel27.Text = "REPORTE DE ASISTENCIA";
         this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
         //
         // RptReporteAsistencia
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.groupHeaderBand2,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.PageHeader});
         this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1});
         this.DataMember = "sp_Reportes_Read";
         this.DataSource = this.sqlDataSource1;
         this.Margins = new System.Drawing.Printing.Margins(0, 0, 72, 100);
         this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.pEvento,
         this.pTipo});
         this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField});
         this.Version = "15.2";
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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();
 }